回答編集履歴
1
コード修正
answer
CHANGED
@@ -17,7 +17,7 @@
|
|
17
17
|
tr.indexLevel1 {
|
18
18
|
background-color: #dedede;
|
19
19
|
}
|
20
|
-
.indexLevel1
|
20
|
+
.indexLevel1 th {
|
21
21
|
border-width: 0px 0px 0px 10pt;
|
22
22
|
border-style: none none none solid;
|
23
23
|
border-color: black black black crimson;
|
@@ -25,8 +25,9 @@
|
|
25
25
|
line-height:1.4;
|
26
26
|
font-size:1.1em;
|
27
27
|
}
|
28
|
-
|
29
|
-
tr.indexLevel1 a
|
28
|
+
tr.indexLevel1 a,
|
29
|
+
tr.indexLevel1 > th > h3,
|
30
|
+
tr.indexLevel1 > td > h3{
|
30
31
|
display: block;
|
31
32
|
width: 100%;
|
32
33
|
height:100%;
|
@@ -35,7 +36,7 @@
|
|
35
36
|
transition: all 1.0s ease;
|
36
37
|
}
|
37
38
|
|
38
|
-
tr.indexLevel1
|
39
|
+
tr.indexLevel1 > th > h3:hover {
|
39
40
|
background-color: gray;
|
40
41
|
color: white;
|
41
42
|
|
@@ -44,4 +45,6 @@
|
|
44
45
|
color:black;
|
45
46
|
text-decoration:none;
|
46
47
|
}
|
48
|
+
|
49
|
+
|
47
50
|
```
|