-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (74 loc) · 1.31 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
background-image: url("https://source.unsplash.com/1600x900/?landscape");
}
.caixa-maior {
background:#000000;
opacity: 0.8;
border-radius: 25px;
padding: 20px;
width: 95%;
max-width: 450px;
}
.input-cidade {
border: none;
outline: none;
padding: 10px;
border-radius: 25px;
font-size: 20px;
background-color: #7c7c7c2b;
color: #ffffff;
width: calc(100% - 100px);
}
.botao-busca{
border: none;
outline: none;
padding: 10px;
border-radius: 50px;
background-color: #7c7c7c2b;
cursor: pointer;
float: right;
}
.botao-busca:hover {
background-color: #7c7c7c6b;
}
.img-busca {
width: 20px;
}
.cidade {
color: #ffffff;
font-size: 28px;
font-weight: 300;
}
.caixa-media{
margin-top: 30px;
}
.temp {
font-size: 20px;
color: #ffffff;
margin-top: 30px;
}
.caixa-menor {
display: flex;
align-items: center;
margin-top: 20px;
}
.texto-previsao {
color: #ffffff;
margin-left: 20px;
text-transform: capitalize;
}
.umidade {
color: #ffffff;
margin-top: 20px;
}