-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (57 loc) · 1.11 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
* {
font-family: sans-serif;
}
h1 {
text-align: center;
}
#productCart {
width: 80%;
display: flex;
flex-direction: column;
align-items: center;
background-color: rgb(244, 244, 244);
margin: 0 auto;
padding: 20px 0;
}
.cabeceraCarrito, .productItem {
display: grid;
grid-template-columns: repeat(7, 1fr);
text-align: center;
padding: 10px 0;
width: 100%;
}
.cabeceraCarrito > div:nth-child(2), .productItem > div:nth-child(2) {
grid-column: 2/4;
}
#listProduct, #listProductPremium {
width: 100%;
}
.cabeceraCarrito > div {
text-align: center;
font-weight: bold;
}
.buttomClear {
background-color: rgb(254, 77, 77);
color: white;
width: 50%;
border: 0px;
height: 30px;
margin: 0 auto;
cursor: pointer;
}
.buttomClear:hover{
background-color: rgb(255, 106, 106);
}
#resumenCarrito {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px 0;
background-color: rgb(207, 207, 207);
width: 100%;
}
#totalCart, #envio {
font-size: 20px;
font-weight: bold;
padding: 10px;
}