-
Notifications
You must be signed in to change notification settings - Fork 1
/
nyc_chart.css
207 lines (180 loc) · 3.72 KB
/
nyc_chart.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
body {
font-family: Georgia, Arial, sans;
background-color: #FFFFFF;
margin-left: 25px;
}
#footnote {
font-size: 70%;
clear: both;
line-height: 1.5em;
font-family: Verdana, serif;
}
#view1 p {
font-size: 0.9em;
font-style: italic;
font-weight: bold;
}
/* Styles for containers/divs for charts */
#div_occmap,
#div_empnum, #div_hirenum , #div_empearn, #div_hirearn {
position: relative;
padding-top: 20px;
padding-bottom: 10px;
padding-right: 10px;
border-width: 1px;
border-style: solid;
border-color: #000000;
margin-bottom: 20px;
}
#div_empnum2, #div_hirenum2 , #div_empearn2, #div_hirearn2 {
position: relative;
padding-top: 20px;
padding-bottom: 10px;
padding-right: 10px;
border-width: 0px;
border-style: solid;
border-color: #000000;
margin-bottom: 20px;
}
#div_occmap {
float: left;
width: 30%;
height: 850px;
}
#div_num {
float: left;
width: 30%;
padding-right: 10px;
}
#div_earn {
float: left;
width: 30%;
padding-right: 10px;
}
#div_num2 {
width: 40%;
float: left;
padding-right: 10px;
}
#div_earn2 {
width: 40%;
float: left;
}
/* Styles for selectors */
#selectors, #selectors2 {
background-color: #f0f0e1;
margin-top: 20px;
margin-bottom: 20px;
width: 40%;
border-radius: 20px;
}
#sel_cty, #sel_ind, #sel_ed, #sel_ind2 {
padding-bottom: 20px;
margin-left: 10px;
}
#sel_cty legend, #sel_ind legend,
#sel_ed legend, #sel_ind2 legend {
font-weight: bold;
padding-bottom: 5px;
}
#sel_cty, #sel_ed {
padding-top: 10px;
}
#sel_ind, #seld_ind2 {
margin-bottom: 10px;
}
#sel_ind select, #sel_cty select,
#sel_ind2 select, #sel_ed select {
width: 80%;
padding-top: 0.2em;
padding-bottom: 0.2em;
font-size: 0.9em;
}
/* Styles for tabs */
ul.tabs
{
padding: 7px 0;
font-size: 0;
margin:0;
list-style-type: none;
text-align: left; /*set to left, center, or right to align the tabs as desired*/
}
ul.tabs li
{
display: inline;
margin: 0;
margin-right:3px; /*distance between tabs*/
}
ul.tabs li a
{
font: normal 12px Verdana;
text-decoration: none;
position: relative;
padding: 7px 16px;
border: 1px solid #CCC;
border-bottom-color:#B7B7B7;
color: #000;
background: #F0F0F0 url(tabbg.gif) 0 0 repeat-x;
border-radius: 3px 3px 0 0;
outline:none;
}
ul.tabs li a:visited
{
color: #000;
}
ul.tabs li a:hover
{
border: 1px solid #B7B7B7;
background:#F0F0F0 url(tabbg.gif) 0 -36px repeat-x;
}
ul.tabs li.selected a, ul.tabs li.selected a:hover
{
position: relative;
top: 0px;
font-weight:bold;
background: white;
border: 1px solid #B7B7B7;
border-bottom-color: white;
}
ul.tabs li.selected a:hover
{
text-decoration: none;
}
div.tabcontents
{
border: 1px solid #B7B7B7; padding: 30px;
background-color:#FFF;
border-radius: 0 3px 3px 3px;
}
/* Styles for Media Query */
* {
box-sizing: border-box;
}
.row::after {
content: "";
clear: both;
display: block;
}
[class*="col-"] {
float: left;
padding: 15px;
}
/* For mobile phones: */
[class*="col-"] {
width: 100%;
}
@media only screen and (min-width: 768px) {
/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
}