-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.css
126 lines (106 loc) · 1.87 KB
/
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
126
*{border:1px dotted brown;}
header {
background-color: #BBB;
padding: 10px 0;
}
nav {
position: absolute;
top: 110px;
right: 150px;
}
nav li {
display: inline;
margin: 0 0 0 15px
}
.opcionesDiv {
position: relative;
width: 940px;
margin: 0 auto;
}
nav a {
text-transform: uppercase;
color: #000;
font-weight: 700;
font-size: 22px;
text-decoration: none;
}
main {
width: 960px;
margin: 10px auto;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 20px;
}
main label {
display: block;
margin-bottom: 10px;
}
main label>div {
margin: 0 0 0 30px;
border: 1px dotted blue;
width: 30%;
}
main input {
font-size: 22px;
padding: 3px 5px;
width: 50%;
}
main input[type="radio"], main input[type="checkbox"] {
display: inline;
vertical-align: top;
width: 22px;
height: 22px;
margin: 0;
}
main input[type="submit"] {
width: 120px;
background: orange;
font-weight: bold;
color: #fff;
float: right;
margin: 0 20% 10px;
border-radius: 5px;
transition: 0.3s all;
cursor: pointer;
}
main input[type="submit"]:hover {
background: rgb(220, 100, 1);
transform: scale(1.05) rotate(-4deg)
}
main textarea {
resize: vertical;
font-family: inherit;
font-size: inherit;
}
main legend {
margin-bottom: 25px;
}
main select {
font-size: inherit;
cursor: pointer;
}
table {
border: 1px dotted navy;
margin: 40px;
}
table thead {
background: #555;
color: #fff;
font-weight: bold;
}
td, th {
padding: 7px 16px;
border: 1px dotted #333;
vertical-align: middle;
text-align: center;
}
footer {
display: block;
text-align: center;
background: url("imagenes/bg.jpg");
padding: 40px;
color: white;
font-size: small;
}
footer p {
margin: 20px;
}