-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
86 lines (69 loc) · 1.1 KB
/
styles.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body {
font-family: sans-serif;
color: rgb(229, 231, 235);
background-color: rgb(51, 52, 54);
}
#app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.grid {
margin-bottom: 15px;
}
.tile-row {
display: flex;
flex-direction: row;
}
.tile,
.tile-empty,
.tile-new {
display: flex;
justify-content: center;
align-items: center;
font-size: 20px;
width: 107px;
height: 107px;
margin: 2px;
color: white;
}
.tile-2 {
background-color: rgb(57, 44, 28);
}
.tile-4 {
background-color: rgb(71, 56, 26);
}
.tile-8 {
background-color: rgb(123, 69, 20);
}
.tile-16 {
background-color: rgb(135, 59, 17);
}
.tile-32 {
background-color: rgb(136, 39, 15);
}
.tile-64 {
background-color: rgb(156, 44, 16);
}
.tile-128 {
background-color: #edd073;
}
.tile-256 {
background-color: #edcc62;
}
.tile-512 {
background-color: #edc950;
}
.tile-1024 {
background-color: #edc53f;
}
.tile-2048 {
background-color: #edc22e;
}
.tile-empty {
background-color: rgba(57, 44, 28, 0.35);
}
.tile-new {
background-color: rgb(255, 202, 202);
}