-
Notifications
You must be signed in to change notification settings - Fork 389
/
Copy path_responsive.scss
80 lines (76 loc) · 1.87 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
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
/* ==========================================================================
Responsive Styles
========================================================================== */
@media (max-width: 767px) {
.landing-caption {
text-align: center;
}
.navbar-menu {
.is-static {
position: absolute;
width: 100%;
}
.is-fixed {
position: fixed;
width: 100%;
}
.navbar-item {
text-align: center !important;
.signup-button {
width: 100% !important;
}
}
.navbar-link {
padding: 10px 20px !important;
}
}
.title.section-title {
font-size: 2rem !important;
}
.level-left.level-social {
display: flex;
justify-content: flex-start;
}
.pushed-image {
margin-top: 0 !important;
}
.testimonial {
margin: 0 auto;
}
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
.landing-caption {
text-align: center;
}
.navbar-menu {
.is-static {
position: absolute;
width: 100%;
}
.is-fixed {
position: fixed;
width: 100%;
}
.navbar-item {
text-align: center !important;
.signup-button {
width: 100% !important;
}
}
.navbar-link {
padding: 10px 20px !important;
}
}
.pushed-image {
margin-top: 0 !important;
}
.testimonial {
margin: 0 auto;
}
.is-centered-tablet-portrait {
text-align: center !important;
.divider {
margin: 0 auto !important;
}
}
}