-
Notifications
You must be signed in to change notification settings - Fork 0
/
text.css
99 lines (79 loc) · 1.28 KB
/
text.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
87
88
89
90
91
92
93
94
95
96
97
98
99
body{
font-family: Arial, Helvetica, sans-serif;
text-align: center;
background-color: cornflowerblue;
}
hr{
width: 500px;
}
#board{
width: 400px;
height: 400px;
background-color:rgb(50, 49, 49);
border: 6px solid rgb(50, 49, 49);
margin:0 auto;
display: flex;
flex-wrap: wrap;
}
.tile {
width: 90px;
height: 90px;
border: 5px solid #403e40;
font-size: 40px;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
}
.x2{
background-color:#e38be7;
color:whitesmoke;
}
.x4{
background-color:#DB97FF;
color: whitesmoke;
}
.x8{
background-color:#BA7CFF;
color:whitesmoke;
}
.x16{
background-color:#CC66FF;
color:whitesmoke;
}
.x32{
background-color:#CC33FF;
color:whitesmoke;
}
.x64{
background-color:#c932ef;
color:whitesmoke;
}
.x128{
background-color:#9966FF;
color:whitesmoke;
}
.x256{
background-color:#9933FF;
color:whitesmoke;
}
.x512{
background-color:#9900FF;
color:whitesmoke;
}
.x1024{
background-color:#b07de2;
color:whitesmoke;
}
.x2048{
background-color:#ad08ff;
color:whitesmoke;
}
.x4096{
background-color:violet;
color:whitesmoke;
}
.x8192{
background-color:blueviolet;
color:whitesmoke;
}