-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
83 lines (69 loc) · 1.28 KB
/
styles.css
File metadata and controls
83 lines (69 loc) · 1.28 KB
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: Helvetica;
}
/*Cabeçalho*/
header {
background-image: linear-gradient(to right, #0085FF, #011629);
color: #fff;
padding: 30px;
text-align: center;
border-bottom: 3px solid #011629;
}
/*Grid de produtos*/
.container {
background-color: #d9e4ff;
min-height: 60vh;
padding: 50px;
}
.products-container {
max-width: 1200px;
margin: 0 auto;
}
.card {
width: 31%;
display: inline-block;
margin: 1% 1%;
padding: 15px;
}
button {
padding-left: 150px;
padding-right: 150px;
padding-top: 10px;
padding-bottom: 10px;
background-color: #011629;
color: #fff;
border-radius: 0.60rem;
font-weight: bold;
}
.btn :hover {
background-color: #0085FF;
}
img {
height: 300px;
width: 100%;
margin-bottom: 10px;
background-position: center;
background-size: cover;
border-radius:20px ;
}
h3 {
margin-bottom: 10px;
color:#0085FF;
border-left: #0085FF;
padding-left: 7px;
font-size: 27px;
}
.bold {
font-weight: bold;
}
/*Rodapé*/
footer {
background-image: linear-gradient(to right, #0085FF, #011629);
border-top: 3px solid #011629;
color: #fff;
text-align: center;
padding: 30px;
}