-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (48 loc) · 923 Bytes
/
style.css
File metadata and controls
56 lines (48 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
body {
font-family: Arial, Helvetica, sans-serif;
}
.container {
background-image: url(stantion.jpg);
background-repeat: no-repeat;
background-size: cover;
min-width: 600px;
min-height: 500px;
font-weight: bold;
text-align: center;
display: flex;
justify-content: center;
text-align: center;
}
.interactiv-part {
padding-top: 150px;
border: 3px solid;
width: 40%;
background-color: rgba(169, 178, 154, 0.8);
position: relative;
font-size: 16px;
}
h1 {
margin-top: 10px;
margin-bottom: 10px;
}
h2 {
font-size: 50px;
margin-top: 0;
margin-bottom: 20px;
}
button {
border: none;
color: azure;
padding-top: 10px;
padding-bottom: 10px;
font-weight: bold;
border-radius: 10px;
width: 200px;
margin-bottom: 5px;
}
#increment-btn {
background: darkred;
}
#save-btn {
background: darkgreen;
}