質問編集履歴

1

誤字

2019/08/16 06:03

投稿

退会済みユーザー
test CHANGED
@@ -1 +1 @@
1
- ハンバーガーメニューの固定
1
+ ハンバーガーメニューの固定をしたい
test CHANGED
@@ -226,6 +226,106 @@
226
226
 
227
227
 
228
228
 
229
-
229
+ body{
230
+
231
+ background: #81bcd8;
232
+
233
+ }
234
+
235
+ .site-header{
236
+
237
+ background: #fff;
238
+
239
+ display: flex;
240
+
241
+ padding: 60px 20px;
242
+
243
+ position: fixed;
244
+
245
+ justify-content: space-between;
246
+
247
+ width: 100%;
248
+
249
+ }
250
+
251
+ .site-logo img{
252
+
253
+ height: 20px;
254
+
255
+ width: auto;
256
+
257
+ }
258
+
259
+ .gnav__menu{
260
+
261
+ display: flex;
262
+
263
+ }
264
+
265
+ .gnav__menu__item{
266
+
267
+ margin-left: 20px;
268
+
269
+ }
270
+
271
+ .gnav__menu__item a{
272
+
273
+ color: #333;
274
+
275
+ text-decoration: none;
276
+
277
+ }
278
+
279
+ .hero{
280
+
281
+ max-height: 500px;
282
+
283
+ overflow: hidden;
284
+
285
+ }
286
+
287
+ .hero img{
288
+
289
+ height: auto;
290
+
291
+ width: 100%;
292
+
293
+ }
294
+
295
+ .content{
296
+
297
+ line-height: 1.6;
298
+
299
+ margin: 0 auto;
300
+
301
+ padding-top: 100px;
302
+
303
+ width: 800px;
304
+
305
+ }
306
+
307
+ .content p{
308
+
309
+ margin-bottom: 40px;
310
+
311
+ }
312
+
313
+ .site-footer{
314
+
315
+ background: #333;
316
+
317
+ padding: 80px 0;
318
+
319
+ }
320
+
321
+ .copyright{
322
+
323
+ color: #fff;
324
+
325
+ font-size: 12px;
326
+
327
+ text-align: center;
328
+
329
+ }
230
330
 
231
331
  ```