-
Notifications
You must be signed in to change notification settings - Fork 0
/
carousel.css
92 lines (78 loc) · 1.39 KB
/
carousel.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
.carousel-wrapper * {
display: inline-block;
}
.titulo {
color: black;
background-color: transparent;
font-size: 3rem;
width: fit-content;
margin: auto;
}
.carousel-wrapper {
align-items: center;
justify-content: center;
padding:20px;
vertical-align: middle;
}
.carousel-wrapper a {
font-weight: bold;
cursor: pointer;
}
.carousel-principal {
width: 93% !important;
overflow: hidden;
}
#prev {
float: left;
font-size: 40px;
}
#next {
float: right;
font-size: 40px;
}
.item-list {
width: 4000%;
transition: 0.5s all;
}
.item-list > .item {
display: inline-block;
width: 200px;
margin: 25px 25px;
padding: 20px;
border: solid 2px black;
border-radius: 20px;
width: 300px;
background-color: white;
height: fit-content;
top: 0;
}
.item h2 {
margin: 10px 0px;
font-size: 1.7rem;
}
.item-desc article {
font-size: 0.9rem;
}
.item-button, .button-pesquisar {
padding: 10px 20px;
margin-top: 10px;
border: none;
border-radius: 50px;
background: salmon;
color: white;
font-size: 15px;
font-weight: bold;
text-transform: uppercase;
cursor: pointer;
}
.pesquisa-header * {
display: block !important;
}
.pesquisa-header h1 {
background-color: transparent;
color: black;
margin-top: 20px;
}
#pesquisar {
width: 500px;
}