-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
102 lines (80 loc) · 1.27 KB
/
Copy pathresponsive.css
File metadata and controls
102 lines (80 loc) · 1.27 KB
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
/* Untuk Tablet */
@media all and (max-width: 1080px) {
.logo {
margin-left: 20px;
}
.banner {
padding-left: 5%;
padding-right: 5%;
}
.banner-rounded {
float: left;
}
.lesson {
flex: 50%;
margin-bottom: 50px;
}
.banner-col {
width: 100%;
/*margin-bottom: 50px;*/
}
.top-wrapper {
text-align: center;
}
.top-wrapper h1 {
font-size: 32px;
}
.heading h2 {
font-size: 20px;
}
.showHide {
display: none !important;
}
}
/* Untuk Smartphone */
@media all and (max-width: 670px) {
.lessons .lesson {
flex-direction: column;
flex-wrap: nowrap;
flex: 100%;
}
.banner {
padding-left: 5%;
padding-right: 5%;
}
.banner-col {
width: 100%;
}
footer {
text-align: center;
}
.btn {
width: 100%;
}
.facebook {
margin-bottom: 10px;
}
.top-wrapper {
text-align: center;
padding-top: 100px;
}
/* Tambahkan CSS untuk header-right */
.header-right {
display: none;
}
/* Tambahkan CSS untuk menu-icon */
.menu-icon {
display: block !important;
}
.top-wrapper h1 {
font-size: 24px;
line-height: 36px;
}
.top-wrapper p {
font-size: 14px;
line-height: 20px;
}
.showHide {
display: none !important;
}
}