-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy path404.css
More file actions
127 lines (111 loc) · 2.81 KB
/
Copy path404.css
File metadata and controls
127 lines (111 loc) · 2.81 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* 404 Page Styles */
/* CSS Variables */
:root {
--404-color_background: rgba(255 255 255 / 100%);
--404-color_text: #4c4c4c;
--404-color_heading: #202020;
--404-color_border: #ececec;
--404-color_textAccent: #0588f0;
--404-color_textAccentHover: #0d74ce;
--404-space_8: 0.5rem;
--404-space_24: 1.5rem;
--404-fontSize_root: 16px;
--404-fontSize_h1: 2rem;
--404-fontFamily_default: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
--404-fontWeight_medium: 400;
--404-fontWeight_semibold: 500;
--404-lineHeight_paragraph: 1.75em;
--404-lineHeight_heading: 1.5em;
}
:root.dark {
--404-color_background: #121113;
--404-color_text: rgba(255, 255, 255, 0.8);
--404-color_heading: rgba(255 255 255 / 100%);
--404-color_border: #2b292d;
--404-color_textAccent: #3b9eff;
--404-color_textAccentHover: #0090ff;
}
/* Base Reset */
*,
*::before,
*::after {
box-sizing: border-box;
border-width: 0;
border-style: solid;
}
html,
body {
margin: 0;
padding: 0;
height: 100%;
}
body {
font-family: var(--404-fontFamily_default);
font-size: var(--404-fontSize_root);
line-height: var(--404-lineHeight_paragraph);
font-weight: var(--404-fontWeight_medium);
background-color: var(--404-color_background);
color: var(--404-color_text);
-webkit-text-size-adjust: 100%;
text-rendering: optimizeLegibility;
}
hr {
height: 0;
color: inherit;
border-top-width: 1px;
border-top-style: solid;
border-top-color: var(--404-color_border);
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: inherit;
font-weight: inherit;
margin: 0;
}
a {
color: inherit;
text-decoration: inherit;
}
p {
margin: 0;
}
/* Component Styles */
.vocs_H1 {
font-size: var(--404-fontSize_h1);
letter-spacing: -0.02em;
line-height: var(--404-lineHeight_heading);
color: var(--404-color_heading);
font-weight: var(--404-fontWeight_semibold);
}
.vocs_Paragraph {
line-height: var(--404-lineHeight_paragraph);
letter-spacing: 0.005em;
color: var(--404-color_text);
margin-bottom: var(--404-space_24);
}
.vocs_Link {
color: var(--404-color_textAccent);
font-weight: var(--404-fontWeight_medium);
text-underline-offset: var(--404-space_8);
text-decoration: underline;
transition: color 0.1s;
}
.vocs_Link:hover {
color: var(--404-color_textAccentHover);
}
.vocs_NotFound_root {
align-items: center;
display: flex;
flex-direction: column;
max-width: 400px;
margin: 0 auto;
padding-top: 8rem;
}
.vocs_NotFound_divider {
border-color: var(--404-color_border);
width: 50%;
}