質問編集履歴
2
試したことの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -116,26 +116,62 @@
|
|
116
116
|
|
117
117
|
### 試したこと
|
118
118
|
|
119
|
-
aを```.readmore-btn```にしても同様に動きませんでした。
|
119
|
+
下記のコードおよび、aを```.readmore-btn```にしても同様に動きませんでした。
|
120
120
|
|
121
121
|
```css
|
122
122
|
|
123
|
+
#about {
|
124
|
+
|
125
|
+
padding: 125px 6.67% 77px;
|
126
|
+
|
127
|
+
overflow: hidden;
|
128
|
+
|
129
|
+
p {
|
130
|
+
|
131
|
+
margin-top: 70px;
|
132
|
+
|
133
|
+
padding: 0 2%;
|
134
|
+
|
135
|
+
}
|
136
|
+
|
123
137
|
.wrapper {
|
124
138
|
|
125
139
|
display: block;
|
126
140
|
|
141
|
+
margin: 70px auto 0;
|
142
|
+
|
143
|
+
width: 100%;
|
144
|
+
|
127
145
|
a {
|
128
146
|
|
129
147
|
display: flex;
|
130
148
|
|
149
|
+
justify-content: center;
|
150
|
+
|
151
|
+
align-items: center;
|
152
|
+
|
153
|
+
width: 100%;
|
154
|
+
|
155
|
+
height: 89px;
|
156
|
+
|
157
|
+
font-family: "Futura Midium", sans-serif;
|
158
|
+
|
159
|
+
letter-spacing: 0.15em;
|
160
|
+
|
131
161
|
&::after {
|
132
162
|
|
133
163
|
content: "";
|
134
164
|
|
165
|
+
margin-left: 20px;
|
166
|
+
|
135
|
-
background: url(../img/arrow.png);
|
167
|
+
background: url(../imgs/top/down_arrow.png);
|
136
168
|
|
137
169
|
background-size: contain;
|
138
170
|
|
171
|
+
width: 10px;
|
172
|
+
|
173
|
+
height: 10px;
|
174
|
+
|
139
175
|
}
|
140
176
|
|
141
177
|
.is-active::after{
|
@@ -144,6 +180,42 @@
|
|
144
180
|
|
145
181
|
}
|
146
182
|
|
183
|
+
@media (max-width:700px) {
|
184
|
+
|
185
|
+
#about {
|
186
|
+
|
187
|
+
padding: calc(125px * 0.9) 6.67% calc(77px * 0.9);
|
188
|
+
|
189
|
+
p {
|
190
|
+
|
191
|
+
margin-top: calc(70px * 0.9);
|
192
|
+
|
147
193
|
}
|
148
194
|
|
195
|
+
.wrapper {
|
196
|
+
|
197
|
+
margin: calc(70px * 0.9) auto 0;
|
198
|
+
|
199
|
+
a {
|
200
|
+
|
201
|
+
height: calc(89px * 0.9);
|
202
|
+
|
203
|
+
&::after {
|
204
|
+
|
205
|
+
margin-left: calc(20px * 0.9);
|
206
|
+
|
207
|
+
width: calc(10px * 0.9);
|
208
|
+
|
209
|
+
height: calc(10px * 0.9);
|
210
|
+
|
211
|
+
}
|
212
|
+
|
213
|
+
.is-active::after {
|
214
|
+
|
215
|
+
transform: rotate(180deg);
|
216
|
+
|
217
|
+
}
|
218
|
+
|
219
|
+
}
|
220
|
+
|
149
|
-
```
|
221
|
+
```
|
1
試したことの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -111,3 +111,39 @@
|
|
111
111
|
<div class="content">
|
112
112
|
|
113
113
|
```
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
### 試したこと
|
118
|
+
|
119
|
+
aを```.readmore-btn```にしても同様に動きませんでした。
|
120
|
+
|
121
|
+
```css
|
122
|
+
|
123
|
+
.wrapper {
|
124
|
+
|
125
|
+
display: block;
|
126
|
+
|
127
|
+
a {
|
128
|
+
|
129
|
+
display: flex;
|
130
|
+
|
131
|
+
&::after {
|
132
|
+
|
133
|
+
content: "";
|
134
|
+
|
135
|
+
background: url(../img/arrow.png);
|
136
|
+
|
137
|
+
background-size: contain;
|
138
|
+
|
139
|
+
}
|
140
|
+
|
141
|
+
.is-active::after{
|
142
|
+
|
143
|
+
transform: rotate(180deg);
|
144
|
+
|
145
|
+
}
|
146
|
+
|
147
|
+
}
|
148
|
+
|
149
|
+
```
|