-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path404.css
65 lines (55 loc) · 1.03 KB
/
404.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
html {
--header-bg: #0f0c19;
--accent: #4e3aA3;
--body-fg: #9b7dff;
margin: 0;
padding: 0;
background-color: #0f0c19;
color: var(--body-fg);
font-family: 'Roboto Regular', sans-serif;
padding: 20px;
}
body {
margin: 0;
padding: 0;
background-color: #0f0c19;
color: var(--body-fg);
overflow: hidden;
/* Hides the scrollbar for the body */
}
body * {
box-sizing: border-box;
line-height: 1.5em;
}
.error-container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
text-align: center;
height: 100vh;
}
.error-container h1 {
font-size: 3rem;
margin-bottom: 10px;
}
.error-container p {
font-size: 1.2rem;
color: #666;
}
.error-container a {
color: #009688;
text-decoration: none;
}
.error-container a:hover {
text-decoration: underline;
}
/* Selection */
::-moz-selection {
color: #fff;
background: var(--accent);
}
::selection {
color: #fff;
background: var(--accent);
}