-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
208 lines (204 loc) · 3.58 KB
/
style.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
body{
font-family: 'Montserrat', sans-serif;
}
/* Diseño para Encabezado y Pie de página */
header{
background-color: #E6B0AA;
padding: 20px 0;
}
.logo{
width: 150px;
}
.cabecera{
width: 940px;
position: relative;
margin: 0 auto;
}
nav{
position: absolute;
top: 110px;
right: 0px;
}
nav li{
display: inline;
margin: 0 0 0 15px;
}
nav a{
text-transform: uppercase;
color: #000000;
font-weight: bold;
font-size: 22px;
text-decoration: none;
transition: all 0.2s;
}
nav a:hover{
color: #7B241C;
text-decoration: underline;
font-size: 25px;
}
main{
background-color: #ffeeee8a;
}
footer{
text-align: center;
background-color: #7B241C;
padding: 10px;
}
.copyright{
font-size: 13px;
margin: 5px;
color: #E6B0AA;
}
p{
font-size: 18px;
}
/* Diseño para página HOME */
.principal{
text-align: center;
font-size: 20px;
padding: 3em 0;
}
.titulo-principal{
color: #7B241C;
margin: 0 0 1em;
font-size: 55px;
font-weight: bold;
}
.intro{
width: 940px;
margin: 0 auto;
}
.principal img{
width: 40%;
}
.principal p{
width: 40%;
display: inline-block;
text-align: justify;
vertical-align: top;
margin: 98px 0;
}
.principal p strong{
font-weight: bold;
color: #7B241C;
}
/* Diseño para página Productos */
.productos{
width: 940px;
margin: 0 auto;
padding: 50px;
}
.productos li{
display: inline-block;
text-align: center;
width: 45%;
vertical-align: top;
margin: 1.5%;
padding: 30px 20px;
box-sizing: border-box;
border: 2px solid #7B241C;
border-radius: 10px;
transition: all 1s;
}
.productos li:hover{
transform: scale(1.08);
}
.tarjetas{
width: 350px;
}
.producto-modelo{
padding: 1em;
}
#sencilla{
padding: 30px 20px 45px;
}
.producto-precio{
font-size: 23px;
font-weight: bold;
}
/* Diseño para página Contacto */
.contacto{
text-align: center;
margin: 0 0 1em;
}
.contacto a img{
width: 50px;
margin: 1em 0;
transition: all 1s;
}
.contacto a img:hover{
transform: scale(1.3);
}
.titulo{
text-align: center;
font-size: 30px;
margin: 1em 0;
}
.metodos_pago{
text-align: center;
width: 940px;
margin: 0 auto;
}
.metodos_pago p{
margin: 1em 0;
}
.metodos_pago p strong{
font-weight: bold;
}
.metodos_pago li{
display: inline-block;
margin: 1.5%;
width: 30%;
vertical-align: top;
padding: 30px 20px;
box-sizing: border-box;
border: 2px solid #7B241C;
border-radius: 10px;
}
.metodos_pago li img{
width: 50px;
}
.metodos_pago li:nth-child(2){
margin: 81.8px 1.5%;
}
.metodos_pago li:last-child{
margin: 81.8px 1.5%;
}
/* Diseño Responsivo*/
@media screen and (max-width:480px){
h1{
text-align: center;
margin: 10px 0;
}
nav{
position: static;
}
.cabecera, .productos, .metodos_pago{
width: auto;
}
.intro{
width: auto;
display: block;
margin: 5px;
}
.intro img, .intro p{
width: 350px;
margin: 5px;
}
.productos li{
width: 100%;
margin: 0 0 10px;
}
.tarjetas{
width: 250px;
}
.metodos_pago li{
width: 80%;
}
.metodos_pago li:nth-child(2){
margin: 10px;
}
.metodos_pago li:last-child{
margin: 10px;
}
}