-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathc-base.css
57 lines (53 loc) · 1.08 KB
/
c-base.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
::-webkit-scrollbar {
display: none;
}
@font-face {
font-family: 'ceva';
src: url('ceva-c2.woff') format('woff');
}
@font-face {
font-family: 'ceva';
src: url('ceva-c2.ttf') format('ttf');
}
@font-face {
font-family: 'Source Code Pro';
src: url('SourceCodePro-Regular.otf.woff') format('woff');
}
@font-face {
font-family: 'Source Code Pro';
src: url('SourceCodePro-Bold.otf.woff') format('woff');
font-weight: bold;
}
body {
font-family: 'Source Code Pro', sans-serif;
background-color: rgba(0, 0, 0, 0.98);
color: #a0a0a0;
padding: 0px;
margin-top: 0px;
margin-left: auto;
margin-right: auto;
}
h1 {
font-family: 'ceva', sans-serif;
font-weight: normal;
color: #fff;
}
body.station {
background-image: url('../theme/background-stationblueprint.jpg');
background-repeat: no-repeat;
background-size: auto 100vh;
}
body.station:after {
content: '\A';
position: fixed;
width: 100vw;
height: 100vh;
top: 0px;
left: 0px;
background-color: rgba(0,0,0,0.5);
z-index: -1;
}
body.station h1,
body.station p {
text-shadow: #000000 1px 0 10px;
}