-
Notifications
You must be signed in to change notification settings - Fork 1
/
erochan.css
73 lines (73 loc) · 1.5 KB
/
erochan.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
html, body {
margin: 0;
overflow: hidden;
height: 100%;
font-family: 'Open Sans Condensed';
}
#main {
width: 100%;
height: 100%;
background-color: #333;
}
#window {
width: 100%;
height: calc( 100% - 4rem );
}
#viewbox {
width: 100%;
height: 100%;
}
#bunner {
height: 4rem;
display: flex;
background-color: #f76923;
border-top: 1px solid #ab5218;
}
#bunner div {
flex-grow: 1;
align-items: center;
text-align: center;
margin: auto;
}
#bunner, #bunner a { color: #fff; }
#popup {
position: fixed;
z-index: 10;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
color: #fff;
display: none;
}
#popup.enabled {
display: flex;
}
#popup div { margin: auto; }
#controls{
display:none;
}
@font-face {
font-family: 'Open Sans Condensed';
font-style: normal;
font-weight: 300;
src: local('Open Sans Cond Light'),
local('OpenSans-CondensedLight'),
url(/fonts/Open-Sans-Condensed-normal-300.woff) format('woff');
}
@font-face {
font-family: 'Open Sans Condensed';
font-style: normal;
font-weight: 700;
src: local('Open Sans Condensed Bold'),
local('OpenSans-CondensedBold'),
url(/fonts/Open-Sans-Condensed-normal-700.woff) format('woff');
}
@font-face {
font-family: 'Open Sans Condensed';
font-style: italic;
font-weight: 300;
src: local('Open Sans Cond Light Italic'),
local('OpenSans-CondensedLightItalic'),
url(/fonts/Open-Sans-Condensed-italic-300.woff) format('woff');
}