-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
110 lines (88 loc) · 1.24 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
*{
margin: 0;
padding: 0;
font-family: Cambria;
}
main{
background-color: #acb8b8;
padding: 0;
height: 100%;
width: 100%;
}
header{
background-color: #7d9dc1;
height: 162px;
overflow: hidden;
}
header img{
width: 100%;
/*height: 300%;*/
}
nav{
color:white;
background-color: #1e4065;
height: 44px;
width: 100%;
float: left;
}
nav ul{
list-style-type: none;
margin:0;
padding:0;
}
nav ul li {
display: inline;
overflow: hidden;
}
nav ul li a{
color: white;
text-transform: uppercase;
display: block;
text-decoration: none;
float: left;
width: 10%;
padding:0.5%;
}
nav ul li a:hover{
background-color: #6c94ba;
}
aside{
float: left;
width: 14%;
background-color: #7d9dc1;
padding: 3%;
}
aside h3{
margin-bottom: 15%;
}
aside p{
margin-bottom: 100%;
}
section{
float: left;
width: 74%;
padding: 3%;
}
section h2{
margin-bottom: 1%;
}
section p{
margin-bottom: 0%;
}
footer{
width: 100%;
float: left;
color: white;
background-color: #1e4065;
}
footer p{
padding: 2%;
margin: 0 auto;
}
.logo{
margin-bottom: 3%;
height: 250px;
}
.img-producto{
height: 250px;
}