-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleGlobales.css
160 lines (144 loc) · 3.12 KB
/
styleGlobales.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
.main{
display: flex;
flex-direction: column;
justify-content: center;
gap: 80px;
max-width: 1250px;
margin: auto;
}
.home{
display: grid;
grid-template-columns: repeat(auto-fill,minmax(375px,1fr));
gap: 25px;
align-items: center;
}
.contenedorCardHome{
position: relative;
}
.BtnVerDetalles{
position: absolute;
bottom: -15px;
left: 22%;
border-radius: 9px;
height: 40px;
padding: 0 40px;
background-color: rgb(224, 252, 239);
border: none;
}
.titulo{
text-align: center;
font-size: 26px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.containerCard{
background-color: rgb(191, 230, 196);
width: 333px;
height: 493px;
border-radius: 25px;
}
.containerCard h1{
text-align: center;
font-size: 26px;
font-family: 'Times New Roman', Times, serif;
margin-top: 40px;
}
.containerCard h4{
text-align: center;
font-size: 20px;
font-family: 'Times New Roman', Times, serif;
margin-top: 20px;
}
.navMain{
width: 100%;
height: 80px;
background: radial-gradient(circle at 0% 0%, rgb(0, 67, 122) 0%, rgb(0, 30, 80) 100%);
display: flex;
justify-content: space-evenly;
align-items: center;
margin-bottom: 50px;
}
.linkNav{
transition: .3s;
text-decoration: none;
color: white;
font-size: 18px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
a:hover > :not(:hover){
opacity: .4;
}
.apanCarrito{
color: white;
cursor: pointer;
}
.TitledetailAvocado{
font-size: 24px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.detailAvocado{
font-size: 16px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.contenedorBotones{
margin-top: 40px;
}
.contenedorBotones button{
padding: 20px 20px;
background-color: transparent;
border-radius: 15px;
transition: 0.3s;
}
.contenedorBotones button:hover{
background-color: rgb(191, 230, 196);
}
.footer{
background: radial-gradient(circle at 0% 0%, rgb(0, 67, 122) 0%, rgb(0, 30, 80) 100%);
display: flex;
justify-content: space-around;
align-items: center;
width: 100%;
height: 220px;
color: white;
margin-top: 70px;
}
.ulFooter{
list-style: none;
font-size: 22px;
padding: 0;
margin: 0;
}
.ulFooter a{
text-decoration: none;
cursor: pointer;
}
.carrito{
border-radius: 24px;
padding: 20px 20px;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}
.titleCarrito{
font-size: 20px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.itemCrrito{
background-color: rgb(191, 230, 196);
width: 80%;
height: 40px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 30px;
border-radius: 20px;
}
.itemCrrito h5, p{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.btnEliminar{
background: transparent;
border: none;
text-align: center;
}