-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
100 lines (100 loc) · 1.54 KB
/
styles.css
File metadata and controls
100 lines (100 loc) · 1.54 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
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
95
96
97
98
99
100
* {
font-family: 'Muli', sans-serif;
}
.nav-logo {
width: 2em;
}
.name {
font-family: 'Pacifico', cursive;
}
.color-changer {
animation-name: colorChange;
animation-iteration-count: infinite;
animation-duration: 1s;
}
@keyframes colorChange {
0% {
color: rgb(252, 186, 3);
}
10% {
color: rgb(252, 86, 3);
}
20% {
color: rgb(252, 3, 3);
}
30% {
color: rgb(252, 3, 148);
}
40% {
color: rgb(244, 3, 252);
}
50% {
color: rgb(157, 3, 252);
}
60% {
color: rgb(36, 3, 252);
}
70% {
color: rgb(3, 165, 252);
}
80% {
color: rgb(3, 252, 211);
}
90% {
color: rgb(3, 252, 74);
}
100% {
color: rgb(115, 252, 3);
}
}
.navbar {
position: fixed;
top: 0;
width: 100%;
height: 50px;
z-index: 1069;
}
.footer {
bottom: 0;
background-color: #F8F9FA;
min-width: 100vw !important;
height: 50px;
}
.blockquote {
font-size: 12px;
color: rgb(120, 120, 120);
}
.tab2 {
display: none;
}
li.active {
text-decoration: underline;
}
li {
cursor: pointer;
}
.beat {
animation: .8s infinite beatHeart;
color: #FF3031;
}
a, a:hover, a:visited, a:active {
text-decoration: none;
color: #3C40C6;
}
@keyframes beatHeart {
0% {
transform: scale(1);
}
25% {
transform: scale(1.1);
}
40% {
transform: scale(1);
}
60% {
transform: scale(1.1);
}
100% {
transform: scale(1);
}
}