質問編集履歴
1
cssを追加しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -22,6 +22,33 @@
|
|
22
22
|
|
23
23
|
### 適用しているCSS
|
24
24
|
```css
|
25
|
+
@charset "UTF-8";
|
26
|
+
|
27
|
+
html {
|
28
|
+
font-size: 62.5%;
|
29
|
+
}
|
30
|
+
body {
|
31
|
+
color: #333;
|
32
|
+
font-size: 1.2 rem;
|
33
|
+
font-family: "Hiragino Kaku Gothic ProN","Meiryo", sans-serif;
|
34
|
+
}
|
35
|
+
*, *::before, *::after {
|
36
|
+
box-sizing: border-box;
|
37
|
+
}
|
38
|
+
a:link, a:visited, a:hover, a:active {
|
39
|
+
color: salmon;
|
40
|
+
text-decoration: none;
|
41
|
+
}
|
42
|
+
.clearfix::after {
|
43
|
+
content: '';
|
44
|
+
display: block;
|
45
|
+
clear: both;
|
46
|
+
}
|
47
|
+
.header {
|
48
|
+
width: 100%;
|
49
|
+
height: 140px;
|
50
|
+
}
|
51
|
+
/*以下が質問内容のCSS*/
|
25
52
|
.logo {
|
26
53
|
width:250px;
|
27
54
|
height: 55px;
|