質問編集履歴
2
誤字
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,7 +4,8 @@
|
|
4
4
|
普通のテーマだと、スマートフォンでリンクのホバー時に背景が暗くなると思うのですが、このテーマだとそれがなく、とても淡白な感じです。
|
5
5
|
どのようにしたら暗くなりますでしょうか?
|
6
6
|
|
7
|
-
```
|
7
|
+
```
|
8
|
+
a {
|
8
9
|
text-decoration: none;
|
9
10
|
-webkit-transition: all 0.3s ease-in-out;
|
10
11
|
-moz-transition: all 0.3s ease-in-out;
|
1
コード
title
CHANGED
File without changes
|
body
CHANGED
@@ -2,4 +2,25 @@
|
|
2
2
|
こちらのテーマを使用しています。
|
3
3
|
|
4
4
|
普通のテーマだと、スマートフォンでリンクのホバー時に背景が暗くなると思うのですが、このテーマだとそれがなく、とても淡白な感じです。
|
5
|
-
どのようにしたら暗くなりますでしょうか?
|
5
|
+
どのようにしたら暗くなりますでしょうか?
|
6
|
+
|
7
|
+
```a {
|
8
|
+
text-decoration: none;
|
9
|
+
-webkit-transition: all 0.3s ease-in-out;
|
10
|
+
-moz-transition: all 0.3s ease-in-out;
|
11
|
+
-ms-transition: all 0.3s ease-in-out;
|
12
|
+
-o-transition: all 0.3s ease-in-out;
|
13
|
+
transition: all 0.3s ease-in-out;
|
14
|
+
}
|
15
|
+
a:hover,
|
16
|
+
a:focus {
|
17
|
+
color: #443f3f;
|
18
|
+
text-decoration: none;
|
19
|
+
outline: 0;
|
20
|
+
-webkit-transition: all 0.3s ease-in-out;
|
21
|
+
-moz-transition: all 0.3s ease-in-out;
|
22
|
+
-ms-transition: all 0.3s ease-in-out;
|
23
|
+
-o-transition: all 0.3s ease-in-out;
|
24
|
+
transition: all 0.3s ease-in-out;
|
25
|
+
}
|
26
|
+
```
|