forked from ellisonleao/clumsy-bird
-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.css
92 lines (73 loc) · 1.56 KB
/
index.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
body {
background-color: #003466;
color: #fff;
/* Allow mouse dragging. */
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
-webkit-user-select: none;
user-select: none;
/* disable touch panning/zooming */
-ms-touch-action: none;
touch-action: none;
/* Allow canvas to hit the edges of the browser viewport. */
margin: 0;
}
#screen canvas {
margin: auto;
/* Hide the gap for font descenders. */
display: block;
height: 560px;
/* disable scaling interpolation */
image-rendering: optimizeSpeed;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: optimize-contrast;
-ms-interpolation-mode: nearest-neighbor;
}
#share {
margin: 10px auto;
text-align: center;
}
#share .fb-share-button iframe {
margin-top: -4px;
}
@font-face {
font-family: 'gamefont';
src: url('data/css/gamefont.eot');
src: url('data/css/gamefont.eot?#iefix') format('embedded-opentype'),
url('data/css/gamefont.woff') format('woff'),
url('data/css/gamefont.ttf') format('truetype'),
url('data/css/gamefont.svg#gamefont') format('svg');
font-weight: normal;
font-style: normal;
}
.credits {
font-family: 'gamefont';
text-align: center;
color: #000000;
}
a {
text-decoration: none;
color: #000000;
}
.red {
color: #FE2E2E;
}
#name {
float: left;
width :33%;
}
#gh_hosting {
float: left;
width: 33%;
}
#additional_credits {
float: left;
width: 33%;
}
#credit_container {
width: 100%;
overflow: auto;
}