blob: ec118860c6a2e7dadd9483a548c0b909f74cd8dd (
plain)
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
|
body {
background: url("img/bg.jpg");
color: beige;
--cont-margin: 15%;
}
#content {
margin: auto 4vw;
}
h1 {
text-shadow: 0.2em -0.4em #00ed60, 0.4em 0.4em #a794ff;
}
h2, h3, h4 {
transform: rotate3d(1, 1, 0, -25deg);
}
#Introduction {
font-style: italic;
text-align: end;
}
svg {
margin: auto 0;
}
.wavy path {
animation-name: hop;
animation-duration: 1.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
path#id_1 {
animation-delay: 0.3s;
}
path#id_2 {
animation-delay: 0.6s;
}
path#id_3 {
animation-delay: 0.9s;
}
path#id_4 {
animation-delay: 1.2s;
}
path#id_5 {
animation-delay: 1.5s;
}
path#id_6 {
animation-delay: 1.8s;
}
path#id_7 {
animation-delay: 2.1s;
}
path#id_8 {
animation-delay: 2.4s;
}
path#id_9 {
animation-delay: 2.7s;
}
path#id_10 {
animation-delay: 3s;
}
path#id_11 {
animation-delay: 3.3s;
}
path#id_12 {
animation-delay: 3.6s;
}
.left-container {
text-align: start;
margin-right: var(--cont-margin);
}
.right-container {
text-align: end;
margin-left: var(--cont-margin);
}
@keyframes hop{
25% {
transform: translateY(0.5em);
}
50% {
transform: translateY(1em);
}
75% {
transform: translateY(0.5em);
}
100% {
transform: translateY(0);
}
}
|