teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

コードを追記

2017/10/27 16:51

投稿

sori-
sori-

スコア37

title CHANGED
File without changes
body CHANGED
@@ -75,4 +75,41 @@
75
75
  ```
76
76
 
77
77
  どなたか変更方法をご存知の方がいらっしゃればご教授いただけると幸いです。
78
- 宜しくお願いいたします。
78
+ 宜しくお願いいたします。
79
+
80
+
81
+
82
+ -------追記-------
83
+
84
+ font-sizeを追加
85
+ ```css
86
+
87
+ .posts .post-title a {
88
+ color: #333;
89
+ font-size: 1.5em;
90
+
91
+ }
92
+ .posts .post-title a:hover {
93
+ color: #019EBD;
94
+ font-size: 1.5em;
95
+ }
96
+ ```
97
+
98
+ font-sizeを0.5emへ変更
99
+ ```css
100
+ /* Post header ----------------------------------------- */
101
+
102
+
103
+ .post.single .post-title {
104
+ font-size: 0.5em;
105
+ line-height: 120%;
106
+ font-weight: 700;
107
+ margin-bottom: 40px;
108
+ word-break: break-word;
109
+ -ms-word-break: break-word;
110
+ }
111
+
112
+ .post.single .post-title a { color: #333; }
113
+ .post.single .post-title a:hover { color: #019EBD; }
114
+
115
+ ```