-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (92 loc) · 1.68 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
body {
font-family: arial;
background-color: black;
color: white;
overflow: hidden;
}
h1 {
text-align: center;
}
#container {
z-index: -1;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
}
#tileMenu , #score {
display: none;
font-size: 2em;
position: absolute;
height: 10em;
top: 50% - 10em;
right: 0;
margin-right: 2em;
list-style-type: none;
}
#tileMenu > li, #score > li {
background-color: black;
height: 1em;
margin-top: ..25em;
margin-bottom: .25em;
padding-top: ..25em;
padding-bottom: .25em;
border: 1px solid white;
padding-left: 1em;
padding-right: 1em;
text-align: center;
}
#tileMenu > li.selected {
background-color: green;
}
#help {
display: block;
background-color: black;
margin-top: ..25em;
margin-bottom: .25em;
border: 1px solid white;
padding-left: 1em;
padding-right: 1em;
text-align: center;
position: absolute;
left: 0em;
top: 1em;
width: 20%;
}
#help table{
border-collapse: collapse;
}
#finish {
display: none;
text-align: center;
bottom: 0;
margin-bottom: 2em;
position: absolute;
width: 100%;
}
#finish > div {
background-color: black;
border: 1px solid white;
text-align: center;
display: inline-block;
width: 20em;
}
#tutorial {
padding: 3em;
border: 1px solid white;
background-color: black;
margin-left: auto;
margin-right: auto;
width: 40em;
display: block;
}
#footer {
position: absolute;
bottom: 0;
margin-bottom: 1em;
font-size: .8em;
text-align: center;
width: 100%;
}