質問編集履歴
2
全て追加させていただきました。ちなみに、VScode最新版、Chrome最新版です。よろしくお願いいたします。
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,7 +16,119 @@
|
|
16
16
|
|
17
17
|
```html
|
18
18
|
|
19
|
+
<!DOCTYPE html>
|
20
|
+
|
21
|
+
<html lang="ja">
|
22
|
+
|
23
|
+
<head>
|
24
|
+
|
25
|
+
<meta charset="utf-8">
|
26
|
+
|
27
|
+
<title>アプリ</title>
|
28
|
+
|
29
|
+
<link rel="stylesheet" href="css/styles.css">
|
30
|
+
|
31
|
+
<link rel="icon" href="favicon.ico">
|
32
|
+
|
33
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
34
|
+
|
35
|
+
</head>
|
36
|
+
|
37
|
+
<body>
|
38
|
+
|
39
|
+
<header>
|
40
|
+
|
41
|
+
<div class="container">
|
42
|
+
|
43
|
+
<div class="info">
|
44
|
+
|
45
|
+
<h1>凄いアプリです</h1>
|
46
|
+
|
47
|
+
<p>すげええええええええ</p>
|
48
|
+
|
49
|
+
<a href="" class="btn">ダウンロード</a>
|
50
|
+
|
51
|
+
</div>
|
52
|
+
|
53
|
+
<div class="pic">
|
54
|
+
|
55
|
+
<img src="img/top.png" alt="">
|
56
|
+
|
57
|
+
</div>
|
58
|
+
|
59
|
+
</div>
|
60
|
+
|
61
|
+
</header>
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
<section class="features">
|
66
|
+
|
67
|
+
<h1>すごい特徴</h1>
|
68
|
+
|
69
|
+
<div class="container">
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
<section>
|
74
|
+
|
75
|
+
<div class="pic">
|
76
|
+
|
77
|
+
<img src="img/feature1.png" alt="">
|
78
|
+
|
79
|
+
</div>
|
80
|
+
|
81
|
+
<div class="info">
|
82
|
+
|
83
|
+
<h1>すごい</h1>
|
84
|
+
|
85
|
+
<p>とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。</p>
|
86
|
+
|
87
|
+
</div>
|
88
|
+
|
89
|
+
</section>
|
90
|
+
|
91
|
+
<section>
|
92
|
+
|
93
|
+
<div class="pic">
|
94
|
+
|
95
|
+
<img src="img/feature2.png" alt="">
|
96
|
+
|
97
|
+
</div>
|
98
|
+
|
99
|
+
<div class="info">
|
100
|
+
|
101
|
+
<h1>すごい</h1>
|
102
|
+
|
103
|
+
<p>とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。</p>
|
104
|
+
|
105
|
+
</div>
|
106
|
+
|
107
|
+
</section>
|
108
|
+
|
109
|
+
<section>
|
110
|
+
|
111
|
+
<div class="pic">
|
112
|
+
|
113
|
+
<img src="img/feature3.png" alt="">
|
114
|
+
|
115
|
+
</div>
|
116
|
+
|
117
|
+
<div class="info">
|
118
|
+
|
119
|
+
<h1>すごい</h1>
|
120
|
+
|
121
|
+
<p>とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。とにかくすごい。</p>
|
122
|
+
|
123
|
+
</div>
|
124
|
+
|
125
|
+
</section>
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
|
130
|
+
|
19
|
-
<section class="members">
|
131
|
+
<section class="members">
|
20
132
|
|
21
133
|
<h1>メンバー紹介</h1>
|
22
134
|
|
@@ -60,6 +172,30 @@
|
|
60
172
|
|
61
173
|
|
62
174
|
|
175
|
+
<section class="call-to-action">
|
176
|
+
|
177
|
+
<h1>いますぐダウンロード</h1>
|
178
|
+
|
179
|
+
<a href="" class="btn">ダウンロード</a>
|
180
|
+
|
181
|
+
</section>
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
<footer>
|
186
|
+
|
187
|
+
(c)dotinstall.com
|
188
|
+
|
189
|
+
</footer>
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
</body>
|
194
|
+
|
195
|
+
</html>
|
196
|
+
|
197
|
+
|
198
|
+
|
63
199
|
```
|
64
200
|
|
65
201
|
|
@@ -68,6 +204,130 @@
|
|
68
204
|
|
69
205
|
```css
|
70
206
|
|
207
|
+
body {
|
208
|
+
|
209
|
+
margin: 0;
|
210
|
+
|
211
|
+
font-size: 16px;
|
212
|
+
|
213
|
+
font-family: Verdana, sans-serif;
|
214
|
+
|
215
|
+
color: #333;
|
216
|
+
|
217
|
+
}
|
218
|
+
|
219
|
+
|
220
|
+
|
221
|
+
header {
|
222
|
+
|
223
|
+
background: #f59a00;
|
224
|
+
|
225
|
+
color: #fff;
|
226
|
+
|
227
|
+
text-align: center;
|
228
|
+
|
229
|
+
padding-top: 64px;
|
230
|
+
|
231
|
+
}
|
232
|
+
|
233
|
+
|
234
|
+
|
235
|
+
header h1,header p {
|
236
|
+
|
237
|
+
margin: 0;
|
238
|
+
|
239
|
+
}
|
240
|
+
|
241
|
+
|
242
|
+
|
243
|
+
header img {
|
244
|
+
|
245
|
+
width: 280px;
|
246
|
+
|
247
|
+
vertical-align: bottom;
|
248
|
+
|
249
|
+
}
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
.btn {
|
254
|
+
|
255
|
+
text-decoration: none;
|
256
|
+
|
257
|
+
background: #fff;
|
258
|
+
|
259
|
+
color: #f59a00;
|
260
|
+
|
261
|
+
display: block;
|
262
|
+
|
263
|
+
width: 140px;
|
264
|
+
|
265
|
+
line-height: 44px;
|
266
|
+
|
267
|
+
margin: 40px auto 48px;
|
268
|
+
|
269
|
+
font-size: 14px;
|
270
|
+
|
271
|
+
font-weight: bold;
|
272
|
+
|
273
|
+
border-radius: 4px;
|
274
|
+
|
275
|
+
}
|
276
|
+
|
277
|
+
|
278
|
+
|
279
|
+
.btn:hover {
|
280
|
+
|
281
|
+
opacity: 0.9;
|
282
|
+
|
283
|
+
}
|
284
|
+
|
285
|
+
|
286
|
+
|
287
|
+
.features img {
|
288
|
+
|
289
|
+
width: 100%;
|
290
|
+
|
291
|
+
}
|
292
|
+
|
293
|
+
|
294
|
+
|
295
|
+
.features > h1 {
|
296
|
+
|
297
|
+
text-align: center;
|
298
|
+
|
299
|
+
padding: 64px;
|
300
|
+
|
301
|
+
font-weight: normal;
|
302
|
+
|
303
|
+
}
|
304
|
+
|
305
|
+
|
306
|
+
|
307
|
+
.features .container {
|
308
|
+
|
309
|
+
margin: 0 32px;
|
310
|
+
|
311
|
+
}
|
312
|
+
|
313
|
+
|
314
|
+
|
315
|
+
.features p {
|
316
|
+
|
317
|
+
line-height: 1.8;
|
318
|
+
|
319
|
+
}
|
320
|
+
|
321
|
+
|
322
|
+
|
323
|
+
.features section {
|
324
|
+
|
325
|
+
padding-bottom: 64px;
|
326
|
+
|
327
|
+
}
|
328
|
+
|
329
|
+
|
330
|
+
|
71
331
|
.members {
|
72
332
|
|
73
333
|
background: #f2f2f3;
|
@@ -130,11 +390,129 @@
|
|
130
390
|
|
131
391
|
|
132
392
|
|
393
|
+
|
394
|
+
|
395
|
+
.call-to-action {
|
396
|
+
|
397
|
+
background: #f59a00;
|
398
|
+
|
399
|
+
color: #fff;
|
400
|
+
|
401
|
+
text-align: center;
|
402
|
+
|
403
|
+
padding: 64px 0;
|
404
|
+
|
405
|
+
}
|
406
|
+
|
407
|
+
|
408
|
+
|
409
|
+
.call-to-action h1 {
|
410
|
+
|
411
|
+
font-weight: normal;
|
412
|
+
|
413
|
+
}
|
414
|
+
|
415
|
+
|
416
|
+
|
417
|
+
.call-to-action .btn {
|
418
|
+
|
419
|
+
margin: 0 auto;
|
420
|
+
|
421
|
+
}
|
422
|
+
|
423
|
+
|
424
|
+
|
425
|
+
footer {
|
426
|
+
|
427
|
+
padding: 64px 0;
|
428
|
+
|
429
|
+
background: #323135;
|
430
|
+
|
431
|
+
color: #98969c;
|
432
|
+
|
433
|
+
text-align: center;
|
434
|
+
|
435
|
+
}
|
436
|
+
|
133
|
-
-----------------
|
437
|
+
-----------------
|
134
438
|
|
135
439
|
@media (min-width: 900px) {
|
136
440
|
|
441
|
+
header .container {
|
442
|
+
|
443
|
+
display: flex;
|
444
|
+
|
445
|
+
width: 800px;
|
446
|
+
|
447
|
+
margin: 0 auto;
|
448
|
+
|
449
|
+
}
|
450
|
+
|
451
|
+
|
452
|
+
|
453
|
+
header .info {
|
454
|
+
|
455
|
+
width: 60%;
|
456
|
+
|
457
|
+
align-self: center;
|
458
|
+
|
459
|
+
}
|
460
|
+
|
461
|
+
|
462
|
+
|
463
|
+
header .pic {
|
464
|
+
|
465
|
+
width: 40%;
|
466
|
+
|
467
|
+
}
|
468
|
+
|
469
|
+
|
470
|
+
|
471
|
+
.features .container {
|
472
|
+
|
473
|
+
width: 800px;
|
474
|
+
|
475
|
+
margin: 0 auto;
|
476
|
+
|
477
|
+
}
|
478
|
+
|
479
|
+
|
480
|
+
|
481
|
+
.features section {
|
482
|
+
|
483
|
+
display: flex;
|
484
|
+
|
485
|
+
justify-content: space-between;
|
486
|
+
|
487
|
+
}
|
488
|
+
|
489
|
+
|
490
|
+
|
491
|
+
.features section:nth-child(even) {
|
492
|
+
|
493
|
+
flex-direction: row-reverse;
|
494
|
+
|
495
|
+
}
|
496
|
+
|
497
|
+
|
498
|
+
|
499
|
+
.features .pic {
|
500
|
+
|
501
|
+
width: 50%;
|
502
|
+
|
503
|
+
}
|
504
|
+
|
505
|
+
|
506
|
+
|
507
|
+
.features .info {
|
508
|
+
|
509
|
+
width: calc(50% - 32px);
|
510
|
+
|
511
|
+
}
|
512
|
+
|
513
|
+
|
514
|
+
|
137
|
-
.members ul {
|
515
|
+
.members ul {
|
138
516
|
|
139
517
|
width:800px;
|
140
518
|
|
@@ -156,8 +534,6 @@
|
|
156
534
|
|
157
535
|
}
|
158
536
|
|
159
|
-
|
160
|
-
|
161
537
|
```
|
162
538
|
|
163
539
|
|
1
code 内に記入いたしました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -14,9 +14,7 @@
|
|
14
14
|
|
15
15
|
### 該当のソースコード
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
html
|
17
|
+
```html
|
20
18
|
|
21
19
|
<section class="members">
|
22
20
|
|
@@ -62,9 +60,13 @@
|
|
62
60
|
|
63
61
|
|
64
62
|
|
65
|
-
|
63
|
+
```
|
66
64
|
|
65
|
+
|
66
|
+
|
67
|
+
|
68
|
+
|
67
|
-
css
|
69
|
+
```css
|
68
70
|
|
69
71
|
.members {
|
70
72
|
|
@@ -156,6 +158,12 @@
|
|
156
158
|
|
157
159
|
|
158
160
|
|
161
|
+
```
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
|
159
167
|
### 試したこと
|
160
168
|
|
161
169
|
|