-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
87 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
/* Reset configurações originais dos navegadores*/
* {
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;
background-image: url("https://source.unsplash.com/1600x900/?landscape");
}
/* Caixa de infomações */
.caixa-maior {
background-color: #000000;
width: 95%;
max-width: 420px;
opacity: 0.8;
padding: 20px;
border-radius: 25px;
}
input {
border: none;
outline: none;
padding: 10px;
border-radius: 24px;
font-size: 20px;
background-color: #7c7c7c6b;
color: #ffffff;
width: 300px;
}
button {
border: none;
outline: none;
padding: 10px;
border-radius: 50px;
background-color: #7c7c7c6b;
float: right;
cursor: pointer;
margin-right: 15px;
}
button:hover {
background-color: #7c7c7c9b;
}
.caixa-media {
margin-top: 30px;
}
.caixa-menor {
display: flex;
margin-top: 30px;
align-items: center;
}
.lupa {
height: 20px;
}
h2 {
color: #ffffff;
font-size: 28px;
}
.temp {
color: #ffffff;
margin-top: 30px;
}
.descricao {
color: #ffffff;
text-transform:capitalize;
margin-left: 15px;
}
.umidade {
color: #ffffff;
margin-top: 30px;
}