-
Notifications
You must be signed in to change notification settings - Fork 7
/
styles.css
62 lines (52 loc) · 1.11 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
60
61
62
@font-face {
font-family: 'pico-8';
src: url('font/pico-8-webfont.woff') format('woff'),
url('font/pico-8-webfont.woff2') format('woff2'),
url('font/pico-8.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'pico-8-smooth';
src: url('font/pico-8-smooth-webfont.woff') format('woff'),
url('font/pico-8-smooth-webfont.woff2') format('woff2'),
url('font/pico-8-smooth.otf') format('opentype');
font-weight: normal;
font-style: normal;
}
body {
margin: 8px;
padding: 8px;
width: 100vw - 8px;
height: 100vh - 8px;
font-family: 'pico-8';
line-height: 1.25;
background-color: #000;
}
.bootup {
color: #c2c3c7;
}
.content {
color: #fff1e8;
}
.content a:link, a:visited, a:active {
color: #29adff;
text-decoration: none;
}
.content a:hover {
color: #fff1e8;
}
.content hr {
border-top: 0.19em solid #fff1e8;
border-bottom: 0;
border-left: 0;
border-right: 0;
text-align: left;
margin-left: 0;
width: min(720px, 80vw);
}
img {
image-rendering: auto;
image-rendering: crisp-edges;
image-rendering: pixelated;
}