-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
175 lines (149 loc) · 3.32 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
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
:root {
--primary-color: #2C3E50;
--secondary-color: rgb(41, 128, 185); /* RGB */
--text-color: hsl(0, 0%, 20%); /* HSL */
--bg-color: #ecf0f1;
--accent-color: #e74c3c;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
}
/* Header */
header {
background-color: var(--primary-color);
color: white;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.header-content {
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px;
}
/* Ajustes para el logo, búsqueda y fecha */
.logo {
width: 50px;
}
.search {
padding: 5px;
border: none;
border-radius: 4px;
flex-grow: 1; /* Permite que el campo de búsqueda ocupe el espacio central */
max-width: 400px; /* Ajusta el ancho máximo */
margin: 0 20px; /* Agrega espacio entre el logo y la fecha */
}
/* Menu */
.main-menu {
background-color: var(--secondary-color);
padding: 10px;
text-align: center;
}
.menu-list {
display: flex;
justify-content: center;
list-style: none;
}
.menu-list li {
margin: 0 10px;
}
.menu-list a {
color: white;
text-decoration: none;
font-weight: bold;
}
.promotions-btn {
background-color: var(--accent-color);
padding: 5px 10px;
border-radius: 4px;
}
/* Product Gallery */
.product-gallery {
margin-top: 150px;
padding: 20px;
display: flex;
flex-direction: column;
gap: 20px;
}
.product-row {
display: flex;
justify-content: space-around;
}
.product-card {
background-color: white;
border: 1px solid var(--primary-color);
padding: 10px;
width: 15%;
text-align: center;
border-radius: 8px;
margin-bottom: 40px;
transform: scale(1.05); /* Aumenta ligeramente el tamaño */
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Efecto de sombra */
transition: transform 0.3s ease; /* Efecto de transición para el zoom */
}
.product-card img {
width: 100%;
height: auto;
}
.product-card button {
background-color: var(--accent-color);
color: white;
padding: 5px;
border: none;
border-radius: 4px;
margin-top: 10px;
cursor: pointer;
}
/* Footer */
footer {
background-color: var(--primary-color); /* Cambia el color según tu diseño */
color: white;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); /* Opcional: Sombra para destacar */
z-index: 1000;
}
/* Contenedor de iconos sociales */
.social-icons {
display: flex;
gap: 15px; /* Espacio entre los iconos */
}
.whatsapp-icon {
position: absolute;
right: 20px; /* Ajusta la posición según tu preferencia */
bottom: 10px;
}
/* Responsiveness */
@media (max-width: 768px) {
.product-card {
width: 100%; /* Ocupa todo el ancho en pantallas pequeñas */
margin-bottom: 20px; /* Menos margen en la parte inferior */
}
.product-row {
flex-direction: column;
align-items: center;
}
.menu-list {
flex-direction: column;
}
}
@media (max-width: 480px) {
.search {
width: 80%;
}
}