-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApple - 10:01:20.html
More file actions
308 lines (247 loc) · 6.38 KB
/
Apple - 10:01:20.html
File metadata and controls
308 lines (247 loc) · 6.38 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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous">
<title>Apple</title>
</head>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
list-style-type: none;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
}
:root {
--primary-color: #000000cc;
--white-fill: #fff;
--nav-font-color: #ababab;
}
header {
position: fixed;
top: 0;
z-index: 999;
width: 100%;
height: 50px;
background-color: var(--primary-color)
}
.container {
max-width: 1200px;
margin: 0 auto;
height: inherit;
}
.navbar {
height: inherit;
}
.nav-logo i {
font-size: 1.3rem;
margin-right: 4rem;
}
.nav-list {
display: flex;
align-items: center;
justify-content: space-between;
height: inherit;
}
.nav-m {
display: none;
}
.nav-link {
font-size: 1rem;
color: var(--nav-font-color);
padding: 1rem 1.5rem;
}
.nav-link:hover {
color:var(--white-fill);
}
.full-screen-menu {
display: flex;
height: inherit;
align-items: center;
}
.more-icon {
display: none;
}
/* noti */
.corona-notification {
margin: 100px 0 30px 0;
background-color: var(--white-fill);
}
.text-container {
max-width: 600px;
text-align: center;
margin: 0 auto;
}
.text-container p:first-child {
margin-bottom: 15px;
font-weight: 600;
}
/*product jumbotron*/
.jumbotron {
height: 600px;
width: 100%;
background-position: center;
background-size: contain;
background-repeat: no-repeat;
}
.apple-watch {
background-color: black;
}
.ipad-air {
background-color: white;
}
.watch-se {
background-color: gray;
}
.ipad-air > .text-container > .title {
color: black;
}
.title {
color: #fff;
text-align: center;
padding-top: 50px
}
.title-heading {
font-size: 2rem;
}
.cta {
text-align: center;
margin-top: 1.8rem;
}
.cta-link {
color: #66bbff;
font-size: 1.3rem;
display: inline-block;
}
.cta-link:nth-child(2){
margin-left: 2.6rem;
}
.cta-link:hover {
border-bottom: 2px solid #66bbff;
}
@media only screen and (max-width:900px){
.full-screen-menu{
display: none;
}
.search-icon {
display: none;
}
.more-icon {
display: block;
}
.nav-logo i {
margin-right: 0;
}
.corona-notification {
margin-top: 80px;
}
.text-container {
margin: 1em;
font-size: 0.7em;
}
.jumbotron {
max-height: 300px;
}
}
</style>
<body>
<header>
<div class="container">
<nav class="navbar">
<ul class="nav-list">
<li class="nav-item more-icon">
<a href='#' class='nav-link'>
<i class="fa fa-bars" aria-hidden="true"></i>
</a>
</li>
<li class="nav-item nav-logo">
<a href="index.html" class="nav-link">
<i class="fa fa-apple" aria-hidden="true"></i>
</a>
</li>
<div class="full-screen-menu">
<li class="nav-item">
<a href="#" class="nav-link">Mac</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">iPad</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">iPhone</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Watch</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">TV</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">Music</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link">고객지원</a>
</li>
</div>
<li class="nav-item search-icon">
<a href="#" class="nav-link">
<i class="fa fa-search" aria-hidden="true"></i>
</a>
</li>
<li class="nav-item shop-icon">
<a href="#" class="nav-link">
<i class="fa fa-shopping-bag" aria-hidden="true"></i>
</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="container">
<section class="corona-notification">
<div class="text-container">
<p>대한민국의 Apple 가로수길이 다시 영업을 시작합니다. </p>
<p>다만 모두의 안전을 위해 매장 내에서는 마스크를 착용해 주시고, 매장 수용 인원이 제한될 수 있는 점 양해 부탁드립니다. 또한 온라인에서 구매하시는 경우 빠른
무료 배송으로 받아보실 수 있습니다.</p>
</div>
</section>
</div>
<section class="jumbotron apple-watch">
<div class="text-container">
<div class="title">
<h2 class="title-heading">건강의 미래, 이미 손목 위에</h2>
</div>
<div class="cta">
<a href="#" class="cta-link">더 알아보기</a>
<a href="#" class="cta-link">구매</a>
</div>
</div>
</section>
<section class="jumbotron ipad-air">
<div class="text-container">
<div class="title">
<h2 class="title-heading">강력하다. 다채롭다. 경이롭다</h2>
</div>
<div class="cta">
<a href="#" class="cta-link">더 알아보기</a>
<a href="#" class="cta-link">구매</a>
</div>
</div>
</section>
<section class="jumbotron watch-se">
<div class="text-container">
<div class="title">
<h2 class="title-heading">손색없다. 부담없다.</h2>
</div>
<div class="cta">
<a href="#" class="cta-link">더 알아보기</a>
<a href="#" class="cta-link">구매</a>
</div>
</div>
</section>
</body>
</html>