-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (45 loc) · 830 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<html>
<head>
<style type="text/css">
div.outer {
display: table;
position: absolute;
height: 100%;
width: 100%;
}
div.middle {
display: table-cell;
vertical-align: middle;
}
#logo {
margin-left: auto;
margin-right: auto;
text-align:center;
width:30%;
background-color:rgba(0,0,0,0.2);
border-radius: 0.7em;
padding: 1em;
color: #fefefe;
}
#codec, #code {
text-shadow:0 1px 2px #333;
font-size:300%;
}
#codec {
color: #2D8EDF;
}
#code {
color: #000000;
}
</style>
</head>
<body>
<div class="outer">
<div class="middle">
<div id="logo">
<span id="codec">codec</span><span id="code">code</span>
</div>
</div>
</div>
</body>
</html>