-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
50 lines (50 loc) · 942 Bytes
/
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
body{
background-color: rgb(253, 235, 216);
}
main{
width: 940px;
margin: 0 auto;
}
form{
margin: 40px 0;
}
form label, form legend{
display: block;
font-size: 20px;
margin: 0 0 10px;
}
.input-padrao{
display: block;
margin: 0 0 20px;
padding: 10px 25px;
width: 50%;
}
.checkbox{
margin: 20px 0;
}
.enviar{
width: 40%;
padding: 15px 0;
background: rgb(4, 80, 4);
color: white;
font-weight: bold;
font-size: 18px;
border: none;
border-radius: 5px;
transition: 1s all;
cursor: pointer;
}
.enviar:hover{
background: rgb(255, 63, 143);
transform: scale(1.2);
}
footer{
text-align: center;
padding: 40px 0;
}
.copyright{
color: white;
font-size: 13px;
background-color: rgba(43, 124, 43, 0.589);
margin: 20px 0 0;
}