-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleLoja.css
85 lines (74 loc) · 1.42 KB
/
styleLoja.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
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Gujarati:wght@300&display=swap');
*{
margin: 0;
box-sizing: border-box;
}
body{
background: url(img/fundo2.jpg);
height: 100%;
font-family: 'Noto Serif Gujarati', serif;
}
.nav-list{
font-family: 'Alex Brush', cursive;
}
#produtos{
max-width: 900px;
margin: 0 auto;
padding: 0 2%;
display: flex;
flex-wrap: wrap;
}
#carrinho{
max-width: 900px;
margin: 0 auto;
padding: 0 2%;
display: block;
}
.produto-single{
width: 32%;
margin-right: 1%;
border: 1px solid #ccc;
margin-top: 20px;
margin-bottom: 20px;
}
.produto-single img{
max-width: 100%;
width: 400px;
height: 250px;
}
.produto-single p{
text-align: center;
font-size: 16px;
padding: 10px;
}
.produto-single a{
text-decoration: none;
color: #e55175;
background-color: #ffc2bb;
text-align: center;
display: block;
padding: 4px 0;
font-size: 18px;
}
h2{
background-color: #e55175;
padding: 10px 0;
text-align: center;
color: white;
}
.info-single-checkout{
border-bottom: 2px dotted;
padding: 10px 0;
font-weight: bold;
color: black;
}
#prodID{
color: #e55175;
}
@media screen and (max-width: 768px){
.produto-single{
width: 100%;
margin-right: 0;
}
}