-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (85 loc) · 2.39 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
<html>
<head>
<title>Engineering Weekly | Benefits of Using SASS</title>
<meta name="description" content="This is what engineering is all about."/>
<style>
body {
background-color:#ccc;
font-family:Arial, sans-serif;
text-align:center;
}
.jen {
-webkit-text-stroke: 1px black;
color: white;
text-shadow:
3px 3px 0 #000,
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
font-weight:bold;
left: 500px;
top: 300px;
position: absolute;
-webkit-animation: myOrbit 4s linear infinite;
-moz-animation: myOrbit 4s linear infinite;
-o-animation: myOrbit 4s linear infinite;
animation: myOrbit 4s linear infinite;
z-index:10
}
.whiskers {
left:200px;
top:400px;
position: absolute;
-webkit-animation: myOrbit 6s linear infinite;
-moz-animation: myOrbit 6s linear infinite;
-o-animation: myOrbit 6s linear infinite;
animation: myOrbit 6s linear infinite;
}
@-webkit-keyframes myOrbit {
from { -webkit-transform: rotate(0deg) translateX(200px) rotate(0deg); }
to { -webkit-transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}
@-moz-keyframes myOrbit {
from { -moz-transform: rotate(0deg) translateX(200px) rotate(0deg); }
to { -moz-transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}
@-o-keyframes myOrbit {
from { -o-transform: rotate(0deg) translateX(200px) rotate(0deg); }
to { -o-transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}
@keyframes myOrbit {
from { transform: rotate(0deg) translateX(200px) rotate(0deg); }
to { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}
p {
color: purple;
}
a.blink:visited,
a.blink:hover,
a.blink:link,
a.blink:active {
color: orange;
font-weight:bold;
font-size:20px;
animation: blink-animation 1s steps(5, start) infinite;
-webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
to {
color:purple;
}
}
@-webkit-keyframes blink-animation {
to {
color:purple;
}
}
</style>
</head>
<body>
<h1 class="jen">HI JEN!</h1>
<img class="whiskers" src="whiskers.jpg" width="200px"/>
<p>based on <a class="blink" href="https://treetown.slack.com/archives/nom-nom-nom/p1462994211000075">this</a></p>
</body>
</html>