質問編集履歴

1

sassを記載していましたので、cssのコードを追記しました。

2021/08/08 08:33

投稿

bmarble
bmarble

スコア1

test CHANGED
File without changes
test CHANGED
@@ -240,6 +240,126 @@
240
240
 
241
241
  ```
242
242
 
243
+ ```ここに言語を入力
244
+
245
+ @charset "UTF-8";
246
+
247
+ * {
248
+
249
+ padding: 0;
250
+
251
+ margin: 0;
252
+
253
+ box-sizing: border-box;
254
+
255
+ }
256
+
257
+
258
+
259
+ html {
260
+
261
+ font-size: 62.5%;
262
+
263
+ }
264
+
265
+
266
+
267
+ body {
268
+
269
+ font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
270
+
271
+ }
272
+
273
+
274
+
275
+ li {
276
+
277
+ list-style: none;
278
+
279
+ }
280
+
281
+
282
+
283
+ .container {
284
+
285
+ max-width: 90rem;
286
+
287
+ margin: 0 auto;
288
+
289
+ }
290
+
291
+
292
+
293
+ .footer_area {
294
+
295
+ position: relative;
296
+
297
+ }
298
+
299
+ .footer_area img {
300
+
301
+ width: 100%;
302
+
303
+ margin: 0 auto;
304
+
305
+ vertical-align: top;
306
+
307
+ }
308
+
309
+ .footer_area .container .footer_area_inner {
310
+
311
+ display: flex;
312
+
313
+ justify-content: space-between;
314
+
315
+ position: absolute;
316
+
317
+ top: 50%;
318
+
319
+ left: 50%;
320
+
321
+ transform: translate(-50%, -50%);
322
+
323
+ width: 100%;
324
+
325
+ max-width: 90rem;
326
+
327
+ }
328
+
329
+ .footer_area .container .footer_area_inner a {
330
+
331
+ font-size: 1.8rem;
332
+
333
+ color: white;
334
+
335
+ font-weight: bold;
336
+
337
+ text-decoration: none;
338
+
339
+ }
340
+
341
+ .footer_area .copyright {
342
+
343
+ background-color: brown;
344
+
345
+ width: 100%;
346
+
347
+ text-align: center;
348
+
349
+ }
350
+
351
+ .footer_area .copyright p {
352
+
353
+ font-size: 1.2rem;
354
+
355
+ color: white;
356
+
357
+ padding: 0.5rem 0;
358
+
359
+ }
360
+
361
+ ```
362
+
243
363
 
244
364
 
245
365
  ### 試したこと