forked from patlamontagne/the-binding-of-isaac-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
59 lines (54 loc) · 1.2 KB
/
styles.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
html { background: #151515; font: 1em Arial; }
* { padding: 0px; margin: 0px; }
@font-face {
font-family: 'wendy';
src: url("font/8bit.ttf");}
@font-face {
font-family: 'danielbk';
src: url("font/danielbk.ttf");}
#game {
width: 960px;
margin: 20px auto;
line-height:0px;
text-align: center;
position: relative;
}
#fullscreen:fullscreen #game {
width: auto;
margin: 0 auto;
}
canvas {
border-left: solid 6px #000;
border-right: solid 6px #000;
margin: auto;
width: 100%;
box-sizing: border-box;
}
#canvas {
border-bottom: solid 6px #000;
color:#fff;
}
#uicanvas{
border-bottom: solid 0px #323131;
background: #000;
}
#bgcanvas{
border-bottom: solid 0px #323131;
position: absolute;
/* top: 140px; */
z-index: -10;
}
#editorlink{
margin: 10px auto;
text-align: center;
}
#editorlink ul{
margin: 30px auto;
list-style-type : none;
text-align: center;
color: #aaa;
}
#editorlink > a{background: #aaa;font-weight: bold;text-decoration: none; color:#151515;padding: 8px;}
#editorlink > a:hover{background: #00c4d3;font-weight: bold;text-decoration: none; color:#151515;padding: 8px;}
#editorlink ul a{color: #00c4d3;font-weight: bold;}
#editorlink ul a:hover{text-decoration: underline;}