-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (94 loc) · 1.85 KB
/
style.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@font-face {
font-family: "JetBrains Mono";
font-weight: normal;
font-style: normal;
src: url(/assets/fonts/jetbrains-mono/JetBrainsMono-Regular.ttf);
}
@font-face {
font-family: "JetBrains Mono";
font-weight: normal;
font-style: italic;
src: url(/assets/fonts/jetbrains-mono/JetBrainsMono-Italic.ttf);
}
@font-face {
font-family: "JetBrains Mono";
font-weight: bold;
font-style: normal;
src: url(/assets/fonts/jetbrains-mono/JetBrainsMono-Bold.ttf);
}
@font-face {
font-family: "JetBrains Mono";
font-weight: bold;
font-style: italic;
src: url(/assets/fonts/jetbrains-mono/JetBrainsMono-BoldItalic.ttf);
}
html,
body {
--primary-fill: #fefefe;
--primary-stroke: #22272a;
--secondary-stroke: #262b2e;
--tertiary-stroke: #4b5563;
--primary-accent: #347da7;
}
html.dark,
body.dark {
/* --primary-fill: #111111; */
--primary-fill: #1c1e20;
--primary-stroke: #ededed;
--secondary-stroke: #c8c9cb;
--tertiary-stroke: #9ca3af;
--primary-accent: #55bff6;
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "JetBrains Mono", monospace;
line-height: 150%;
}
html,
body {
width: 100%;
height: max-content;
padding: 0;
margin: 0;
background: var(--primary-stroke);
overflow-x: hidden;
}
.shell-html {
background: var(--primary-fill);
width: 100vw;
min-height: 100vh;
display: flex;
align-items: center;
flex-direction: column;
padding-top: 2rem;
margin: 0;
position: relative;
}
:not(:defined) {
visibility: hidden;
}
a:focus,
button:focus {
outline: none !important;
}
a,
button {
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
}
.not-found {
font-size: 1.5rem;
justify-content: center;
align-items: center;
text-align: center;
width: 100%;
}
@media only screen and (max-width: 350px) {
html,
body,
:root {
font-size: 4.5vw;
}
}