-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
63 lines (55 loc) · 903 Bytes
/
main.css
File metadata and controls
63 lines (55 loc) · 903 Bytes
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
html {
background-color: #5a5a5a;
}
html, body {
height: 100%;
overflow: hidden;
}
.center {
text-align: center;
}
.main {
padding-top: 50px;
}
.alert {
position: relative;
top: 40%;
left: 0;
z-index: 1000;
font-size: 3em;
font-family: monospace;
font-weight: bold;
opacity: 0.4;
transform: rotate(-10deg);
}
#board {
position: relative;
margin: auto;
background-color: white;
width: 250px;
height: 500px;
}
#score {
font-size: 4em;
font-family: monospace;
margin: auto;
color: white;
text-align: center;
width: 80px;
height: 100px;
line-height: 100px;
}
#preview {
padding-top: 50px;
position: relative;
margin: auto;
height: 80px;
width: 80px;
}
.cell {
position: absolute;
padding: 0;
margin: 0;
outline: 1px solid #fff;
outline-offset: -2px;
}