-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilocadastro.css
More file actions
28 lines (26 loc) · 816 Bytes
/
Copy pathestilocadastro.css
File metadata and controls
28 lines (26 loc) · 816 Bytes
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
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background: linear-gradient(to right, rgb(162, 226, 162), rgb(152, 152, 212)); /* Gradiente de verde para azul */
height: 100vh;
display: flex;
justify-content: center; /* Centraliza horizontalmente */
align-items: center; /* Centraliza verticalmente */
background-size: cover; /* Ajusta a imagem para cobrir toda a área */
}
.container {
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
max-width: 800px;
width: 100%;
}
.imagem-centralizada {
display: block;
margin-left: auto;
margin-right: auto;
width: 300px; /* Ajuste o tamanho conforme necessário */
height: auto; /* Mantém a proporção da imagem */
}