-
Notifications
You must be signed in to change notification settings - Fork 0
/
table.css
45 lines (36 loc) · 852 Bytes
/
table.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
table {
font-family: Arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #ddd;
text-align: left;
padding: 8px;
}
th {
background-color: #4CAF50;
color: white;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
progress {
width: 100%;
height: 20px;
background-color: lightgray;
}
progress::-webkit-progress-value {
background-color: blue;
}
table td.pct-bar {
background-image: linear-gradient(to right, green 0%, green calc(60% - 2px), white 60%, white 100%);
background-size: 100% 100%;
background-repeat: no-repeat;
}
table td.pct-bar input[type="number"] {
background-color: transparent;
border: none;
width: 40px;
text-align: right;
}