css.css
1.65 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
#imax_destinatarios {
text-align: center;
margin-bottom: 10px;
}
#imax_destinatarios p {
font-weight: bold;
margin-top: 5px;
}
.imax_destinatarios {
margin: auto;
}
.imax_destinatarios th {
font-weight: bold;
}
.imax_destinatarios td, .imax_destinatarios th {
padding: 3px;
border: 1px solid black;
}
#imax_mensajeError {
color: red;
}
.centrado {
text-align: center;
}
@media print {
.noImprimir {
display: none;
}
}
#order_sortable li, .table img {
cursor: pointer;
}
.imaxHidden {
display: none;
}
#multiEAN {
font-family: Arial, sans-serif;
}
#multiEAN h3, #multiEAN h4 {
color: #333;
border-bottom: 2px solid #ddd;
padding-bottom: 10px;
margin-bottom: 15px;
}
#multiEAN p {
color: #555;
margin-bottom: 10px;
}
#multiEAN ul {
list-style-type: none;
padding: 0;
}
#multiEAN li {
margin: 10px 0;
background: #f9f9f9;
padding: 10px;
border-radius: 5px;
position: relative;
}
#multiEAN .borrarEAN {
color: #f44336;
cursor: pointer;
position: absolute;
top: 50%;
right: 10px;
transform: translateY(-50%);
text-decoration: none;
font-size: 0.9em;
}
#multiEAN button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.2s;
display: block;
margin: 10px 0;
}
#multiEAN button:hover {
background-color: #45a049;
}
#multiEAN input[type="text"] {
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
width: 100%;
box-sizing: border-box;
margin-bottom: 10px;
}