-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (94 loc) · 2.77 KB
/
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<title>Curtis Henson - Anchors Free Out to Sea</title>
<meta name="description" content="Web Designer and Developer. Surfer. Car guy. Smart Ass.">
</head>
<style type="text/css" media="screen">
html,body {
height: 100%;
width: 100%;
overflow: hidden;
margin: 0;
padding: 0;
}
body {
background: #4F697A url('/assets/img/surfing.gif') center bottom;
background-size: cover;
}
.wrap {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-flex-flow: row wrap;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
position: absolute;
top: 0;
left:0;
right:0;
bottom: 0;
background: rgba(255,255,255,0.3) }
.image {
-webkit-align-self: flex-end;
-ms-flex-item-align: end;
align-self: flex-end;
-webkit-box-flex: 1;
-webkit-flex: 1 100%;
-ms-flex: 1 100%;
flex: 1 100%;
max-width: 40%;
}
.image img { width: 100%; }
.footer {
-webkit-align-self: flex-end;
-ms-flex-item-align: end;
align-self: flex-end;
-webkit-box-flex: 1;
-webkit-flex: 1 100%;
-ms-flex: 1 100%;
flex: 1 100%;
text-align: center;
padding: 1em 0;
}
a { color: #000; text-decoration: none; }
a:hover { text-decoration: underline; }
.sod_off { display: none; }
.no-flexbox body {
background-image: url('/assets/img/internet.gif');
}
.no-flexbox .image { display: none; }
.no-flexbox .sod_off { display: block; }
</style>
<script src="/assets/js/modernizr.min.js"></script>
<body>
<div class="wrap">
<div class="image">
<img src="/assets/img/out_to_sea.png" alt="Out to Sea">
</div>
<div class="footer">
<a href="https://twitter.com/svenhenson">Twitter</a> • <a href="http://kraftwerkdesign.com">Work</a>
</div>
<div class="sod_off">
<p>Your browser is old update it or get bent.</p>
</div>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-498818-2', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>