-
Notifications
You must be signed in to change notification settings - Fork 24
/
style.css
42 lines (36 loc) · 897 Bytes
/
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
body {
background-color:#0E0E0E;
text-align:center;
color: #FFFFFF;
font-family: sans-serif;
font-size: 13px;
margin: 0px;
}
a, a:visited {
color: #9D9D9D;
text-decoration: none;
}
a:hover {
color: #D9D9D9;
}
.pixelated {
image-rendering:optimizeSpeed; /* Legal fallback */
image-rendering:-moz-crisp-edges; /* Firefox */
image-rendering:-o-crisp-edges; /* Opera */
image-rendering:-webkit-optimize-contrast; /* Safari */
image-rendering:optimize-contrast; /* CSS3 Proposed */
image-rendering:crisp-edges; /* CSS4 Proposed */
image-rendering:pixelated; /* CSS4 Proposed */
-ms-interpolation-mode:nearest-neighbor; /* IE8+ */
}
canvas {
width: 1280px;
height: 720px;
}
.controls {
margin: 10px;
}
.title {
text-align: center;
margin: 20px;
}