forked from JanWielemaker/plsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebui.css
More file actions
53 lines (40 loc) · 766 Bytes
/
webui.css
File metadata and controls
53 lines (40 loc) · 766 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
45
46
47
48
49
50
51
52
/* See http://www.w3schools.com/css/css_table.asp
*/
table.spreadsheet
{ border-collapse:collapse;
}
table.spreadsheet td
{ border: 1px solid black;
}
table.spreadsheet td.intable
{ background-color:#a8ffcc;
}
table.spreadsheet td.intables
{ background-color:#eaa1ff;
}
table.spreadsheet td.c1
{ background-color:#d3e170;
}
table.spreadsheet td.c2
{ background-color:#9be170;
}
table.spreadsheet td.c3
{ background-color:#70e1d2;
}
table.spreadsheet td.c4
{ background-color:#7fd8ff;
}
table.spreadsheet td.c5
{ background-color:#78f0d3;
}
table.spreadsheet td.float,td.percentage
{ text-align:right;
}
table.spreadsheet td.derived
{ color:blue;
//font-weight:bold;
}
table.spreadsheet th.colname,th.rowname
{ background-color:black;
color:white;
}