-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
126 lines (110 loc) · 2.25 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
background-color: #f9f9f9;
}
h1, h2, h3 {
margin: 20px 0;
color: goldenrod;
}
p {
color: green;
}
#drag-drop-area {
border: 2px dashed #007bff;
padding: 20px;
margin: 20px auto;
max-width: 600px;
border-radius: 10px;
background-color: #e6f7ff;
color: #007bff;
}
#file-message {
margin: 0;
font-size: 16px;
}
button {
margin: 5px;
padding: 10px 15px;
border: none;
border-radius: 5px;
background-color: goldenrod;
color: white;
cursor: pointer;
}
button:hover {
background-color: silver;
}
#progress-container {
margin: 20px auto;
text-align: center;
}
#error-message {
color: red;
margin-top: 10px;
}
.graficos-container {
display: flex;
justify-content: space-between; /* Asegura el espacio entre imágenes */
align-items: flex-start;
gap: 20px; /* Espaciado entre elementos */
flex-wrap: wrap;
margin-top: 20px;
max-width: 1200px; /* Limita el ancho total */
margin: 0 auto; /* Centra la galería */
}
.grafico-box {
display: flex;
flex-direction: column;
align-items: center;
flex: 1 1 45%; /* Asegura que ocupen 45% del contenedor */
background: white;
border: 1px solid #ddd;
padding: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 10px;
max-width: 600px; /* Asegura un ancho máximo */
}
.grafico-box img {
width: 100%;
max-width: 100%; /* Asegura que no sobrepasen el contenedor */
height: auto;
margin: 10px 0;
}
.control-menu {
display: flex;
justify-content: center;
gap: 5px;
margin-top: 10px;
}
.image-container {
position: relative;
overflow: hidden;
width: 100%;
height: 400px;
border: 1px solid #ccc;
margin-top: 10px;
}
.image-container img {
transition: transform 0.2s ease;
transform-origin: center;
cursor: grab;
}
.zoom-button {
margin: 5px;
padding: 5px 10px;
border: none;
background-color: goldenrod;
color: white;
cursor: pointer;
border-radius: 5px;
}
.zoom-button:hover {
background-color: silver;
<<<<<<< HEAD
}
=======
}
>>>>>>> cb66b1d62e6639e873b408ea9c73c364c9033060