-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
148 lines (128 loc) · 3.89 KB
/
styles.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
/* Estilos para el overlay (fondo oscurecido) */
.overlay {
display: none; /* Inicialmente oculto */
position: fixed; /* Fijo en la ventana */
left: 0;
right: 0;
overflow: hidden;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /* Color negro con opacidad */
z-index: 1000; /* Asegurarse de que aparezca encima de otros elementos */
}
.overlay.show-modal {
display: block; /* Mostrar cuando se añada la clase show-modal */
}
/* Estilos para el modal */
.modal {
display: none; /* Inicialmente oculto */
position: fixed; /* Fijo en la ventana */
top: 50%; /* Centrar verticalmente */
left: 50%; /* Centrar horizontalmente */
transform: translate(-50%, -50%); /* Ajuste para centrar perfectamente */
padding: 20px;
background-color: #fff; /* Fondo blanco */
z-index: 10001; /* Asegurarse de que aparezca encima del overlay y otros elementos */
width: 70%; /* Toma el 70% del ancho de la ventana */
max-width: 500px; /* Ancho máximo */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra alrededor del modal */
text-align: justify;
font-size: 14px; /* Ajusta este valor según lo que necesites para el contenido */
}
.modal.show-modal {
display: block; /* Mostrar cuando se añada la clase show-modal */
}
#close-modal-btn {
margin-top: 20px; /* Ajusta este valor según cuánto espacio quieras agregar */
}
.row {
display: flex;
flex-direction: row;
width: 99%;
justify-content: space-between;
}
.row > * { /* Selecciona todos los hijos directos de .row */
flex: 1; /* Permite que los elementos crezcan y se repartan el espacio disponible */
}
.column {
display: flex;
flex-direction: column;
width: 1px;
}
/* Para dcc.Dropdown */
.Select, .Select-control, .Select-value, .Select-input, .Select-menu-outer {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-size: 12px;
max-width: 100%;
}
.dropdown-container-1 {
border: 1px solid #a9a9a9;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
margin-top: 1px;
margin-bottom: 1px;
margin-right: 0px;
padding: 2px;
margin-left: 2px;
padding-left: 14px;
background-color: white;
}
.dropdown-container-2 {
border: 1px solid #ccc;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
margin-top: 1px;
margin-bottom: 1px;
margin-right: 0px;
padding: 2px;
margin-left: 2px;
background-color: white;
}
#well-map-container {
height: 90vh; /* ajusta este valor según tus necesidades */
}
#well-map {
height: 100%;
}
.graph-title {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-weight: bold; /* Si quieres que el título sea en negrita */
padding: 0px;
margin-top: 2px;
margin-bottom: 8px;
margin-left: 10px;
background-color: white;
/* Puedes agregar otras propiedades aquí si lo necesitas */
}
#well-map-container {
border: 1px solid #ccc;
margin-left: 2px;
margin-top: 2px;
padding: 2px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
#graph-container, #graph-container_2 {
border: 1px solid #ccc;
margin-left: 5px;
margin-top: 2px;
padding: 1px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
background-color: white;
}
/* Para selector de tipo de mapa */
#mapbox-view-selector label {
margin-top: 5px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-size: 10px;
}
/* Para selector de fechas */
#date-picker-range .DateInput_input {
margin-top: 0px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
font-size: 12px;
}
body {
margin: 0;
padding: 0;
font-family: sans-serif;
color: rgb(0, 0, 0);
background-color: rgb(225, 225, 225);
}