-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (117 loc) · 1.88 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
min-height: 100vh;
justify-content: center;
align-items: center;
flex-direction: column;
background-color: #333;
font-family: Arial, Helvetica, sans-serif;
}
h1 {
color: #fff;
margin: 20px 0;
}
.busca {
display: flex;
width: 300px;
}
.busca #searchInput {
flex: 1;
padding: 10px;
outline: none;
font-size: 15px;
border-radius: 5px;
border: 0;
}
.busca button {
padding: 10px;
font-size: 15px;
border: 0;
background-color: #555;
color: #fff;
border-radius: 5px;
margin-left: 10px;
cursor: pointer;
}
.busca button:hover {
background-color: #444;
}
.resultado {
width: 300px;
display: none;
border: 1px dotted #fff;
margin-top: 20px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 0.2);
}
.titulo {
width: 100%;
color: #fff;
font-size: 25px;
font-weight: bold;
text-align: center;
padding: 20px;
}
.info {
display: flex;
width: 100%;
}
.info .temp {
flex: 1;
text-align: center;
}
.info .vento {
flex: 1;
text-align: center;
}
.tempTitulo,
.tempDescrition,
.ventoTitulo {
color: #777;
font-size: 16px;
margin-bottom: 5px;
}
.tempInfo,
.ventoInfo {
color: #fff;
font-size: 30px;
font-weight: bold;
}
.tempInfo sup {
font-size: 15px;
font-weight: normal;
}
.ventoInfo span {
font-size: 15px;
font-weight: normal;
}
.ventoArea {
width: 50px;
height: 50px;
border: 1px solid #fff;
border-radius: 50%;
margin: auto;
margin-top: 20px;
padding-left: 25px;
padding-top: 25px;
}
.ventoPonto {
width: 15px;
height: 1px;
background-color: #fff;
transform-origin: left;
}
.aviso {
color: #fff;
padding-top: 20px;
}
footer {
margin-top: 20px;
color: #fff;
font-size: 13px;
}