-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (109 loc) · 3.29 KB
/
index.html
File metadata and controls
125 lines (109 loc) · 3.29 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<html>
<head>
<title>Whybrow</title>
<meta name="description" content="Whybrow. Mysterious.">
<link href="https://fonts.googleapis.com/css?family=Oleo+Script|Quicksand" rel="stylesheet">
<style>
* {
margin: 0; padding: 0;
}
body {
position: relative;
background-color: #fafafa;
}
.desc {
width: 100%;
position: absolute;
top: 50%;
margin: -150px 0 0 0;
}
.desc .marcus {
position: absolute;
right: 50%;
top: 0;
text-align: right;
margin-right: 30px;
color: #111;
}
.desc .marcus h2 {
color: #500;
animation-name: sparkle;
animation-duration: 32s;
animation-iteration-count: infinite;
}
.desc .dot {
position: absolute;
left: 50%;
width: 100px;
margin: 0 0 0 -50px;
font-size: 100px;
color: #111;
text-align: center;
font-size: 50px;
font-family: 'Oleo Script', cursive;
}
.desc .fit {
position: absolute;
left: 50%;
top: 0;
margin-left: 30px;
}
.desc .fit h2 {
text-align: left;
margin-right: 20px;
}
.desc { color: #111 }
.desc h2 {
font-size: 60px;
font-family: 'Oleo Script', cursive;
margin-bottom: -10px;
}
.desc .shy {
color: rgb(153, 153, 153);
font-size: 13px;
margin-bottom: 40px;
}
.desc .marcus h1,
.desc p {
color: rgb(153, 153, 153);
font-size: 16px;
margin-bottom: 6px;
font-family: 'Quicksand', cursive;
font-weight: normal;
}
.desc a {
color: inherit;
text-decoration: none;
}
.desc a:hover {
text-decoration: underline;
}
@keyframes sparkle {
1% { color: #f00 }
5% { color: #f00 }
22% { color: #500 }
26% { color: #0f0 }
30% { color: #0f0 }
47% { color: #050 }
51% { color: rgb(255, 0, 200) }
55% { color: rgb(255, 0, 200) }
72% { color: rgb(85, 0, 67) }
76% { color: rgb(255, 196, 0) }
80% { color: rgb(255, 196, 0) }
97% { color: rgb(85, 76, 0) }
}
</style>
</head>
<body>
<div class="desc">
<div class="marcus">
<h2>whybrow</h2>
<!-- <p class="shy">proper noun</p> -->
</div>
<div class="dot">.</div>
<div class="fit">
<h2>org.uk</h2>
</div>
</div>
</body>
</html>