-
Notifications
You must be signed in to change notification settings - Fork 0
/
tablet.css
120 lines (94 loc) · 1.78 KB
/
tablet.css
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
@media screen and (max-width:1200px) {
#banner__image {
display: none;
}
.hero__desc {
display: none;
}
.help__boxes>* {
width: 100%;
}
.help {
gap: 1rem;
}
}
@media screen and (max-width: 1200px) {
/* Navbar */
.navbar {
margin: 0 2rem;
margin-bottom: 3rem;
}
/* Banner */
.banner {
display: flex;
text-align: center;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 2rem;
}
#banner__image {
display: none;
}
.hero__desc {
display: none;
}
/* Help */
.help {
padding: 1rem;
padding-bottom: 3rem;
flex-direction: column;
}
.help__content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
margin-bottom: 2rem;
}
.help__content>h1 {
margin: 1rem;
}
.count__boxes>* {
flex-direction: column;
padding: 1rem 3rem;
}
/* Testimonials */
.testimonial {
padding: 2rem;
}
.testimonial__testimony {
flex-direction: column;
text-align: center;
}
.testimonial__content {
flex-direction: column;
}
/* Question */
.question {
margin: 2rem;
}
.question h1 {
font-size: 2rem;
line-height: normal;
}
.question>div>p {
font-size: 0.8rem;
line-height: normal;
}
/* Footer */
.footer {
padding: 2rem;
}
.footer__brand {
flex: 0.2;
}
.footer__content {
flex: 0.8;
}
/* Copyright */
.copyright {
padding: 2rem;
}
}