-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (94 loc) · 1.78 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
*{
box-sizing: border-box;
}
body{
background: rgb(7,115,255);
background: linear-gradient(90deg, rgba(7,115,255,1) 0%, rgba(9,241,229,1) 54%);
margin: auto;
padding: 10px;
}
.search{
display: flex;
align-items: center;
justify-content: center;
}
.searchBar{
width: 50%;
}
input{
text-align: center;
font-size: 18px;
font-weight: bold;
margin: 10px;
height: 50px;
border: 0px royalblue;
border-radius: 25px;
}
button{
border-radius: 50%;
border: none;
cursor: pointer;
transition: transform 0.3s ease-in-out;
border: none;
box-shadow: 0 5px #999;
display: inline-block;
outline: none;
}
button:hover{
transform: scale(1.2, 1.2);
background-color: white;
}
button:active{
background-color: rgb(69, 209, 227);
box-sizing: 0 5px gray;
transform: translateY(2px);
}
#button{
width: 50px;
height: 50px;
}
.city{
display: flex;
align-items: center;
justify-content: center;
font-size: 25px;
color: whitesmoke;
font-family: Arial, Helvetica, sans-serif;
}
.temp img
{
width: 200px;
height: 200px;
}
.hov{
transition: transform 0.3s ease-in-out;
}
.hov:hover{
transform: scale(1.2, 1.2);
}
.temp{
display: flex;
align-items: center;
justify-content: center;
}
.temparature{
text-align: center;
color: whitesmoke;
font-size: large;
}
.humair{
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: whitesmoke;
font-size: large;
}
.humair img{
width: 100px;
height: 100px;
}
.humidity, .air_flow{
padding-left: 100px;
padding-right: 100px;
}