-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcounter.css
More file actions
37 lines (33 loc) · 802 Bytes
/
counter.css
File metadata and controls
37 lines (33 loc) · 802 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
#counterbox{
border: 5px solid rgb(69, 50, 13);
border-radius: 10px;
width: 500px;
height: 350px;
display: block;
background-color: hsl(33, 31%, 68%);
box-shadow: 1px 1px 4px 2px inset hsl(26, 45%, 12%);
}
#countLabel{
margin: 10px;
display: block;
text-align: center;
font-size: 10em;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#btnContainer{
text-align: center;
}
.buttons{
padding: 10px 20px;
border: 1px solid hsl(26, 45%, 12%);
box-shadow: 1px 1px 8px 5px inset hsl(26, 45%, 12%);
border-radius: 20px;
font-size: 1.2em;
color: white;
background-color: hsl(34, 23%, 49%);
cursor: pointer;
transition: background-color 0.25s;
}
.buttons:hover{
background-color: hsl(31, 32%, 20%);
}