-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyloscatalogo.css
151 lines (124 loc) · 2.44 KB
/
styloscatalogo.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: rgb(255, 255, 255);
}
#banner {
background-image: url('ima/des.jpeg');
color: #ffffff;
padding: 10px 0;
text-align: center;
}
#banner img {
width: 30%;
float: left; /* Alinear imagen a la izquierda */
margin-left: 10px; /* Añadir un poco de espacio a la izquierda de la imagen */
}
#banner h1 {
flex-grow: 1;
text-align: right;
font-size: 68px;
font-style: italic; /* Texto cursiva */
}
header {
margin: 20px;
margin-left: auto;
margin-right: auto;
background-color: #010101d3;
color: white;
font-style: italic; /* Texto cursiva */
text-align: left;
padding: 25px;
position: relative;
}
.menu button {
background-color: #27292eed; /* Cambia el color según tu diseño */
border: none;
color: white;
padding: 5px 10px;
text-align: center;
font-size: 16px;
border-radius: 10px;
margin-right: 200px;
}
.menu button:hover {
background-color: #030303cb; /* Color de fondo en hover */
}
nav {
margin-top: 1em;
}
nav button {
background-color: white;
border: 1px solid #605966;
color: #101310;
font-size: 15px;
font-weight: bold;
padding: 0.5em 1em;
margin: 0 0.5em;
cursor: pointer;
border-radius: 5px;
}
nav button:hover {
background-color: #0a0b0a;
color: white;
}
.cart {
position: absolute;
right: 1em;
top: 1em;
background-color: white;
color: black;
padding: 1em;
border-radius: 5px;
width: 200px;
border: 1px solid #ddd;
}
.cart h2 {
margin-top: 0;
}
main {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
padding: 2em;
}
.product {
border: 1px solid #ddd;
border-radius: 5px;
width: 300px;
margin: 1em;
padding: 1em;
text-align: center;
}
.product img {
max-width: 100%;
height: auto;
border-bottom: 1px solid #ddd;
padding-bottom: 1em;
}
.product h2 {
font-size: 1.5em;
color: #333;
}
.product p {
color: #666;
font-size: 1em;
}
.price {
font-size: 1.2em;
color: #0f100f;
font-weight: bold;
}
.product button {
background-color: rgb(79, 36, 36);
color: white;
border: none;
padding: 0.5em 1em;
cursor: pointer;
border-radius: 5px;
}
.product button:hover {
background-color: burlywood;
}