-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
98 lines (96 loc) · 1.82 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
color: white;
}
body {
font-family: 'Space Grotesk', sans-serif;
background-color: #141C29;
padding-top: 80px;
}
h1{
font-family: 'Montserrat', sans-serif;
text-align: center;
margin: 30px 0px;
}
img {
width: 320px;
height: 340px;
object-fit: cover;
border-radius: 20px 20px 0px 0px;
}
header{
display: flex;
align-items: center;
justify-content: center;
gap:15%;
height: 70px;
top: 0;
position: fixed;
width: 100%;
}
.scroll{
background-color: aliceblue;
box-shadow: .1rem .2rem .3rem #333;
}
.scroll img{
filter: invert(15%);
}
.scroll h1{
color: #141C29;
}
.carrito{
filter: invert(100%);
width: 45px;
height: auto;
}
.contenedor{
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 50px;
margin-bottom: 20px;
}
.contenedor>div{
box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
background-color: #2D4263;
border-radius: 20px;
}
.contenedor>div:hover{
background-color: #11294d;
}
.informacion{
height: 150px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap:15px;
}
.informacion>p:first-child{
font-family: 'Montserrat', sans-serif;
font-size: 25px;
font-weight: 300;
}
.informacion .precio {
font-size: 20px;
font-weight: 500;
}
.informacion .precio span{
font-size: 17px;
font-weight: 300;
}
.informacion button{
background-color: #263143;
width: 100px;
height: 35px;
border-radius: 10px;
border: none;
font-size: 17px;
font-weight: 300;
cursor: pointer;
}
.informacion button:hover{
background-color: #2D4263;
}