-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
123 lines (123 loc) · 1.8 KB
/
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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
*{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
h1{
color: #776E65;
font-size: 4em;
text-align: center;
font-weight: bold;
margin-top: 10px;
margin-bottom: 20px;
}
i:hover{
cursor: pointer;
color: white;
}
.newGame{
color: #EEE4DA;
background-color:#776E65;
padding: 5px;
border-radius: 3px;
margin-right: 5px;
}
#new:hover{
background-color: #CDC1B4;
cursor: pointer;
}
#menu{
width: 600px;
margin: auto;
text-align: center;
}
#container{
height: 481px;
width: 489px;
margin: auto;
margin-top: 30px;
border: 8px solid #bbada0;
border-radius: 1%;
background-color: #bbada0;
}
#win{
position: relative;
top: 15px;
display: none;
}
#lost{
position: relative;
top: 15px;
display: none;
}
.case{
padding: 0px;
margin-bottom: -3px;
background-color: #CDC1B4;
color: #776E65;
height: 106.25px;
width: 106.25px;
border: 8px solid #bbada0;
display: inline-block;
border-radius: 3px;
text-align: center;
line-height: 106.25px;
font-size: 3em;
font-weight: bold;
vertical-align: top;
}
#taille{
margin-left: 5px;
}
.caseFilled{
background-color: #FE3D3E;
}
body{
background-color: #FAF8EF;
font-family: Helvetica, Arial, sans-serif;
}
.c2{
background-color: #EEE4DA;
}
.c4{
background-color: #EDE0C8;
}
.c8{
background-color: #F2B179;
color: white;
}
.c16{
background-color: #F59563;
color: white;
}
.c32{
background-color: #F67C5F;
color: white;
}
.c64{
background-color: #F65E3B;
color: white;
}
.c128{
background-color: #EDCF72;
color: white;
}
.c256{
background-color: #EDCA64;
color: white;
}
.c512{
background-color: #EDC651;
color: white;
}
.c1024{
background-color: #EEC744;
color: white;
}
.c2048{
background-color: #EEC744;
color: white;
}