forked from dionyziz/ntua-db
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.css
More file actions
49 lines (48 loc) · 1.24 KB
/
Copy pathtable.css
File metadata and controls
49 lines (48 loc) · 1.24 KB
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
45
46
47
48
49
table {
border-collapse: collapse;
width: 100%;
border-bottom: 1px solid #ccc;
}
tbody tr {
border-left: 1px solid #ccc;
}
tbody tr td:last-child {
border-right: 1px solid #ccc;
}
th {
color: white;
text-align: left;
background-color: #333;
background-image: linear-gradient(bottom, rgb(29,29,31) 32%, rgb(39,44,54) 83%);
background-image: -o-linear-gradient(bottom, rgb(29,29,31) 32%, rgb(39,44,54) 83%);
background-image: -moz-linear-gradient(bottom, rgb(29,29,31) 32%, rgb(39,44,54) 83%);
background-image: -webkit-linear-gradient(bottom, rgb(29,29,31) 32%, rgb(39,44,54) 83%);
background-image: -ms-linear-gradient(bottom, rgb(29,29,31) 32%, rgb(39,44,54) 83%);
background-image: -webkit-gradient(
linear,
left bottom,
left top,
color-stop(0.32, rgb(29,29,31)),
color-stop(0.83, rgb(39,44,54))
);
}
tr th:first-child {
border-top-left-radius: 5px;
}
tr th:last-child {
border-top-right-radius: 5px;
}
tr:nth-child(even) {
background-color: #eee;;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
th.icon, th.update {
color: transparent;
width: 50px;
font-size: 0;
overflow: hidden;
}
th, td {
padding: 5px;
}