-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
123 lines (109 loc) · 1.84 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-image: url("assets/backiee-296766.jpg");
}
.caixa{
background-color: black;
width: 400px;
text-align: center;
position: relative;
left: 480px;
top: 150px;
padding: 40px;
opacity: 0.8;
border-radius: 24px;
height: 400px;
width: 500px;
}
.Itens{
color: antiquewhite;
position: relative;
top: 20px;
font-family: 'Open Sans', sans-serif;;
}
.descricao{
text-transform: capitalize;
}
h2{
color: white;
font-size: 30px;
margin-bottom: 30px;
font-family: 'Open Sans', sans-serif;
}
input{
border: none;
outline: none;
padding: 10px;
border-radius: 24px;
font-size: 20px;
background-color: rgb(39, 37, 37);
color: white;
width: 80%;
}
.lupa{
height: 20px;
}
button{
border: none;
outline: none;
padding: 10px;
border-radius: 50px;
background-color: white;
opacity: 0.8;
float: right;
cursor: pointer;
}
#humidity{
margin-bottom: 50px;
}
button:hover{
background-color:rgb(75, 72, 72); ;
}
p{
font-size: 20px;
position: relative;
bottom: 10px;
}
.icone{
align-items: center;
margin-bottom: 10px;
}
@media (max-width: 1366px){
.caixa{
width: 100%;
position: relative;
left: 0px;
top: 450px;
}
.Itens{
display: flex;
flex-direction: column;
gap: 10px
}
}
@media only screen and (max-width: 767px) {
.caixa {
width: 100%;
position: relative;
height: 80%;
top: 200px;
}
.Itens {
position: relative;
left: 20px;
}
input {
width: 100%;
position: relative;
right: 30px;
}
button{
position: relative;
bottom: 43px;
left: 20px;
}
}