Skip to content

Commit 2d3458f

Browse files
committed
Created index.html with initial content.
1 parent 98519bb commit 2d3458f

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

index.html

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8"/>
5+
<title>Project Q</title>
6+
<meta name="author" content="Florian Bender"/>
7+
<style>
8+
/* adapted: center position trick by http://css-tricks.com/centering-in-the-unknown/ */
9+
html, body {
10+
height: 100%;
11+
font-family: Arial, sans-serif; /* Yeah, sorry. */
12+
}
13+
body {
14+
margin: 0;
15+
text-align: center;
16+
font-size: 0;
17+
}
18+
body:before {
19+
content: '';
20+
display: inline-block;
21+
height: 100%;
22+
margin-right: -0.25em;
23+
vertical-align: middle;
24+
}
25+
#main {
26+
display: inline-block;
27+
width: 50%;
28+
max-width: 320px;
29+
min-width: 160px;
30+
margin: 1em;
31+
vertical-align: middle;
32+
font-size: 16px;
33+
font-size: 1rem;
34+
}
35+
</style>
36+
</head>
37+
<body>
38+
<div id="main">
39+
<h1>Project Q</h1>
40+
<p>More to come.</p>
41+
</div>
42+
</body>
43+
</html>

0 commit comments

Comments
 (0)