-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
229 lines (193 loc) · 3.77 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
color: black;
background: white;
}
header {
color: black;
background: white;
padding: 20px 0;
}
.caixa {
position: relative;
width: 940px;
margin: 0 auto;
}
nav {
position: absolute;
top: 0px;
right: 0;
}
nav li {
display: inline;
margin: 0 0 0 15px;
}
nav a {
color: black;
font-weight: bold;
font-size: 20px;
text-decoration: none;
}
nav a:hover {
color: rgb(138, 59, 125);
text-decoration: underline;
}
h1 {
opacity: 0; /* Inicialmente invisível */
transform: translateY(-50px); /* Posição inicial acima */
animation: titleEntrance 1s forwards; /* Animação de entrada */
}
/* Animação de entrada */
@keyframes titleEntrance {
to {
opacity: 1; /* Torna o título visível */
transform: translateY(0); /* Retorna à posição original */
}
}
h2 {
text-align: center;
padding: 20px 0;
font-size: 32px;
}
.titulo-principal {
font-size: 30px;
color: white;
background-color: #8BC6EC;
background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
padding: 320px 0;
text-align: center;
}
.subtitulo {
font-size: 18px;
opacity: 0; /* Inicialmente invisível */
transform: translateY(-50px); /* Posição inicial acima */
animation: titleEntrance 1s forwards; /* Animação de entrada */
}
.botoes {
text-align: center;
}
.botao {
font-size: 20px;
background-image: linear-gradient(to right, #8EC5FC 0%, #A7BFE8 51%, #6190E8 100%);
margin: 10px;
padding: 5px 5px;
transition: 0.5s;
background-size: 200% auto;
color: black;
box-shadow: 0 0 10px #eee;
border-radius: 10px;
border: white;
}
.botao:hover {
background-position: right center; /* change the direction of the change here */
color: black;
text-decoration: none;
}
main p {
color: black;
font-size: 18px;
text-align: center;
padding: 0px;
}
.depoimentos {
width: 60%;
margin: 0 auto;
text-align: center;
position: relative; /* Adicionado para posicionar as setas */
}
.depoimentos blockquote {
display: none;
}
.depoimentos blockquote.active {
display: block;
}
.carousel-controls {
font-size: 24px;
cursor: pointer;
position: absolute;
top: 50%;
transform: translateY(-50%);
transition: transform 0.3s, font-size 0.3s;
}
.carousel-controls.left {
left: 10px;
font-size: 60px;
}
.carousel-controls.right {
right: 10px;
font-size: 60px;
}
.carousel-controls:hover {
transform: translateY(-50%) scale(1.2); /* Ajuste o valor de escala conforme necessário */
font-size: 28px; /* Ajuste o tamanho da fonte conforme necessário */
}
img {
max-width: 500px;
max-height: 450px;
margin: auto;
display: block;
}
figcaption {
font: italic smaller sans-serif;
padding: 0px;
text-align: center;
font-size: 18px;
}
blockquote {
padding: 5px;
}
footer {
padding: 0px;
}
.depoimentos {
font-size: 18px;
padding: 10px;
color: white;
background-image: linear-gradient(to right, #4CB8C4 0%, #3CD3AD 51%, #4CB8C4 100%);
}
.content {
display: flex;
align-items: center; /* Alinhar verticalmente */
gap: 20px; /* Espaçamento entre texto e imagem */
}
.depoimentos_img {
max-width: 400px;
max-height: 350px;
margin: auto;
display: block;
}
.name {
font-size: 23px;
text-align: right;
padding: 5px;
}
.jogo {
text-align: center;
}
.jogo p {
font-size: 20px;
padding: 20px;
}
.rodape {
font-size: 18px;
padding: 40px 0;
text-align: center;
background: rgb(50, 48, 96);
color: white;
}
.rodape img {
max-height: 40px; /* Ajuste a altura da imagem */
}
.rodape .redes-sociais {
display: flex;
justify-content: center; /* Centralizar horizontalmente */
margin: 0 20px;
}
.copyright {
color: #FFFFFF;
font-size: 13px;
margin: 20px 0 0;
padding: 10px;
}