-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
126 lines (108 loc) · 3.33 KB
/
Copy path404.html
File metadata and controls
126 lines (108 loc) · 3.33 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
<!DOCTYPE html>
<html lang="en">
<!-- HEAD -->
<head>
<title>ghostwriter</title>
<meta charset="utf-8">
<meta http-equiv="refresh" content="5; url='https://ghostwriter.kde.org'" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A distraction-free Markdown editor for the desktop">
<meta name="keywords" content="Markdown editor,distraction-free,text editor,word processor,fullscreen,full screen">
<style>
@import url('https://fonts.googleapis.com/css2?family=Cherry+Swash:wght@400;700&family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Open+Sans:ital,wght@0,400;0,700;1,400&family=Roboto+Mono&display=swap');
body {
margin : 0;
padding : 0;
display : grid;
place-content : center;
min-height : 100vh;
background-color: rgb(39, 38, 38);
color: rgb(241, 237, 232);
align-self: center;
}
.title-container {
position: relative;
display: flex;
align-items: center;
justify-content: center
}
.mascot img {
align-self: center;
width: 48px;
object-fit: cover;
padding-top: 26px;
padding-left: 5px;
padding-right: 5px;
padding-bottom: 0px;
margin: 0;
}
.contents {
font-family: "Open Sans", sans-serif;
font-size: 20px;
align-items: center;
display: grid;
text-align: center;
}
.title {
font-size: 64px;
display: flex;
font-family: "Cherry Swash", fantasy;
font-weight: bold;
align-items: center;
}
a {
color: rgb(110, 207, 231);
text-decoration: none;
font-family: "Cherry Swash", fantasy;
text-align: center;
text-decoration: underline;
}
a:hover {
text-decoration: underline;
}
em {
font-family: "Lobster Two", cursive;
font-style: italic;
font-size: 120%;
}
.redirect {
font-family: "Cherry Swash", fantasy;
text-align: center;
font-size: 130%;
}
hr {
border-color: rgb(187, 61, 61);
background-color: rgb(187, 61, 61);
border-radius: 3px;
width: 50%;
height: 3px;
}
.oops {
font-family: "Lobster Two", cursive;
font-size: 32px;
font-style: italic;
font-weight: bold;
}
</style>
</head>
<!-- BODY -->
<body>
<div class="title-container">
<div class="title">4</div>
<div class="mascot">
<img src="/images/ghostwriter-no-background.svg" alt="404" />
</div>
<div class="title">4</div>
</div>
<hr/>
<div class="contents">
<div class="oops">Oops!</div>
<p><em>ghostwriter</em> has moved to the KDE project!</p>
</div>
<div class="redirect">
<p>Keep Calm</p>
<p>and</p>
<p><a href="https://ghostwriter.kde.org">Write On!</a></p>
</div>
</body>
</html>