質問編集履歴

2

誤字

2019/02/20 06:07

投稿

yosiyosia
yosiyosia

スコア13

test CHANGED
File without changes
test CHANGED
@@ -10,7 +10,9 @@
10
10
 
11
11
 
12
12
 
13
- ```a {
13
+ ```
14
+
15
+ a {
14
16
 
15
17
  text-decoration: none;
16
18
 

1

コード

2019/02/20 06:07

投稿

yosiyosia
yosiyosia

スコア13

test CHANGED
File without changes
test CHANGED
@@ -7,3 +7,45 @@
7
7
  普通のテーマだと、スマートフォンでリンクのホバー時に背景が暗くなると思うのですが、このテーマだとそれがなく、とても淡白な感じです。
8
8
 
9
9
  どのようにしたら暗くなりますでしょうか?
10
+
11
+
12
+
13
+ ```a {
14
+
15
+ text-decoration: none;
16
+
17
+ -webkit-transition: all 0.3s ease-in-out;
18
+
19
+ -moz-transition: all 0.3s ease-in-out;
20
+
21
+ -ms-transition: all 0.3s ease-in-out;
22
+
23
+ -o-transition: all 0.3s ease-in-out;
24
+
25
+ transition: all 0.3s ease-in-out;
26
+
27
+ }
28
+
29
+ a:hover,
30
+
31
+ a:focus {
32
+
33
+ color: #443f3f;
34
+
35
+ text-decoration: none;
36
+
37
+ outline: 0;
38
+
39
+ -webkit-transition: all 0.3s ease-in-out;
40
+
41
+ -moz-transition: all 0.3s ease-in-out;
42
+
43
+ -ms-transition: all 0.3s ease-in-out;
44
+
45
+ -o-transition: all 0.3s ease-in-out;
46
+
47
+ transition: all 0.3s ease-in-out;
48
+
49
+ }
50
+
51
+ ```