-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
48 lines (48 loc) · 782 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
body {
background: #fffffa;
}
#game {
margin: 200px auto 75px;
width: 100%;
height: 0;
padding-bottom: 60px;
text-align: center;
}
#game div {
width: 60px;
height: 60px;
display: inline-block;
position: relative;
}
#game div::before {
content: "";
display: block;
position: absolute;
width: 100%;
height: 10%;
background-color: rgba(0,0,0,0.2);
bottom: 0;
}
#result {
position: absolute;
top: 50px;
left: 50%;
transform: translateX(-50%);
padding: 35px 0;
font-size: 20px;
font-weight: 600;
color: #616161;
display: none;
}
button {
display: block;
margin: 0 auto;
background: #BDBDBD;
border: none;
border-radius: 6px;
padding: 7px 14px 7px;
font-size: 15px;
color: #fffffa;
outline: none;
cursor: pointer;
}