-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
52 lines (46 loc) · 1.12 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Security-Policy" content="script-src 'self'">
<title>About Galeri</title>
<style>
body {
background-image: url('./src/assets/about.jpg');
background-size: contain;
height: 100vh;
color: #fff;
font-family: monospace;
padding: 3rem;
display: flex;
flex-direction: column;
overflow: hidden;
}
h1 {
font-size: 5rem;
line-height: 2.5rem;
margin: 6rem 0 1.25rem;
}
h1 span {
font-size: 2.7rem;
}
p {
margin: 0.25rem 0;
}
p:last-of-type {
margin-top: 0.75rem;
}
small {
margin-left: 0.5rem;
font-size: 1rem;
}
</style>
</head>
<body>
<h1>G<span>aleri</span><small id="version">__VERSION__</small></h1>
<p>A perpetual artwork streaming app.</p>
<p>Made with ❤️ by Micheal Parks.</p>
<p>Artworks provided by Wikipedia.</p>
</body>
</html>