-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (60 loc) · 1.23 KB
/
index.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
<!doctype html>
<!--
Source: https://github.com/dev-space/dev-space.github.io
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<script async src="./starfield.js"></script>
<style>
body {
width: 100vw;
height: 100vh;
margin: 0;
background-color: black;
}
.fullScreen {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
margin: 0;
}
.fullScreen > h1 {
font-size: 2rem;
font-family: monospace;
font-weight: bold;
text-align: center;
position: absolute;
}
@media(min-width: 25em) {
.fullScreen > h1 {
font-size: 3.5rem;
}
}
@media(min-width: 42em) {
.fullScreen > h1 {
font-size: 6rem;
}
}
a {
text-decoration: none;
color: white;
text-shadow: 0 0 10px;
}
a:hover {
color: #ff0066;
transition: color 300ms ease-in;
}
</style>
</head>
<body>
<div class="fullScreen" id="fullScreen">
<h1><a href="https://events.ccc.de/congress/2017/wiki/index.php/Assembly:/dev/space">/dev/space</a></h1>
<canvas id="canvas2d"></canvas>
</div>
</body>
</html>