-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (81 loc) · 1.78 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Talking longer than implementation should take.</title>
<style type="text/css">
html, body { font-size: 100% }
body {
margin: 0;
background-color: #424242;
color: white;
font-family: serif;
}
h1 {
color: #ff5252;
line-height: .9;
margin-top: 4rem;
font-size: 12vw;
text-shadow: 1px 1px 5px rgba(247,35,233,0.10);
font-family: serif;
font-weight: 400;
}
h1, p {
text-align: center;
}
.blinking-cursor {
font-weight: 100;
font-size: 12vw;
color: white;
-webkit-animation: 1.4s blink step-end infinite;
-moz-animation: 1.4s blink step-end infinite;
-ms-animation: 1.4s blink step-end infinite;
-o-animation: 1.4s blink step-end infinite;
animation: 1.4s blink step-end infinite;
}
@keyframes "blink" {
from, to {
color: transparent;
}
50% {
color: white;
}
}
@-moz-keyframes blink {
from, to {
color: transparent;
}
50% {
color: white;
}
}
@-webkit-keyframes "blink" {
from, to {
color: transparent;
}
50% {
color: white;
}
}
@-ms-keyframes "blink" {
from, to {
color: transparent;
}
50% {
color: white;
}
}
@-o-keyframes "blink" {
from, to {
color: transparent;
}
50% {
color: white;
}
}
</style>
</head>
<body>
<h1>Talking longer than implementation should take <span class="blinking-cursor">|</span>.</h1>
<p>This page, for example, including provisioning the domain, took literally less than 15 minutes to set up.</p>
</html>