-
Notifications
You must be signed in to change notification settings - Fork 1
/
threes.css
66 lines (56 loc) · 1021 Bytes
/
threes.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
@import url(http://fonts.googleapis.com/css?family=Inconsolata);
body {
text-align: center;
font-family: 'Inconsolata', sans-serif;
}
.board {
font-size: 50px;
border: 1px solid #000;
display: inline-block;
}
.board .row {
height: 50px;
clear: left;
}
.board .row .cell {
display: block;
float: left;
width: 50px;
height: 50px;
border: 1px solid #000;
}
.next-up {
font-size: 40px;
clear: left;
text-align: center;
margin: 10px 0 0;
}
.next-up span {
display: inline-block;
width: 40px;
height: 40px;
border: 2px solid #000
}
.buttons button {
font-family: 'Inconsolata', sans-serif;
padding: 10px 20px;
font-size: 20px;
background: #2faadd;
color: #fff;
border: 2px solid #222;
outline: 0;
}
/* Cell Colors: */
.cell-contains-0 {
color: transparent;
}
.next-up-1,
.cell-contains-1 {
background: #222;
color: #fff;
}
.next-up-2,
.cell-contains-2 {
background: #2faadd;
color: #fff;
}