-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
134 lines (123 loc) · 2.25 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/* reset */
*,
*::before,
*::after {
box-sizing: border-box;
}
body {
margin: 0;
}
/* styles */
body {
font-family: "Open Sans", sans-serif;
}
header {
color: white;
background-color: black;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2rem;
}
header a {
color: white;
}
.logo-svg {
fill: white;
height: 4rem;
transform-origin: top;
animation-name: strobe;
animation-delay: 2s;
animation-duration: 4s;
animation-iteration-count: infinite;
}
@keyframes strobe {
0% {
fill: white;
filter: drop-shadow(0px 0px 3px white);
transform: translateX(1px) rotate(1deg);
}
1% {
fill: yellow;
filter: drop-shadow(0px 0px 3px yellow);
transform: translateX(-1px) rotate(-3deg);
}
2% {
fill: purple;
filter: drop-shadow(0px 0px 3px purple);
transform: translateX(1px) rotate(1deg);
}
3% {
fill: lightcoral;
filter: drop-shadow(0px 0px 3px lightcoral);
transform: translateX(-1px) rotate(-3deg);
}
4% {
fill: green;
filter: drop-shadow(0px 0px 3px green);
transform: translateX(1px) rotate(1deg);
}
5% {
fill: indigo;
filter: drop-shadow(0px 0px 3px indigo);
transform: translateX(-1px) rotate(-3deg);
}
6% {
fill: orange;
filter: drop-shadow(0px 0px 3px orange);
transform: translateX(1px) rotate(1deg);
}
7% {
fill: brown;
filter: drop-shadow(0px 0px 3px brown);
transform: translateX(-1px) rotate(-3deg);
}
8% {
fill: magenta;
filter: drop-shadow(0px 0px 3px magenta);
transform: translateX(1px) rotate(1deg);
}
9% {
fill: lightblue;
filter: drop-shadow(0px 0px 3px lightblue);
transform: translateX(-1px) rotate(-3deg);
}
/* pause */
10% {
fill: white;
filter: drop-shadow(0px 0px 3px white);
transform: translateX(0) rotate(0);
}
100% {
fill: white;
}
}
.logo-font {
font-family: "Poppins", sans-serif;
}
.logo-text {
font-weight: 500;
}
.logo-slogan {
color: gray;
}
.menu {
list-style: none;
padding: 0;
text-align: center;
}
.menu a {
color: white;
}
main {
padding: 2rem;
}
footer {
background-color: black;
padding: 1rem 2rem;
color: white;
display: flex;
justify-content: space-between;
}