forked from KeioAIConsortium/git-practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
40 lines (33 loc) · 629 Bytes
/
main.css
File metadata and controls
40 lines (33 loc) · 629 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
}
table tr {
border-bottom: solid 1px #eee;
cursor: pointer;
}
table tr:hover {
background-color: #d4f0fd;
}
table th,
table td {
text-align: center;
width: 25%;
padding: 15px 0;
}
table td.icon {
background-size: 35px;
background-position: left 5px center;
background-repeat: no-repeat;
padding-left: 30px;
}
table td.icon.bird {
background-image: url(icon-bird.png)
}
table td.icon.whale {
background-image: url(icon-whale.png)
}
table td.icon.crab {
background-image: url(icon-crab.png)
}