-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (56 loc) · 1.35 KB
/
index.html
File metadata and controls
67 lines (56 loc) · 1.35 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
67
<!doctype html>
<html>
<head>
<title>Sandbox | Adam Thomas</title>
<link href="https://fonts.googleapis.com/css?family=Lora" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=PT+Sans+Narrow" rel="stylesheet">
<meta charset="UTF-8">
<style>
body,html {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
.container {
height: 100%;
position: relative;
}
.vertical-center {
text-align: center;
vertical-align:
margin: 0;
position: absolute;
top: 50%;
width: 100%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
a:link,
a:hover,
a:visited,
a:active {
display: inline-block;
font-family: 'Lora', serif;
color: #EB741E;
}
h1 {
padding:0;
margin:30px 0 5px;;
font-weight: normal;
color: #eb062c;
font-size: 140%;
text-align:center;
}
</style>
</head>
<body>
<div class="container">
<div class="vertical-center">
<img src="/images/code-block.png" height="200" style="margin-right: 10px;">
<h1>Adam Thomas | Sandbox</h1>
<a href="https://codeadam.ca">codeadam.ca</a>
</div>
</div>
</body>
</html>