-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (61 loc) · 1.17 KB
/
style.css
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
body {
background-color: #212029;
padding: 32px 20%;
font-family: sans-serif
}
@media (max-width: 768px) {
body {
padding: 12px 5%;
}
}
p {
color: #e0e0e0;
}
@keyframes rainbow {
0% { text-shadow: 0 0 5px red; }
16.7% { text-shadow: 0 0 5px orange; }
33.3% { text-shadow: 0 0 5px yellow; }
50% { text-shadow: 0 0 5px green; }
66.7% { text-shadow: 0 0 5px blue; }
83.3% { text-shadow: 0 0 5px indigo; }
100% { text-shadow: 0 0 5px violet; }
}
h1 {
color: #e0e0e0;
animation: rainbow 6s linear infinite;
}
h2 {
color: #e0e0e0;
}
.aura-name {
font-family: monospace;
margin-bottom: 0px;
}
.website-links {
font-family: monospace;
color: #e0e0e0;
margin-top: 0px;
margin-bottom: 0px;
margin-left: 24px;
}
div {
margin-left: 16px;
margin-right: 16px;
margin-bottom: 96px;
}
footer {
margin-left: 16px;
margin-right: 16px;
text-align: right;
color: #e0e0e0;
}
.hidden-link {
text-decoration: none;
color: #e0e0e0;
font-weight: normal;
}
.hidden-link:hover {
text-decoration: underline;
font-weight: bolder;
text-shadow: 0px 0px 1px #fff;
}