-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFormulario de contacto.css
125 lines (93 loc) · 1.76 KB
/
Formulario de contacto.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import url(https://fonts.googleapis.com/css?family=Noto+Sans);
.contact_form{
width: 460px;
height: auto;
margin: 80px auto;
border-radius: 10px;
padding-top: 30px;
padding-bottom: 20px;
background-color: grey;
padding-left: 30px;
}
input{
background-color: grey;
width: 408px;
height: 40px;
border-radius: 5px;
border-style: solid;
border-width: 1px;
border-color: #ab4493;
margin-top: 10px;
padding-left: 10px;
margin-bottom: 20px;
}
textarea{
background-color: #fbfbfb;
width: 405px;
height: 150px;
border-radius: 5px;
border-style: solid;
border-width: 1px;
border-color: #ab4493;
margin-top: 10px;
padding-left: 10px;
margin-bottom: 20px;
padding-top: 15px;
}
label{
display: block;
float: center;
}
button{
height: 45px;
padding-left: 5px;
padding-right: 5px;
margin-bottom: 20px;
margin-top: 10px;
text-transform: uppercase;
background-color: #ab4493;
border-color: #ab4493;
border-style: solid;
border-radius: 10px;
width: 420px;
cursor: pointer;
}
button p{
color: #fff;
}
span{
color: #ab4493;
}
.aviso{
font-size: 13px;
color: #0e0e0e;
}
h1{
font-size: 39px;
text-align: letf;
padding-bottom: 20px;
color: #ab4493;
}
h3{
font-size: 16px;
padding-bottom: 30px;
color: #0e0e0e;
}
p{
font-size: 14px;
color: #0e0e0e;
}
::-webkit-input-placeholder {
color: #a8a8a8;
}
::-webkit-textarea-placeholder {
color: #a8a8a8;
}
.formulario input:focus{
outline:0;
border: 1px solid #97d848;
}
.formulario textarea:focus{
outline:0;
border: 1px solid #97d848;
}