-
Notifications
You must be signed in to change notification settings - Fork 1
/
carrito.css
182 lines (157 loc) · 2.72 KB
/
carrito.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
/* Estilos para cada producto */
.producto {
margin: 20px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
width: 200px;
}
/* Estilos para la imagen del producto */
.producto img {
width: 100%;
height: auto;
border-radius: 5px;
}
/* Estilos para la descripción del producto */
.descripcion {
text-align: center;
}
/* Estilos para el botón de eliminar */
.eliminar {
background-color: #ff6347;
color: white;
border: none;
border-radius: 5px;
padding: 5px 10px;
}
/** Estilos para el header */
header {
background-color: #1d4440;
color: #f2fbf9;
border-radius: 5px;
padding: 5px;
display: flex;
position: sticky;
top: 5px;
z-index: 1000;
justify-content: space-between;
align-items: center;
}
header img {
width: 70px;
padding-left: 10px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
align-items: center;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
font-size: 1em;
color: #f2fbf9;
text-decoration: none;
cursor: url("./img/extra/cursor2.svg"), auto;
}
nav ul li a:hover {
color: yellowgreen;
}
nav ul li a img {
width: 30px;
margin: 0;
padding: 0;
}
.carrito-icon {
display: flex;
align-items: center;
}
.contador {
background-color: #f2fbf9;
color: #1d4440;
border-radius: 30%;
padding: 8px;
margin-left: 5px;
}
.consola {
display: flex;
justify-content: center;
}
/** Estilos de media query */
/* Pantalla grande (escritorio): */
@media all and (min-width: 1024px) {
body {
font-size: 16px;
}
}
/* Pantalla mediana (tabletas): */
@media all and (min-width: 768px) and (max-width: 1023px) {
body {
font-size: 15px;
}
}
/* Pantalla pequeña (teléfonos): */
@media all and (max-width: 767px) {
body {
font-size: 12px;
margin: 1px;
}
nav ul li {
margin-right: 0;
}
nav ul li a {
margin: 3px;
}
}
/* Estilos para la tabla de productos en el carrito */
main {
display: flex;
justify-content: center;
}
#listaProductos {
width: 95%;
border-collapse: collapse;
margin-top: 20px;
}
#listaProductos th,
#listaProductos td {
border: 1px solid #ddd;
padding: 8px;
width: 15%;
background-color: #f2f2f2;
text-align: center;
}
#totalSuma {
border: 1px solid black;
}
.cantidad {
padding: 10px;
}
/* Estilos para los botones de agregar y quitar productos */
.sumar,
.restar {
width: 15%;
padding: 0;
margin: 0;
border-radius: 5px;
background-color: #4caf50;
color: white;
cursor: url("./img/extra/cursor2.svg"), auto;
}
.restar {
background-color: #f44336;
}
.restar:hover {
background-color: #d32f2f;
}
/*Pantalla pequeña (teléfonos): */
@media all and (max-width: 767px) {
.sumar,
.restar {
width: 100%;
}
}