-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (86 loc) · 1.9 KB
/
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
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
/* Cabeçalho */
header {
background-color: #a7d4ff;
color: #000000;
text-align: center;
padding: 10px 0;
font-size: 20px;
}
/* Formulário */
.formulario {
display: flex;
justify-content: center;
padding: 100px;
}
/* Carousel */
div {
display: flex;
justify-content: center;
width: 100%;
height: 300px;
overflow: hidden;
}
#carrossel {
transition: left 3s linear infinite;
}
/* Reset de margens e preenchimento */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Estilo do container do carrossel */
.carousel-container {
width: 80%; /* Largura desejada do carrossel */
margin: 0 auto; /* Centraliza o carrossel na página */
overflow: hidden; /* Esconde imagens que ultrapassem o contêiner */
position: relative;
}
/* Estilo do carrossel */
.carousel {
display: flex; /* Permite que as imagens fiquem lado a lado */
transition: transform 0.5s ease-in-out; /* Adiciona uma transição suave */
}
/* Estilo das imagens no carrossel */
.carousel img {
width: 100%; /* Preenche todo o espaço disponível */
height: auto; /* Mantém a proporção da imagem */
}
/* Estilo dos botões de navegação */
.prev-button,
.next-button {
background-color: #333;
color: #fff;
border: none;
padding: 10px 15px;
font-size: 20px;
cursor: pointer;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 1;
}
/* Botão anterior */
.prev-button {
left: 10px;
}
/* Botão próximo */
.next-button {
right: 10px;
}
/* Formulário */
form {
display: flex;
flex-direction: column;
gap: 15px;
}
/* Rodapé */
footer {
background-color: #a7d4ff;
color: #000000;
padding: 5px 0;
}
.rodape {
text-align: center;
padding: 30px;
}