-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
91 lines (76 loc) · 1.26 KB
/
styles.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
* {
box-sizing: border-box;
}
body {
background-color: #0d1117;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
color: white;
margin: auto;
}
main {
font-size: 18px;
margin-top: 1rem;
}
.label-input {
display: flex;
text-align: center;
}
i {
width: 50px;
padding: 12px;
background-color: #161b22;
text-align: center;
border-radius: 10px 0px 0px 10px;
}
input {
width: 100%;
padding: 0.5rem;
outline: none;
padding: 12px;
}
#logradouro, #bairro, #cidade, #UF, #cod-municipio, #DDD {
border-radius: 0px 10px 10px 0px;
}
input:focus {
border: 2px solid #610094;
}
#btn-consultar {
padding: 0.75rem;
cursor: pointer;
background-color: #610094;
color: white;
outline: 0;
border: none;
border-radius: 0px 10px 10px 0px;
}
#btn-consultar:hover {
background-color: #3F0071;
}
header {
background-color: #161b22;
padding: 1rem;
margin-bottom: 2rem;
}
.label-input {
margin-bottom: 1rem;
}
header h1 {
text-align: center;
}
#footer {
position: fixed;
left: 0px;
bottom: 0px;
background-color: #161b22;
width: 100%;
}
#footer p {
text-align: center;
text-decoration: none;
}
#footer a {
text-decoration: none;
color: #EAD41C;
font-size: 18px;
}