-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (58 loc) · 1.94 KB
/
index.html
File metadata and controls
66 lines (58 loc) · 1.94 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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Sandelz</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="format-detection" content="telephone=no">
<link rel="icon" href="assets/icon-64.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Fira+Sans:300">
<style>
body {
position: absolute; top: 0; right: 0; bottom: 0; left: 0;
overflow: hidden;
margin: 0;
cursor: default; /* No text cursor */
-webkit-tap-highlight-color: rgba(0,0,0,0); /* iOS: No box around links on click */
-webkit-touch-callout: none; /* iOS: No action sheet after long press on link */
touch-action: none; /* IE: No double tap to zoom, gray box around active links */
-webkit-text-size-adjust: none; /* iOS: Disable text enlargement */
display: flex;
flex-direction: column;
align-items: center;
font-family: sans-serif;
overflow: auto;
}
h1, h2 {
font-family: 'Fira Sans', sans-serif;
font-weight: 300;
color: #666;
}
h1 { font-size: 40px;}
h2 { font-size: 25px; }
#inDevelopment {
color: #00aed5;
font-size: 20px;
margin-bottom: 20px;
}
#footer {
color: #bbb;
margin-bottom: 20px;
font-size: 12px;
}
</style>
</head>
<body>
<div style="flex: 2"></div>
<img src="assets/logo.svg" width="160">
<h1>Sandelz</h1>
<h2>Efficient and Versatile Build System</h2>
<div style="flex: 1"></div>
<div id="inDevelopment">Currently in development</div>
<div style="flex: 1"></div>
<div id="footer">© 2017 MajorBreakfast</div>
</body>
</html>