-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
101 lines (84 loc) · 1.51 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
:root{
--color-acento: #3092ee;
--color-acento-claro: #2d13d333;
--color-texto: black;
}
h1{
text-decoration:solid;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color: rgba(89, 89, 138, 0.536);
}
body{
margin: 0;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
display: flex;
flex-direction: column;
height: 100vh;
}
h3, p{
margin: 5px;
}
.escondido{
display: none;
}
a{
background-color: unset;
border:unset;
cursor:pointer;
text-decoration: none;
transition: 200ms;
color: var(--color-texto);
}
button{
transition: 200ms;
}
a:hover:not(#cart), button:hover{
color: var(--color-acento);
}
/* Header */
header{
box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.09);
margin-bottom: 10px;
font-size: larger;
}
header nav{
display: flex;
justify-content: space-between;
margin: 0 60px;
}
#logo{
height: 50px;
margin: 25px;
}
header nav div{
display: flex;
align-items: center;
gap: 40px;
}
header nav img{
height: 25px;
}
#cuenta-carrito{
position: absolute;
background-color: var(--color-acento);
border-radius: 100%;
display: inline-block;
height: 25px;
line-height: 25px;
aspect-ratio: 1;
text-align: center;
/* margin-bottom: 15px; */
}
footer{
text-align: center;
box-shadow: -1px -3px 5px rgba(0, 0, 0, 0.09);
padding-top: 2px;
margin-top: auto;
}
footer a{
text-decoration: underline;
}
#map{
height: 300px;
width: 100%;
}