This repository has been archived by the owner on Jan 30, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
113 lines (93 loc) · 2.56 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
---
permalink: /404.html
---
<html lang="en">
<head>
<meta charset="UTF-8">
<!--[if IE]><meta http-equiv="X-UA-Compatible" content="IE=edge"><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="font, music, music notation, sheet music">
<title>Cavatina</title>
<style>
html {
font-size: 23px;
margin: 1em;
background: radial-gradient(circle, transparent 40%, #f3f3f3 70%, #eee);
background-color: #fff;
color: #000;
}
body {
display: flex;
max-width: 600px;
margin: 50px auto 40px auto;
font-family: Georgia, serif;
font-size: 23px;
}
.content {
width: 100%;
}
h1 {
font-family: kepler-std-display, serif;
font-weight: 500;
text-align: center;
font-size: 7em;
margin-bottom: 3rem;
margin-top: 2vw;
}
a {
color: #ba3925;
text-decoration: none;
}
a:hover,
a:active,
a:focus {
text-decoration: underline;
}
.huge-display-title {
text-align: center;
}
p {
text-align: justify;
font-family: acumin-pro, sans-serif;
font-weight: 300;
font-style: normal;
}
span {
font-size: small;
}
img.the-lick {
display: block;
margin: 0 auto 2em;
width: 425px;
}
@media screen and (max-width: 500px) {
html {
margin: 5vw;
}
body {
font-size: 6vw;
}
h1 {
font-size: 4em;
margin-bottom: 1rem;
}
img.the-lick {
width: 100%;
}
}
</style>
<link rel="shortcut icon" href="">
<link rel="stylesheet" href="https://use.typekit.net/jhp4nbk.css">
</head>
<body>
<div class="content">
<h1>404</h1>
<p>The page you are requesting for could not be found. Maybe you were looking for the <a
href="docs.html">documentation</a> or the short
<a href="tutorial.html">tutorial</a>.</p>
<img class="the-lick" src="resources/images/the_lick_two_voices.png" alt="The Lick set in Cavatina">
<hr>
<span>© 2019 Alexis Luengas</span>
</div>
</body>
</html>