-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathresponsive.scss
50 lines (50 loc) · 1.11 KB
/
responsive.scss
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
// Mobile responsiveness -> Small size
@include breakpoint(small only) {
.home {
.page-body {
padding-top: 2.9rem;
}
}
.page-body {
.container-top-message {
text-align: center;
}
}
.main-slideshow {
.swiper-slide {
.slide-caption {
position: static;
width: 96%;
padding: 1rem;
padding-bottom: 4rem;
.slide-caption-btn {
margin-right: .9rem;
}
}
}
}
.main-footer {
.logo {
margin: auto;
float: none;
}
.footer-text-block {
p {
text-align: center;
}
.license-icons {
float: none;
margin: auto;
width: auto;
text-align: center;
}
}
.bottom-nav {
.menu-bottom-container {
.menu {
@include menu-align(center);
}
}
}
}
}