-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathstyles.css
More file actions
44 lines (44 loc) · 723 Bytes
/
styles.css
File metadata and controls
44 lines (44 loc) · 723 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
body {
background:#F4F4F4;
color:#009ACE;
font-family:Helvetica, sans-serif, Arial;
padding:0em 0em 1em 1em;
text-align:left;
}
.tftable {
border-collapse:collapse;
border-color:white;
color:#333333;
font-size:15px;
font-weight:bold;
}
.tftable th {
background-color:#777777;
border-color:white;
border-style:solid;
border-width:1px;
color:white;
padding:8px;
text-align:left;
}
.tftable tr.A {
color:green;
}
.tftable tr.B, tr.C, tr.D {
color:darkorange;
}
.tftable tr.E, tr.F {
color:red;
}
.tftable tr {
background-color:#eeeeee;
}
.tftable tr:hover {
background-color:lightblue;
}
.tftable td {
border-color:white;
border-style:solid;
border-width:1px;
padding:8px;
}