-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcarrossel.css
107 lines (104 loc) · 1.84 KB
/
carrossel.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
.carrossel-titulo {
color: var(--laranja);
background-color: var(--branco);
text-align: center;
text-transform: uppercase;
font-size: 18px;
font-weight: 700;
padding: 1em 0 0.5em 0;
}
.swiper-slide img{
width: 100%;
}
.swiper-button-prev,
.swiper-button-next{
display: none;
}
.swiper-pagination {
position: initial;
margin: 0.5em 0;
}
.card-descricao {
display: flex;
justify-content: space-between;
margin-bottom: 0.5em;
}
.card-botoes {
display: flex;
justify-content: space-between;
}
.botoes{
display: flex;
}
.card {
background-color: var(--branco);
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
border-radius: 10px;
margin: 1em;
padding: 1em;
}
.descricao-titulo{
color: var(--laranja);
font-weight: 700;
}
.descricao-titulo-livro{
color: var(--azul);
font-size: 18px;
font-weight: 700;
margin: 0.5em 0;
}
.descricao-texto{
font-size: 14px;
}
.botoes-item{
margin: 0 0.5em;
}
.botoes-ancora{
background-color: var(--laranja);
padding: 1em 2.2em;
color: var(--branco);
font-weight: 700;
text-decoration: none;
}
@media screen and (min-width: 1024px) {
.carrossel-titulo {
font-size: 26px;
}
}
.swiper-pagination {
margin: 2em 0 3em 0;
}
.swiper {
width: 60%;
}
.swiper-button-prev,
.swiper-button-next {
display: block;
top: 60%;
}
.card {
width: 40%;
margin: 2em auto;
}
@media screen and (min-width: 1728px) {
.carrossel-container{
display: flex;
margin: 0 20vw 3em 20vw;
align-items: center;
} }
.swiper-pagination{
margin: 1em 0;
}
.swiper{
width: 50%;
}
.descricao-titulo{
font-size: 16px;
}
.descricao{
margin-right: 2em;
}
.card{
width: 60%;
margin-left: 3em;
}