-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (36 loc) · 744 Bytes
/
Copy pathstyle.css
File metadata and controls
38 lines (36 loc) · 744 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
body{
background-color: rgba(252, 140, 140, 0.295);
}
#maindiv{
margin: 50px auto;
width: 300px;
border: 2px solid #ccc;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
padding: 20px;
background-color: rgba(255, 255, 255, 0.842);
}
#countlabel{
display: block;
text-align: center;
font-size: 15vw;
font-family: Arial, Helvetica, sans-serif;
}
#btnContainer{
text-align: center;
}
.buttons{
padding: 10px, 20px;
font-size: 1.5em;
color: white;
background-color: rgb(206, 105, 105);
border-radius: 5px;
cursor: pointer;
transition: background-color 0.25s;
}
.buttons:hover{
background-color:rgb(231, 40, 40);
}
#resetBtn{
margin-top: 10px;
}