-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
117 lines (105 loc) · 1.84 KB
/
style.css
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
* {
font-family: -apple-system, sans-serif;
margin:5px;
}
img.favicon {
width: 16px;
height: 16px;
}
table {
counter-reset: rowNumber;
text-align: center;
}
table thead {
background-color: #f6f6f6;
}
table tbody tr {
counter-increment: rowNumber;
}
table tbody tr:nth-child(odd) {
background-color: #f8f8ff;
}
table tbody tr td:first-child::before {
content: counter(rowNumber);
text-align: center;
}
table a:link {
color: #55f;
text-decoration:none;
}
table a:visited {
color: #e8f;
text-decoration:none;
}
table a:active,
table a:hover {
text-decoration:underline;
}
table {
margin: 10px;
border:#ccc 1px solid;
background:#eaebec;
border-radius:3px;
box-shadow: 0 1px 2px #d1d1d1;
}
table th {
padding:11px 15px 12px 15px;
border-top:1px solid #fafafa;
border-bottom:1px solid #e0e0e0;
color:#444;
background: #ededed;
}
table th:first-child {
text-align: left;
padding-left:10px;
}
table tr:first-child th:first-child {
border-top-left-radius:3px;
}
table tr:first-child th:last-child {
border-top-right-radius:3px;
}
table tr {
padding-left:10px;
}
table td:first-child {
padding-left:10px;
border-left: 0;
}
table tbody tr td:nth-child(5) {
text-align: left;
}
table td {
padding:9px;
border-top: 1px solid #ffffff;
border-bottom:1px solid #e0e0e0;
border-left: 1px solid #e0e0e0;
background: #fafafa;
}
table tr.even td {
background: #f6f6f6;
}
table tr:last-child td {
border-bottom:0;
}
table tr:last-child td:first-child {
border-bottom-left-radius:3px;
}
table tr:last-child td:last-child {
border-bottom-right-radius:3px;
}
table tr:hover td {
background: #f2f2f2;
}
dialog {
font-size: medium;
border-radius: 3px;
}
dialog button {
font-size: medium;
border-radius: 3px;
background: #eee;
}
dialog p {
margin: 1em;
}