-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththe.css
58 lines (57 loc) · 1.23 KB
/
the.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
/*
Fonts: Inter (latest, loaded via @import), Cascadia Mono (version 2108.26, loaded from file)
https://rsms.me/inter/, https://github.com/microsoft/cascadia-code/
Both fonts (at the time of writing this) are licensed under the OFL-1.1 license.
Thanks for making websites great & cool!
*/
@import url('https://rsms.me/inter/inter.css');
@font-face {
font-family: "Cascadia Mono";
src: url(/font/Cascadia-Mono/woff2/CascadiaMono.woff2);
}
html {
margin: 0;
padding: 0;
height: 100vh;
width: 100vw;
font-family: "Inter", sans-serif;
font-size: larger;
background-color: #212121;
color: #F4F4F4;
}
p, code {
margin: auto;
}
a {
color: lightgreen;
}
@supports (font-variation-settings: normal) {
html {
font-family: 'Inter var', sans-serif;
}
}
.monotext, code {
font-family: "Cascadia Mono", monospace;
font-weight: 350;
}
#content {
height: calc(100vh - 10em);
display: flex;
text-align: center;
align-items: center;
justify-content: center;
}
nav {
margin: 0;
padding: inherit;
display: flex;
flex-direction: row;
background-color: lightblue;
color: #212121;
}
#tagline {
padding: 1em;
}
#tagline > .monotext {
font-size: smaller;
}