forked from kubowania/2048
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (57 loc) · 950 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
55
56
57
58
59
60
61
62
63
64
65
body {
background-color: #faf8ef;
display: flex;
justify-content: center;
font-family: "Clear Sans", "Helvetica Neue"
}
h1 {
font-size: 80px;
line-height: 0.7;
color: #776E65;
margin: 0px;
}
.container {
width: 468px;
margin-top: 30px;
}
.info {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.grid{
display: flex;
flex-wrap: wrap;
width: 456px;
height: 456px;
background-color: #BBADA0;
border: 7px solid #BBADA0;
border-radius: 6px;
margin-top: 20px;
}
.grid div {
width: 100px;
height: 100px;
margin: 7px;
border-radius: 3px;
background-color: #EEE4DA;
color: #afa192;
font-weight: bold;
text-align: center;
font-size: 60px;
line-height: 1.6;
}
.score-container {
text-align: center;
width: 70px;
height: 60px;
border-radius: 3px;
background-color: #8f7a66;
color: #FFFFFF;
}
#score {
font-size: 30px;
}
.score-title {
font-size: 16px;
}