-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
124 lines (105 loc) · 2.6 KB
/
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
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
* { margin: 0; padding: 0; border: 0 }
body { background: url(bg.png) }
legend { display: none }
#apresentacao {
width: 960px;
margin: 1% auto;
overflow: hidden;
}
h1 {
font: 25px 'Open Sans', Arial;
text-align: center;
color: #555;
text-shadow: 2px 2px 0 #ccc;
margin-bottom: 20px;
letter-spacing: -0.5px
}
.campos {
width: 740px;
margin: 0 auto 15px;
overflow: hidden;
}
.campos label {
background: #333;
border-radius: 6px 0 0 6px;
color: #f0f0f0;
cursor: pointer;
display: block;
height: 20px;
float: left;
font: 15px 'Open Sans',Arial;
padding: 7px 13px;
width: 70px;
}
.campos input[type="text"] {
background: #FFF;
color: #666;
display: block;
float: left;
font: 15px 'Open Sans',Arial;
height: 16px;
padding: 9px;
width: 475px;
}
.campos input[type="button"] {
background: #2679A5;
border-radius: 0 6px 6px 0;
color: #FFF;
cursor: pointer;
height: 34px;
font: 15px 'Open Sans',Arial;
padding: 2px 13px 6px;
width: 150px;
-webkit-transition: background .2s ease-in;
-moz-transition: background .2s ease-in;
-ms-transition: background .2s ease-in;
-o-transition: background .2s ease-in;
transition: background .2s ease-in;
}
.campos input[type="button"]:hover { background: #12587C }
#mapa {
width: 940px;
height: 400px;
border: 10px solid #ccc;;
margin-bottom: 20px;
}
input[type="submit"] {
background: #2679A5;
border-radius: 6px;
color: #FFF;
cursor: pointer;
display: block;
margin: 0 auto;
font: 20px 'Open Sans',Arial;
padding: 7.5px 15px;
width: 250px;
-webkit-transition: background .2s ease-in;
-moz-transition: background .2s ease-in;
-ms-transition: background .2s ease-in;
-o-transition: background .2s ease-in;
transition: background .2s ease-in;
}
input[type="submit"]:hover { background: #12587C }
.autores { background: #e5e3df; bottom: 0; border-radius: 5px 5px 0 0; padding: 5px 10px; position: fixed; left: 38%; width: 345px }
.autores p { color: #333; font: 13px Tahoma, Arial }
.autores p a { color: #333; text-decoration: none }
.autores p a:hover { text-decoration: underline }
/* =============== Estilos do autocomplete =============== */
.ui-autocomplete {
background: #fff;
border-top: 1px solid #ccc;
cursor: pointer;
font: 15px 'Open Sans',Arial;
margin-left: 3px;
width: 493px !important;
position: fixed;
}
.ui-autocomplete .ui-menu-item {
list-style: none outside none;
padding: 7px 0 9px 10px;
}
.ui-autocomplete .ui-menu-item:hover { background: #eee }
.ui-autocomplete .ui-corner-all {
color: #666 !important;
display: block;
}