質問編集履歴

2

補足情報の追加

2019/04/14 05:42

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -456,9 +456,13 @@
456
456
 
457
457
  ### 補足情報(FW/ツールのバージョンなど)
458
458
 
459
-
459
+ ・背景画像の大きさ
460
+
460
-
461
+ width 1920
462
+
461
- ここにより詳細な情報を記載してください。
463
+ height 1271
464
+
465
+ ・詳細画像
462
466
 
463
467
 
464
468
 

1

コードの追加

2019/04/14 05:42

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -20,7 +20,429 @@
20
20
 
21
21
 
22
22
 
23
- HTMLCSS
23
+ ```html
24
+
25
+ <!DOCTYPE html>
26
+
27
+ <html>
28
+
29
+ <head>
30
+
31
+ <meta charset="utf-8">
32
+
33
+ <title>My Kicks</title>
34
+
35
+ <link rel="stylesheet" href="stylesheet.css" type="text/css" />
36
+
37
+
38
+
39
+ </head>
40
+
41
+ <body>
42
+
43
+ <header>
44
+
45
+ <div class="container">
46
+
47
+ <div class="header-left">
48
+
49
+ <h2>My Kicks</h2>
50
+
51
+ </div>
52
+
53
+ <div class="header-right">
54
+
55
+ <a class="login" href="#">ログイン</a>
56
+
57
+ </div>
58
+
59
+ </div>
60
+
61
+
62
+
63
+ </header>
64
+
65
+ <div class="top-wrapper">
66
+
67
+ <div class="container">
68
+
69
+ <h1>Get Your Favorite Kicks!</h1>
70
+
71
+ <p>あなた専用のカレンダーを作ってお気に入りの1足を手に入れよう</p>
72
+
73
+ <div class="btn-wrapper">
74
+
75
+ <a href="#" class="btn signin"><span class="cursor: hand; cursor:pointer;"></span>ログイン</a>
76
+
77
+ <a href="#" class="btn signup"><span class="cursor: hand; cursor:pointer;"></span>新規無料会員登録</a>
78
+
79
+
80
+
81
+
82
+
83
+ </div>
84
+
85
+ </div>
86
+
87
+ </div>
88
+
89
+ <div class="main-wrapper">
90
+
91
+ <div class="container">
92
+
93
+ <div class="heading">
94
+
95
+ <h2>About My Kicks</h2>
96
+
97
+ </div>
98
+
99
+ <div class="explanation"></div>
100
+
101
+ </div>
102
+
103
+
104
+
105
+ </div>
106
+
107
+ <div class="message-wrapper">
108
+
109
+ <div class="container">
110
+
111
+ <div class="heading">
112
+
113
+ <h2>さあ、あなたもMy Kicksでお気に入りの1足を手に入れよう</h2>
114
+
115
+ <h3>Let's get your favorite kicks!</h3>
116
+
117
+ </div>
118
+
119
+ <span class="btn message">新規無料会員登録</span>
120
+
121
+ </div>
122
+
123
+
124
+
125
+
126
+
127
+ </div>
128
+
129
+ <footer>
130
+
131
+ <div class="container">
132
+
133
+ <p>My Kicks</p>
134
+
135
+ </div>
136
+
137
+ </footer>
138
+
139
+
140
+
141
+ </body>
142
+
143
+ </html>
144
+
145
+ ```
146
+
147
+
148
+
149
+ ```css
150
+
151
+ body {
152
+
153
+ margin: 0;
154
+
155
+ font-family: "Hiragino Kaku Gothic ProN";
156
+
157
+ }
158
+
159
+
160
+
161
+ a {
162
+
163
+ text-decoration: none;
164
+
165
+ }
166
+
167
+
168
+
169
+ .container {
170
+
171
+ width: 1170px;
172
+
173
+ padding-right: 15px;
174
+
175
+ padding-left: 15px;
176
+
177
+ margin: 0 auto;
178
+
179
+ }
180
+
181
+
182
+
183
+ header {
184
+
185
+ height: 55px;
186
+
187
+ width: 100%;
188
+
189
+ background-color: rgba(34, 49, 52, 0.9);
190
+
191
+ position: fixed;
192
+
193
+ top: 0;
194
+
195
+ z-index: 10;
196
+
197
+ }
198
+
199
+
200
+
201
+ .header-left {
202
+
203
+ float: left;
204
+
205
+ }
206
+
207
+
208
+
209
+ .header-left h2 {
210
+
211
+ color: white;
212
+
213
+ }
214
+
215
+
216
+
217
+
218
+
219
+ .header-right {
220
+
221
+ float: right;
222
+
223
+ background-color: rgba(255, 255, 255, 0.3);
224
+
225
+ transition: all 0.5s;
226
+
227
+ }
228
+
229
+
230
+
231
+ .header-right:hover {
232
+
233
+ background-color: rgba(255, 255, 255, 0.5);
234
+
235
+ }
236
+
237
+
238
+
239
+ .header-right a {
240
+
241
+ line-height: 55px;
242
+
243
+ padding-right: 25px;
244
+
245
+ padding-left: 25px;
246
+
247
+ color: white;
248
+
249
+ display: block;
250
+
251
+ }
252
+
253
+
254
+
255
+ .top-wrapper {
256
+
257
+ padding-top: 180px;
258
+
259
+ padding-bottom: 100px;
260
+
261
+ background-image:url("kicks-2213619_1920.jpg");
262
+
263
+ color:white;
264
+
265
+ background-size:cover;
266
+
267
+ text-align: center;
268
+
269
+ }
270
+
271
+
272
+
273
+ .top-wrapper h1 {
274
+
275
+ opacity: 0.7;
276
+
277
+ font-size: 45px;
278
+
279
+ letter-spacing: 5px;
280
+
281
+
282
+
283
+ }
284
+
285
+
286
+
287
+ .top-wrapper p {
288
+
289
+ opacity: 0.7;
290
+
291
+
292
+
293
+ }
294
+
295
+
296
+
297
+ .btn {
298
+
299
+ padding: 8px 24px;
300
+
301
+ color:white;
302
+
303
+ display:inline-block;
304
+
305
+ opacity: 0.8;
306
+
307
+ border-radius: 4px;
308
+
309
+ }
310
+
311
+
312
+
313
+ .btn:hover {
314
+
315
+ opacity: 1;
316
+
317
+ }
318
+
319
+ .signin {
320
+
321
+ background-color:#239b76;
322
+
323
+ }
324
+
325
+
326
+
327
+ .signup {
328
+
329
+ background-color: #3b5998;
330
+
331
+ }
332
+
333
+
334
+
335
+ .btn-wrapper {
336
+
337
+ margin-top: 20px;
338
+
339
+ margin-bottom: 20px;
340
+
341
+
342
+
343
+ }
344
+
345
+
346
+
347
+
348
+
349
+ .main-wrapper {
350
+
351
+ height: 500px;
352
+
353
+ padding-bottom: 80px;
354
+
355
+ background-color: #f7f7f7;
356
+
357
+ }
358
+
359
+
360
+
361
+ .heading {
362
+
363
+ padding: 60px 0px 30px 0px;
364
+
365
+ color: #5f5d60;
366
+
367
+ }
368
+
369
+
370
+
371
+ .heading h2 {
372
+
373
+ font-weight: normal;
374
+
375
+ }
376
+
377
+
378
+
379
+ .heading h3 {
380
+
381
+ font-weight: normal;
382
+
383
+ }
384
+
385
+
386
+
387
+ .message-wrapper {
388
+
389
+ border-bottom: 1px solid #eee;
390
+
391
+ padding-bottom: 80px;
392
+
393
+ text-align: center;
394
+
395
+ }
396
+
397
+
398
+
399
+ .message {
400
+
401
+ background-color: #5dca88;
402
+
403
+ padding: 15px 40px;
404
+
405
+ cursor: pointer;
406
+
407
+ box-shadow: 0 7px #1a7940;
408
+
409
+ }
410
+
411
+
412
+
413
+ .message:active {
414
+
415
+ box-shadow: none;
416
+
417
+ position: relative;
418
+
419
+ top: 7px;
420
+
421
+ }
422
+
423
+
424
+
425
+ footer p {
426
+
427
+ color: #b3aeb5;
428
+
429
+ font-size: 20px;
430
+
431
+ }
432
+
433
+
434
+
435
+ footer {
436
+
437
+ padding-top: 30px;
438
+
439
+ }
440
+
441
+ ```
442
+
443
+
444
+
445
+
24
446
 
25
447
 
26
448