-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
78 lines (66 loc) · 1.24 KB
/
styles.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
73
74
75
76
77
78
body {
font-family: "Lucida Console", "Courier New", monospace;
background-color: #101010;
text-align: center;
color: #808080;
}
h1 {
font-size: 7it svw;
color: #FF5700;
}
a {
text-decoration: none;
color: #FF5700;
}
/* Joke Display */
.joke {
color: white;
}
.jokeDiv {
margin-left: 25%;
margin-right: 25%;
}
@keyframes wheelHueColor {
from, to { color: #ffadad; }
12.5% { color: #ffd6a5; }
25% { color: #fdffb6; }
37.5% { color: #caffbf; }
50% { color: #9bf6ff; }
62.5% { color: #a0c4ff; }
85% { color: #bdb2ff; }
97.5% { color: #ffc6ff; }
}
.rotateColor {
border-style: solid;
border-width: 6px;
background: #121212;
animation: wheelHueColor 10s infinite;
}
/* Navigation Bar */
ul {
list-style-type: none;
margin: 0;
padding: .5vw;
overflow: hidden;
background-color:#101010;
top: 0;
width: 99%;
}
li {
float: right;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color:#1b1b1b;
border-radius: 5pt;
}
/*
embed color: #121212
reddit color: #FF5700
*/