-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (62 loc) · 1.63 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
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, shrink-to-fit=0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<title>Stringify Copenhagen</title>
<meta name="description" content="Stringify is shipping carefully crafted software, using Dan Mindru's hands. He supposedly has an eye for beautiful UX & interface designs, be it for the web or mobile."
/>
<link href='https://fonts.googleapis.com/css?family=Roboto:300,700' rel='stylesheet' type='text/css'>
<style type="text/css">
body, html {
font-family: 'Roboto', Helvetica, sans-serif;
font-size: 16px;
background: #78D8FF;
-webkit-font-smoothing: antialiased;
color: whitesmoke;
text-align: center;
margin: 0;
padding: 0;
}
canvas {
display: block;
position: fixed;
z-index: -5;
}
header {
margin: 16px;
font-weight: 700;
font-size: 13px;
}
a {
color: white;
}
a:hover, a:focus {
color: gray;
}
h1 {
font-size: 30px;
font-weight: 300;
margin: 5px 0px;
}
footer {
position: absolute;
bottom: 0;
left: 0;
width: 100vw;
padding: 20px;
box-sizing: border-box;
}
</style>
</head>
<body>
<canvas></canvas>
<header>
<h1>Stringify Copenhagen</h1>
</header>
<footer>
The scaffolding is there, but we're still stringifying. Come back later or visit our <b><a href="https://github.com/stringifycph">Github</a></b> in the meantime.
</footer>
<script src="bundle.js" async></script>
</body>
</html>