-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404style.css
92 lines (75 loc) · 1.58 KB
/
404style.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
:root {
--link-color: #D7B8F3;
--second-link-color: #D4F3B9;
}
.mainbody {
background-color: #1D1F20;
padding-right: 1.32vw;
padding-left: 1.32vw;
text-align: left;
}
@font-face {
font-family: 'nunito-semi-bold';
src: url('assets/Nunito-SemiBold.woff2') format('woff2');
font-weight: 600;
font-display: swap;
}
@font-face {
font-family: 'nunito-extra-bold';
src: url('assets/Nunito-ExtraBold.woff2') format('woff2');
font-weight: 800;
font-display: swap;
}
h1 {
color: #fff;
font-size: calc(48px + .75vw - .25vw);
font-family: 'nunito-extra-bold', Arial, sans-serif;
font-weight: 700;
text-align: left;
margin-bottom:0;
}
p {
color: #fff;
font-family: 'nunito-semi-bold', Arial, sans-serif;
text-align: left;
font-size: calc(14px + .3vw);
line-height: 150%;
}
a {
font-family: 'nunito-semi-bold', Arial, sans-serif;
color: var(--link-color);
font-size: calc(13px + .3vw);
border-radius: 5px;
}
a:hover, a:focus {
color: var(--second-link-color);
text-decoration: none;
}
a:focus {
text-decoration: underline dashed;
}
/* More contrasty version for people with vision deficiencies */
@media (prefers-contrast: more) {
:root {
--link-color: #fff;
}
a, a:hover, a:focus {
text-decoration: underline solid #DBDBDB;
}
a {
color:var(--link-color);
}
.mainbody {
background-color: #000;
}
}
/* Disabling animations for people with reduced motion on or on slow devices */
@media (prefers-reduced-motion: no-preference) and (update: fast) {
a {
transition: all .15s ease-in-out;
}
a:hover {
color: var(--second-link-color);
text-decoration: none;
}
}