-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (107 loc) · 2.7 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
@import url("https://rsms.me/inter/inter.css");
html {
font-family: "Inter", sans-serif;
}
@supports (font-variation-settings: normal) {
html {
font-family: "Inter var", sans-serif;
}
}
body {
font-family: "Inter var", sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
}
.container {
font-family: "Inter var", sans-serif;
}
.header {
font-family: "Inter var", sans-serif;
text-align: center;
font-size: 60px;
font-weight: bolder;
margin: 25px;
background-image: linear-gradient(#7a00b2, #42008d);
color: black;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
-webkit-box-decoration-break: clone;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #1A1A40;
--text-color: #f5f5f5;
--sub-header-color: #ebebeb;
}
}
@media (prefers-color-scheme: light) {
:root {
--bg-color: #fff;
--text-color: #000001;
--sub-header-color: #0a0a0a;
}
}
.header-404 {
font-family: "Inter var", sans-serif;
text-align: center;
font-size: 72px;
font-weight: bolder;
margin: 25px;
color: #f5f5f5;
}
.header-404-h2 {
font-family: "Inter var", sans-serif;
text-align: center;
font-size: 42px;
font-weight: bold;
margin: 10px;
color: #f5f5f5;
}
.sub-header-main-page {
margin-top: 10px;
font-size: 22px;
text-align: center;
font-weight: 600;
font-family: "Inter var", sans-serif;
color: var(--sub-header-color);
}
.information-404 {
margin-left: 75px;
text-align: center;
margin-right: 75px;
font-size: 16px;
font-family: "Inter var", sans-serif;
color: #f5f5f5;
font-weight: bold;
}
.homepage-button {
background-color: #FFFFFF;
border: 0;
border-radius: .5rem;
box-sizing: border-box;
color: #111827;
font-family: "Inter var",ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
font-size: .875rem;
font-weight: 600;
line-height: 1.25rem;
text-align: center;
text-decoration: none #D1D5DB solid;
text-decoration-thickness: auto;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
cursor: pointer;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
margin: auto;
text-align: center;
}
.homepage-button:hover {
background-color: rgb(249,250,251);
}
.homepage-button:focus {
outline: 2px solid transparent;
outline-offset: 2px;
}
.homepage-button:focus-visible {
box-shadow: none;
}