-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathneon.html
More file actions
55 lines (55 loc) · 1.36 KB
/
neon.html
File metadata and controls
55 lines (55 loc) · 1.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Neon</title>
<style type="text/css">
body, html {
margin: 0;
height: 100%;
}
body {
font-family: "Vibur", sans-serif;
background-color: #010a01;
}
.center {
display: flex;
height: 100vh;
justify-content: center;
align-items: center;
}
.neon {
color: #fff;
text-shadow:
0 0 7px #fff,
0 0 10px #fff,
0 0 21px #fff,
0 0 42px #0fa,
0 0 82px #0fa,
0 0 92px #0fa,
0 0 102px #0fa,
0 0 151px #0fa;
font-size: 4rem;
text-align: center;
animation: blinker 3s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
footer {
position: absolute;
text-align: center;
margin-top: 500px;
}
</style>
</head>
<body>
<div class="center">
<div class="neon">COLD BEER<br />SOLD HERE</div>
<footer>
<a href="http://robertjmccaffery.com/examples.html">Back to Examples</a> <span style="color: #FFF">|</span> <a href="http://robertjmccaffery.com/">Home</a>
</footer>
</div>
</body>
</html>