Newer
Older
@import url("https://fonts.googleapis.com/css2?family=Signika");
/* Letra para todo el tema */
* {
font-family: 'times new roman';
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
}
/* Titulo principal */
h1 {
font-family: 'algerian';
width: 700px;
font-size:160%;
text-align:center;
font-weight: bold;
}
.table{
height: 100px;
}
/* Selector de meses */
#selectYear{
width: 700px;
text-align: center;
scale: 1.3;
}
/* Contenedor principal */
#contenedorPrincipal{
width: 900px;
height: 500px;
}
/* Espacio para dibujar el mapa de España */
#mapa{
width: 700px;
height: 400px;
float: inline-start;
}
/* Cuadrado donde aparece la información resumida de cada provincia */
#infoResumen{
position: absolute;
width: 200px;
height: 90px;
background-color: white;
pointer-events: none;
border: solid black;
display: none;
}
/* Selector de variable */
#selectVar{
height: 50px;
float:inline-start;
margin-left: 50px;
scale: 1.2;
}
/* Toda la información del gráfico de líneas */
#lineChartCompleto{
width:500px;
height: 450px;
float:left;
}
/* GRAFICO DE LINEAS */
#lineas{
width:500px;
height: 400px;
float:left;
display: none;
}
#titulo{
margin-left: 170px;
margin-top: 20px;
}
.grid line {
stroke: lightgrey;
stroke-opacity: 0.7;
shape-rendering: crispEdges;
}
.grid path {
stroke-width: 0;
}
.gridright line{
stroke:none;
}
/* CHECKBOX */
#checkLineas{
display: none;
width: 600px;
height: 100px;
float: inline-end;
text-align: center;
}
/* Lista de selección de variables a mostrar en el gráfico de líneas*/
#listaLineChartVariables{
list-style-type: none;
text-align: left;
margin-left: 100px;
float: left;
}
/* Lista para seleccionar la opción de grosor en el gráfico de líneas*/
#listaLineChartGrosor{
list-style-type: none;
text-align: left;
float: right;
margin-right: 50px;
}
/* Titulos de la selección de variables en el gráfico de líneas*/
#titleVarLineChart{
font-weight: bold;
font-size: 110%;
}
/* Footer */
footer {
text-align: center;
width: 1200px;
margin-bottom: 0px;
margin-top: 0px;
color: black;
}
#footer p {
font-family:'Courier New';
font-size: 13px;
float: inline-end;
text-align: center;
width: 100%;
font-style: italic;
}