-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (60 loc) · 1.3 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
<html>
<head>
<title>hi spex</title>
<style>
html,
body {
font-size: 2rem;
background-color: #1d1e22;
animation: rainbow 60s linear infinite;
}
marquee > div {
display: inline-flex;
flex-direction: column;
align-items: center;
}
div > div:first-child {
font-style: italic;
font-weight: bold;
}
div > div:nth-child(2) {
border-width: 0.3rem 1.5rem;
border-style: solid;
border-radius: 50%;
padding: 0.2rem;
width: 1rem;
margin-top: -0.7rem;
}
div > div:last-child {
font-size: 0.8rem;
letter-spacing: 0.2rem;
}
@keyframes rainbow {
0%,
100% {
color: red;
border-color: red;
}
33% {
color: blue;
border-color: blue;
}
66% {
color: yellow;
border-color: yellow;
}
}
</style>
</head>
<body>
<marquee behavior="alternate" direction="down" width="100%" height="100%">
<marquee behavior="alternate" direction="left" width="100%">
<div>
<div>SPEX</div>
<div></div>
<div>.dev</div>
</div>
</marquee>
</marquee>
</body>
</html>