質問編集履歴

1

コードを追記

2017/10/27 16:51

投稿

sori-
sori-

スコア37

test CHANGED
File without changes
test CHANGED
@@ -153,3 +153,77 @@
153
153
  どなたか変更方法をご存知の方がいらっしゃればご教授いただけると幸いです。
154
154
 
155
155
  宜しくお願いいたします。
156
+
157
+
158
+
159
+
160
+
161
+
162
+
163
+ -------追記-------
164
+
165
+
166
+
167
+ font-sizeを追加
168
+
169
+ ```css
170
+
171
+
172
+
173
+ .posts .post-title a {
174
+
175
+ color: #333;
176
+
177
+ font-size: 1.5em;
178
+
179
+
180
+
181
+ }
182
+
183
+ .posts .post-title a:hover {
184
+
185
+ color: #019EBD;
186
+
187
+ font-size: 1.5em;
188
+
189
+ }
190
+
191
+ ```
192
+
193
+
194
+
195
+ font-sizeを0.5emへ変更
196
+
197
+ ```css
198
+
199
+ /* Post header ----------------------------------------- */
200
+
201
+
202
+
203
+
204
+
205
+ .post.single .post-title {
206
+
207
+ font-size: 0.5em;
208
+
209
+ line-height: 120%;
210
+
211
+ font-weight: 700;
212
+
213
+ margin-bottom: 40px;
214
+
215
+ word-break: break-word;
216
+
217
+ -ms-word-break: break-word;
218
+
219
+ }
220
+
221
+
222
+
223
+ .post.single .post-title a { color: #333; }
224
+
225
+ .post.single .post-title a:hover { color: #019EBD; }
226
+
227
+
228
+
229
+ ```