-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo.css
52 lines (52 loc) · 798 Bytes
/
estilo.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
.formulario{
width: 400px;
padding: 30px;
border: 10px solid #ccc;
}
.formulario p{
width: 100%
font-size: 1.5em;
}
.field{
width: 100%;
margin: 15px 0;
}
.field span{
padding-left: 10px;
font-size: 1.1em;
display: block;
width: 100%;
}
.radiobox label{
width: auto;
display: inline-block;
}
input[type=text],
input[type=email],
textarea{
width: 100%;
padding-left: 10px;
height: 30px;
line-height: 30px;
border-radius: 15px;
border: 1px solid #ccc;
outline: none;
}
textarea{
line-height: 20px;
padding: 10px;
height: 90px;
resize: none;
}
input[type=submit]{
display: block;
background-color: #ccc;
height: 35px;
border: none;
outline: 0;
cursor: pointer;
width: 100%;
margin: 0 auto;
text-align: center;
border-radius: 15px;
}