-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (45 loc) · 834 Bytes
/
style.css
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container {
margin: 50px auto;
width: fit-content;
padding: 20px;
}
button {
padding: 4px;
width: 100px;
margin: 0 5px 20px;
font-weight: 700;
background-color: lightskyblue;
border: royalblue;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
transition: 0.2s;
}
button:hover {
background-color: lightblue;
cursor: pointer;
}
button:active {
box-shadow: inset 0px 0px 5px #91919191;
}
button:disabled {
background-color: #a8a8a8;
}
.container p {
margin-bottom: 10px;
text-align: center;
}
#score {
border: 1px solid gray;
text-align: center;
}
.reset {
background-color: rgb(240, 128, 128);
margin: 20px 120px;
}
.reset:hover {
background-color: rgb(241, 162, 162);
}