-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
82 lines (82 loc) · 2.67 KB
/
styles.css
File metadata and controls
82 lines (82 loc) · 2.67 KB
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
@font-face {
font-family: 'ServerMono';
src: url('https://cdn.jsdelivr.net/gh/internet-development/www-server-mono@latest/public/fonts/ServerMono-Regular.woff2') format('woff2'), /* Best compression, modern browsers */
url('https://cdn.jsdelivr.net/gh/internet-development/www-server-mono@latest/public/fonts/ServerMono-Regular.woff') format('woff'), /* Good compression, wider support */
url('https://cdn.jsdelivr.net/gh/internet-development/www-server-mono@latest/public/fonts/ServerMono-Regular.otf') format('opentype'); /* Largest files, universal support */
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'ServerMono';
src: url('https://cdn.jsdelivr.net/gh/internet-development/www-server-mono@latest/public/fonts/ServerMono-RegularOblique.woff2') format('woff2'),
url('https://cdn.jsdelivr.net/gh/internet-development/www-server-mono@latest/public/fonts/ServerMono-RegularOblique.woff') format('woff'),
url('https://cdn.jsdelivr.net/gh/internet-development/www-server-mono@latest/public/fonts/ServerMono-RegularOblique.otf') format('opentype');
font-weight: normal;
font-style: oblique;
font-display: swap;
}
@font-face {
font-family: 'Host Grotesk';
src: url('/fonts/HostGrotesk-Medium.woff') format('woff'),
url('/fonts/HostGrotesk-Medium.woff2') format('woff2');
font-style: normal;
font-weight: medium;
font-display: swap;
}
@font-face {
font-family: 'Host Grotesk';
src: url('/fonts/HostGrotesk-MediumItalic.woff') format('woff'),
url('/fonts/HostGrotesk-MediumItalic.woff2') format('woff2');
font-style: italic;
font-weight: medium;
font-display: swap;
}
@font-face {
font-family: 'Host Grotesk';
src: url('/fonts/HostGrotesk-Regular.woff') format('woff'),
url('/fonts/HostGrotesk-Regular.woff2') format('woff2');
font-style: normal;
font-weight: normal;
font-display: swap;
}
:root {
--sub: #828282;
--main: #000000;
}
html, body {
height: 100%;
}
html {
display: table;
margin: auto;
}
body {
font-family: 'Host Grotesk', -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, Adwaita Sans, Cantarell, Ubuntu, roboto, noto, helvetica, arial, sans-serif;
padding: 18px;
color: #000000;
background-color: #ffffff;
font-size: 20px;
scrollbar-width: none;
font-weight: 400;
width: 70%;
max-width: 400px;
display: table-cell;
vertical-align: middle;
}
a {
color: #000000
}
.ftr {
font-size: 12px;
padding: 4px 7px;
border-radius: 7px;
background-color: #b8b8b8;
color: #ffffff;
text-decoration: none;
margin-left: 3px
}
.logo {
width: 12px;
height: 12px;
}