forked from SWCTechTeam/SWCTechTeam.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
131 lines (129 loc) · 2.47 KB
/
404.html
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
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/svg" href="./img/favicon.svg"/>
<style>
@font-face {
font-family: JetbrainsMono;
font-display: swap;
src: url("/fonts/JetBrainsMono-Medium.ttf") format("truetype");
}
* {
background: #2e3440;
color: #d8dee9;
font-family: "JetbrainsMono", sans-serif;
box-sizing: border-box;
}
code {
color: white;
/* background-color: #44475a; */
background-color: transparent;
font-family: "JetbrainsMono";
white-space: pre-wrap ~important;
}
html, body {
max-width: 100%;
overflow-x: hidden;
}
body {
margin: 0;
padding: 0;
line-height: 1.5;
display: inline
}
.main-content{
/*margin-left: auto;*/
/*margin-right: auto;*/
/*width: 1000px;*/
width: 60%;
margin: 0 auto 25px;
}
a {
color: #81a1c1;
}
a:hover,
a:visited,
a:active {
color: #b48ead;
}
h2 {
color: #b48ead;
max-width: 700px;
}
h3 {
max-width: 700px;
}
.item-title {
display: inline;
}
.banner-content h1 {
color: #d08770;
margin: 0;
text-align: center;
}
header {
padding: 60px;
text-align: center;
background: #d08770;
color: #d08770;
font-size: 30px;
}
.banner-content {
text-align: center;
color: #d8dee9;
background: #d08770;
}
banner p{
padding: 0 30%;
color: #d8dee9;
}
img {
width: 600px;
height: auto;
}
figure {
margin: 0 auto;
padding: 0 auto;
}
pre {
overflow-x: auto;
/* padding-left: 1rem; */
padding: 1rem;
border: 1px solid;
}
ul {
overflow: hidden;
padding-left: 2em;
}
@media only screen and (max-width: 767px){
header h1{
font-size: 30px;
}
header p{
font-size: 15px;
}
img {
width: 300px;
height: auto;
}
.main-content{
width: 90%;
}
}
</style>
<title>404</title>
</head>
<body>
<header>
<h1 class="banner-content">404 page not found</h1>
<p class="banner-content">You're a little lost, buddy.</p>
</header>
<div class="main-content">
<h2>How did you even mess up navigating this website?</h2>
I guess I'll help you out. <a href="index.html">main page</a>
</div>
</body>
</html>