-
-
Notifications
You must be signed in to change notification settings - Fork 615
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (37 loc) · 911 Bytes
/
style.css
File metadata and controls
44 lines (37 loc) · 911 Bytes
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
/* Small CSS to Hide elements at 1520px size */
html {
scroll-behavior: smooth;
}
@media(max-width:1520px) {
.left-svg {
display: none;
}
}
/* small css for the mobile nav close */
#nav-mobile-btn.close span:first-child {
transform: rotate(45deg);
top: 4px;
position: relative;
background: #a0aec0;
}
#nav-mobile-btn.close span:nth-child(2) {
transform: rotate(-45deg);
margin-top: 0px;
background: #a0aec0;
}
.fire-particle {
position: fixed;
pointer-events: none;
font-weight: bold;
font-size: 1.2rem;
animation: floatEffect 1.5s linear forwards;
z-index: 9999;
transform: translate(-50%, -50%);
}
@keyframes floatEffect {
to {
opacity: 0;
transform: translate(calc(-50% + var(--translateX)), calc(-50% + var(--translateY)));
}
}
/* Css is same for both the html file index.html and training.html */