質問編集履歴
1
更新
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,4 +4,31 @@
|
|
4
4
|

|
5
5
|
|
6
6
|
仮説としてはcssを記述するのではないかと思っています
|
7
|
-
ご教授お願いします
|
7
|
+
ご教授お願いします
|
8
|
+
|
9
|
+
cssのコードになります
|
10
|
+
```
|
11
|
+
div.contents.row {
|
12
|
+
h2 {
|
13
|
+
@include boxBase(20px 0, 0);
|
14
|
+
font-weight: normal;
|
15
|
+
strong {
|
16
|
+
font-weight: bold;
|
17
|
+
padding-right: 5px;
|
18
|
+
font-size: 1.2em;
|
19
|
+
}
|
20
|
+
}
|
21
|
+
.new_user{
|
22
|
+
font-family: "游ゴシック", "YuGothic";
|
23
|
+
}
|
24
|
+
div.content_post {
|
25
|
+
@include boxBase(20px 0 ,30px);
|
26
|
+
position: relative;
|
27
|
+
background-color: #CCFF99;
|
28
|
+
height: 350px;
|
29
|
+
color: #000000;
|
30
|
+
background-size: cover;
|
31
|
+
background-position: center center;
|
32
|
+
border-radius: 3px;
|
33
|
+
box-shadow: 0 0 10px rgba($black,0.2);
|
34
|
+
```
|