-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 842 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>DiGiTAL SEDiTiON</title>
<style>
* {
padding: 0;
margin: 0;
color: #AAAAAA;
text-align: center;
}
body {
background-color: #555555;
}
div.container {
width: 100%;
height: 100%;
}
div.vertical {
width: 100%;
position: absolute;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
</style>
</head>
<body>
<div class="container">
<div class="vertical">
<h1>not yet</h1>
</div>
</div>
</body>
</html>