-
-
Notifications
You must be signed in to change notification settings - Fork 611
Expand file tree
/
Copy pathstyle.css
More file actions
27 lines (22 loc) · 535 Bytes
/
style.css
File metadata and controls
27 lines (22 loc) · 535 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
/* 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;
}
/* Css is same for both the html file index.html and training.html */