-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
51 lines (42 loc) · 955 Bytes
/
style.scss
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
// Reset
// ==================================================================
html, body, canvas, div, h1 {
margin: 0;
padding: 0;
font-size: 1em;
font-weight: 400;
}
// Layout
// ==================================================================
body {
background-color: #888888;
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.2;
// Remove 'text' cursor when hovering over text.
cursor: default;
// Prevent annoying text selection.
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
h1 {
font-size: 24px;
}
div#instructions {
margin: 12px;
text-align: center;
}
div#canvas-container {
padding: 16px 0;
background-color: #5a5a5a;
}
canvas#game-canvas {
display: block;
margin: 0 auto;
background-color: #000000;
}