-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcestyle.css
More file actions
124 lines (103 loc) · 2.03 KB
/
Copy pathcestyle.css
File metadata and controls
124 lines (103 loc) · 2.03 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
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
118
119
120
121
122
123
124
@charset "utf-8";
/* CSS Document */
body {
margin:0px;
padding:0px;
font-family:droid-sans, Arial, Helvetica, sans-serif;
font-size:13px;
line-height:120%;
height:100%;
}
#selectTableWrapper table{
margin-left:auto;
margin-right:auto;
}
select{
font-family:droid-sans, Arial, Helvetica, sans-serif;
width:100%;
}
select#percentSelector{
height:9em;
vertical-align:top;
}
select#districtSelector{
height:16em;
vertical-align:top;
}
div#wrapper {
padding-top:3em;
margin-left:auto;
margin-right:auto;
width:650px;
position:relative;
}
div#selectArea {
padding:5px;
background-color:#FBF9F0;
-webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
div#tableWrapper {
position:relative;
left:0px;
max-height:700px;
overflow-y:auto;
overflow-x:hidden;
-webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}
div#ajaxLoaderDisplay {
display:none;
width:100%;
text-align:center;
}
table {border-collapse:collapse;}
table tr.blueHeader td, table tr.blueHeader th, div.blueHeader{
background-color:#003768;
color:#fff;
line-height:150%;
font-size:18px;
text-align:center;
}
table tr.grayHeader td, table tr.grayHeader th, div.grayHeader{
background-color:#c0c0c0;
cursor:pointer;
}
table th {
vertical-align:bottom;
text-align:center;
}
table td {
vertical-align:top;
text-align:left;
}
tr.dark0 td, span.dark0 {
background-color:#fff;
}
tr.dark1 td, span.dark1 {
background-color:rgb(221,235,247);
}
tr.dark2 td, span.dark2 {
background-color:rgb(181,215,238);
}
tr.dark3 td, span.dark3 {
background-color:rgb(155,194,230);
}
tr.dark4 td, span.dark4 {
background-color:rgb(47,117,181);
color:#fff;
}
table#dataTable {
width:100%;
table-layout:fixed;
}
table#dataTable td {
border:1px solid;
border-color:#c0c0c0;
border-color:rgba(0,0,0,0.1);
}
table#dataTable th {
border:0px;
}