-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (63 loc) · 1.21 KB
/
Copy pathstyle.css
File metadata and controls
72 lines (63 loc) · 1.21 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
#container{
display: grid;
place-items: center;
position: absolute;
top: 20%;
left: 35%;
text-align: center;
width: 400px;
height: 600px;
padding: 150px 50px;
border: 1px solid black;
border-radius: 10px;
background-color: khaki;
}
h1 {
position: absolute;
top: 50px;
text-align: center;
font-weight: bold;
font-size: 2.5em;
font-family: 'Courier New', Courier, monospace;
}
#countLabel {
display: block;
text-align: center;
font-size: 10em;
font-family: Arial, Helvetica, sans-serif;
}
#BtnContainer {
text-align: center;
position: absolute;
bottom: 60px;
}
.buttons{
padding: 15px 20px;
margin: 0px 5px;
font-size: 1em;
color: white;
background-color: hsl(210, 3%, 14%);
border-radius: 5px;
cursor: pointer;
transition: background-color 0.24s;
}
#decreaseBtn:hover {
background-color: hsl(358, 100%, 50%);
color: black;
}
#resetBtn:hover {
background-color: hsl(0, 0%, 100%);
color: black;
}
#increaseBtn:hover {
background-color: hsl(127, 100%, 50%);
color: black;
}
.buttons:active {
opacity: 0.7;
}