-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
86 lines (86 loc) · 1.54 KB
/
Copy pathindex.css
File metadata and controls
86 lines (86 loc) · 1.54 KB
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
*{
margin: 0;
border: 0;
}
body{
background-color: #222;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
}
.card{
border-radius: 50px;
padding: 25px;
height: 85vh;
width: 70vw;
text-align: center;
background-color:white;
}
.serchbar{
height: 10%;
width: 100%;
display: flex;
justify-content:space-around;
align-items: center;
}
#input{
background-color: rgba(206, 205, 205, 0.989);
width: 80%;
padding: 10px;
border-radius: 5px;
}
#ss{
height: 25px;
}
#sbtn{
height: 100%;
width: 50px;
border-radius:100%;
}
#sbtn:hover{
background-color: #f5f5f5;
cursor:pointer;
}
.details{
justify-content: space-around;
align-items: center;
display: flex;
height: 40%;
width: 100%;
}
.col1{
display: flex;
justify-content: space-evenly;
align-items: center;
height: 100px;
width: 225px;
background-color: darkblue;
color: white;
border-radius: 100px;
}
.col2{
border-radius: 100px;
background-color: darkblue;
color: white;
display: flex;
justify-content: space-evenly;
align-items: center;
height: 100px;
width: 225px;
}
#hu,#wind{
height: 50px;
}
.wind,.humidity{
font-size: 25px;
}
.col1:hover, .col2:hover{
background-color: lightgrey;
color:black;
transition: all 1s linear;
}
.ctry{
margin-top: 10px;
}