-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (53 loc) · 950 Bytes
/
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
#lista-carros {
display: flex;
flex-wrap: wrap;
flex-direction: row;
padding: 20px;
justify-content: center;
}
h2 {
padding: 15px 30px;
padding-bottom: 0;
}
hr {
width: 95%;
margin: 15px 30px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.card {
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
transition: 0.8s;
}
.card:hover {
cursor: pointer;
transition: 0.5s;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
p {
margin-bottom: 50px;
}
img {
height: 178.88px;
}
.btn {
display: block;
justify-content: center;
position: absolute;
margin: 20px 0 20px 0;
width: 90%;
bottom: 0;
}
@media only screen and (max-width: 370px) {
.btn {
display: flex;
width: 85%;
justify-content: center;
}
.card{
display: flex;
width: 24rem;
}
.row .col-md-4{
padding-left: 20px;
}
}