-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponsive-page.css
115 lines (85 loc) · 1.45 KB
/
responsive-page.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
@media (max-width: 670px) {
.main {
width: 50%;
margin: 0px 50px;
}
.main-text p {
width: 90%;
height: 64px;
}
.main-image {
width: 100%;
}
.img-1 {
display: none;
}
.img-2 {
display: block;
width: 100%;
}
.form-container {
width: 50%;
}
/* ================================== */
.card {
width: 100%;
}
.btn {
width: 100%;
}
.bagi {
flex-direction: column;
}
.wrap {
width: 100%;
}
.contact-submit {
margin: 10px auto;
}
/* Tambahkan CSS untuk header-right */
.header-right {
display: none;
}
/* Tambahkan CSS untuk menu-icon */
.menu-icon {
display: block;
}
}
@media (max-width: 1000px) {
.main {
width: 50%;
}
.main-image {
width: 70%;
}
.img-1 {
display: none;
}
.img-2 {
padding-top: 50px;
display: block;
width: 80%;
}
.main-text p {
width: 670px;
height: 64px;
}
.form-container {
width: 110%;
}
/* ====================================== */
/* body responsive */
.card {
width: 80%;
}
/* footer responsive */
footer {
text-align: center;
}
}
@media (min-width: 1000px) {
.text-container {
display: flex;
flex: auto;
}
}