forked from reisir/webring-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.css
More file actions
44 lines (38 loc) · 728 Bytes
/
table.css
File metadata and controls
44 lines (38 loc) · 728 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
41
42
43
44
#webring-table {
background: black;
color: white;
width: 100%;
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
}
#webring-table tr:nth-child(even) {
background: #121111;
}
#webring-table tr:hover:not(:first-of-type) {
background: #323333;
cursor: pointer;
}
#webring-table th {
padding: 1rem;
font-size: xx-large;
text-align: left;
}
#webring-table td {
padding: 1rem;
border: 0;
font-size: large;
background: transparent;
margin: 0;
}
#webring-table a,
#webring-table a:hover,
#webring-table a:active,
#webring-table a:hover {
display: block;
color: inherit;
text-decoration: none;
}
#webring-table tr td:first-child a {
color: orange;
font-weight: bold;
}