質問編集履歴

1

scssの中身を追記しました。

2020/02/17 12:06

投稿

popock
popock

スコア4

test CHANGED
File without changes
test CHANGED
@@ -180,9 +180,65 @@
180
180
 
181
181
  </html>
182
182
 
183
-
183
+ ```
184
+
184
-
185
+ ```
186
+
185
-
187
+ assets/stylesheets/application.scss
188
+
189
+
190
+
191
+ @import "bootstrap";
192
+
193
+
194
+
195
+ $background-color: #272B2F;
196
+
197
+
198
+
199
+
200
+
201
+
202
+
203
+ body {
204
+
205
+ background-color: $background-color;
206
+
207
+ color: white;
208
+
209
+ }
210
+
211
+
212
+
213
+
214
+
215
+
216
+
217
+ .base-container {
218
+
219
+ @extend .container-fluid;
220
+
221
+ max-width: 576px;
222
+
223
+ padding: 2rem;
224
+
225
+ }
226
+
227
+
228
+
229
+
230
+
231
+ .font {
232
+
233
+ font-size: 1.3rem;
234
+
235
+ @media screen and (max-width: 450px) {
236
+
237
+ font-size: 1rem;
238
+
239
+ }
240
+
241
+ }
186
242
 
187
243
  ```
188
244