-
Notifications
You must be signed in to change notification settings - Fork 0
/
contato.css
101 lines (87 loc) · 1.81 KB
/
contato.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
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
}
header h1 {
margin: 0;
font-size: 2.5rem;
}
main {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center; /* Centraliza todo o conteúdo dentro de main */
}
section {
margin-bottom: 20px;
text-align: left; /* Ajusta o texto para o alinhamento desejado */
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
h2 {
color: #333;
font-size: 1.8rem;
margin-bottom: 10px;
}
form {
max-width: 500px;
margin: 0 auto;
text-align: left; /* Ajusta o texto para o alinhamento desejado */
}
label {
display: block;
margin-bottom: 8px;
font-weight: bold;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
}
button[type="submit"] {
background-color: #333;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
}
button[type="submit"]:hover {
background-color: #555;
}
#informacoes {
background-color: #f5f5f5;
padding: 20px;
border-radius: 8px;
text-align: center; /* Centraliza textos dentro da seção de informações */
}
footer {
text-align: center;
background-color: #333;
color: #fff;
padding: 10px 0;
position: absolute;
bottom: 0;
width: 100%;
}
footer p {
margin: 0;
font-size: 0.8rem;
}