-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (75 loc) · 1.2 KB
/
style.css
File metadata and controls
75 lines (75 loc) · 1.2 KB
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
.container{
margin:0 auto;
width:402px;
height:422px;
position:relative;
}
table.grid{
position:relative;
width:400px;
height:400px;
border:solid 2px #000;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
background-color:#000;
}
table.grid td{
width:100px;
height:100px;
text-align:center;
font-size:36px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.tile{
width:100px;
background-color:#CFC8B5;
color:#5C5B57;
}
.tile2{
background-color:#ffe9e9;
}
.tile4{
background-color:#d9fdff;
}
.tile8{
background-color:#57e5fa;
}
.tile16{
background-color:#57c2fa;
}
.tile32{
background-color:#5776fa;
}
.tile64{
background-color:#6afa57;
}
.tile128{
background-color:#eefd01;
}
.tile256{
background-color:#fdc501;
}
.tile512{
background-color:#ff83f2;
}
.tile1024{
background-color:#ff9583;
}
.tile2048{
background-color:#fd2400;
}
#gameover{
background-color: #000;
color: #fff;
height: 100%;
opacity: 0.8;
position: absolute;
top: 0;
width: 100%;
z-index: 999;
-moz-border-radius: 10px;
border-radius: 10px;
}