-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
72 lines (60 loc) · 1.14 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
body {
background-color: white;
font-family: "Trebuchet MS", "Helvetica Neue", Arial, Sans-serif;
color: #222222; }
h1 {
font-weight: bold;
padding: 10px;
padding-bottom: 0px;
margin-bottom: 2px;
text-align: center;
font-size: 32px; }
a, a:active, a:visited {
color: #222222; }
a:hover {
color: #aa0000; }
#scoreboard {
text-align: center;
padding: 0;
padding-bottom: 12px; }
#canvases {
position: relative;
margin-left: auto;
margin-right: auto;
width: 500px;
height: 300px; }
#controls {
text-align: center;
padding-top: 12px; }
canvas {
position: absolute;
display: block;
border: 1px dotted #333333;
background-color: black; }
#overlay {
z-index: 1;
background-color: #333333;
opacity: 0.2;
display: none;
width: 500px;
height: 300px; }
#paused {
display: none;
text-align: center;
font-size: 24px;
position: relative;
top: -180px;
color: white; }
#gameover {
display: none;
text-align: center;
font-size: 72px;
position: relative;
top: -200px;
color: white; }
p {
text-align: center;
font-weight: normal;
font-size: 11px; }
.red {
background-color: red; }