-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetail_juniorsuite.css
More file actions
292 lines (242 loc) · 5.43 KB
/
Copy pathdetail_juniorsuite.css
File metadata and controls
292 lines (242 loc) · 5.43 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Lora';
}
html{
scroll-behavior: smooth;
}
::-webkit-scrollbar{
width: 15px;
}
::-webkit-scrollbar-track{
border-radius: 5px;
box-shadow: inset 0 0 10px rgba(0,0,0,0.25);
}
::-webkit-scrollbar-thumb{
border-radius: 5px;
background: linear-gradient(to top, #363062 , #818FB4);
}
header{
position: fixed;
/*jarak ke luar*/
top: 0; left: 0; right: 0;
background: #818FB4;
box-shadow: 0 5px 10px rgb(199, 198, 198);
/*luas dan lebar kotak*/
padding: 0px 7%;
display: flex;
/*ketengah antara atas dan bawah*/
align-items: center;
/*jarak anatara logo dan nav*/
justify-content: space-between;
z-index: 1000;
}
header .menubar ul{
list-style: none;
}
header .menubar ul li{
position: relative;
float: left;
}
header .menubar ul li a{
padding: 20px;
color: rgb(61, 56, 56);
display: block;
}
header .menubar ul li a::after{
content: '';
width: 0;
height: 3px;
background:#818FB4;
position: absolute;
left: 0;
/* untuk jarak garik ke kata garis*/
bottom: 10px;
transition: 0.5s;
}
/*panjang garis*/
header .menubar ul li a:hover::after{
width: 100%;
}
header .menubar ul li ul{
position: absolute;
left: 0;
width: 100px;
background: white;
display: none;
}
header .menubar ul li ul li{
width: 100%;
border-top: 1px solid rgb(232, 216, 216);
}
header .menubar ul li ul li ul{
/* jarak drop2 ke drop1 */
left: 100px;
/* sejajarin drop2 ke drop1 */
top: 0;
}
header .menubar ul li:focus-within > ul,
header .menubar ul li:hover > ul{
display: initial ;
}
/*detail*/
.about{
width: 100%;
height: 100vh;
padding: 35px 0;
}
.about h1{
font-size: 60px;
margin-top: 20px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(to right, #363062 , #818FB4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-transform: uppercase;
}
.about h1 span{
background: linear-gradient(to right, #363062 , #818FB4);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-left: 15px;
}
.about .about_main{
position: relative;
top: 40%;
left: 50%;
transform: translate(-50%,-50%);
display: flex;
justify-content: space-around;
align-items: center;
}
.about .about_main .about_image{
display: flex;
margin-top: 50px;
}
.about .about_main .about_image .about_small_image{
display: flex;
flex-direction: column;
position: relative;
top: 15px;
}
.about .about_main .about_image .about_small_image img{
height: 92px;
margin: 5px 0;
cursor: pointer;
background: linear-gradient(to right, #363062 , #818FB4);
display: block;
border-radius: 6px;
padding: 5px 5px;
box-shadow: 0 0 6px rgba(0,0,0,0.6);
opacity: 0.8;
transition: 0.3s;
}
.about .about_main .about_image .about_small_image img:hover{
opacity: 1;
}
.about .about_main .image_contaner{
padding: 10px;
display: flex;
}
.about .about_main .image_contaner img{
border: 3px solid #6c14d0;
border-radius: 20px;
height: 430px;
padding: 30px;
box-shadow: 0 0 8px #6c14d0;
}
.about .about_main .about_text{
margin-top: 45px;
}
.about .about_main .about_text p{
background: linear-gradient(to left, black , #435585);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
line-height: 22px;
width: 600px;
text-align: justify;
padding: 25px 30px;
border-radius: 20px;
box-shadow: 0 0 10px #363062;
font-family: 'Poppins';
}
.about .about_btn{
color: white;
background-color: #435585;
position: relative;
top: 10%;
left: 50%;
transform: translate(-50% , -50%);
padding: 10px 25px;
border: 2px solid #6c14d0;
box-shadow: 0 0 8px #363062;
transition: 0.5s;
font-family: 'Poppins';
}
.about .about_btn:hover{
border: 2px solid transparent;
background: #363062;
color: #435585;
}
/*Footer*/
footer {
position:absolute;
width: 100%;
background: linear-gradient(to left, #363062 , #818FB4);;
min-height: 50px;
padding: 20px 50px;
display: flex;
justify-content: left;
align-items: center;
flex-direction: column;
}
footer .social_icon,
footer .menu {
position: relative;
display: flex;
justify-content: center;
align-items: center;
margin: 10px 0;
flex-wrap: wrap;
}
footer .social_icon li,
footer .menu li {
list-style: none;}
footer .social_icon li a {
font-size: 2em;
color: #fff;
margin: 0 10px;
display: inline-block;
transition: 0.5s;
}
footer .social_icon li a {
transform: translateY(-10px);
}
footer .menu li a {
font-size: 1.2em;
color: #fff;
margin: 0 10px;
display: inline-block;
text-decoration: none;
opacity: 0.75;
}
footer .menu li a:hover {
opacity: 1;
}
footer p {
color: #fff;
text-align: center;
margin-top: 15px;
margin-bottom: 10px;
font-size: 1.1em;
}
.zoom li a {
transition: 1s;
}
.zoom li a:hover {
transform: scale(1.1);
}