-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContato.css
63 lines (48 loc) · 928 Bytes
/
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
/* Configurações do Formulário */
main {
width: 940px;
margin: 0 10px;
}
form {
margin: 40px 0;
}
form label, legend {
display: block;
font-size: 20px;
margin: 0 0 10px;
}
.entrada {
display: block;
margin: 0 0 20px;
padding: 5px 20px;
width: 50%;
}
.checkbox { margin: 20px 0; }
.enviar {
width: 40%;
padding: 15px 0;
background: orange;
color: white;
font-size: 20px;
font-weight: bold;
border: none;
border-radius: 5px;
transition: 0.5s all;
cursor: pointer;
}
/* Configurações da Tabela */
table { margin: 20px 0 40px; }
thead {
background-color: gray;
color: white;
font-weight: bold;
}
th, td {
border: 1px solid black;
padding: 5px 10px;
}
/* Configurações do Mouse */
.enviar:hover {
background: purple;
transform: scale(1.1);
}