-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (60 loc) · 1.04 KB
/
Copy pathstyle.css
File metadata and controls
63 lines (60 loc) · 1.04 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
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
background-color: black;
}
.box{
width:90%;
max-width:470px;
background:linear-gradient(135deg, #00feba, #5b548a);
color:#fff;
margin: 100px auto 0;
border-radius:20px;
padding: 40px 35px;
text-align: center;
margin-bottom :100px; ;
}
.searchbox{
width:100%;
display:flex;
justify-content:space-between;
}
.searchbox input{
border:0;
outline:0;
background: #ebfffc;
color:#555;
padding:10px 25px;
height:60px;
border-radius :30px;
flex:1;
margin-right:16px;
font-size:18px;
}
.searchbox button {
border:0;
outline: 0px;
background: #ebfffc;
border-radius:50%;
width:60px;
height:60px;
cursor:pointer
}
.searchbox button img {
width:50px;
}
#cloudimg{
margin-top: 30px;
/* margin-right: 100px; */
}
.temp{
font-size: 80px;
font-weight: 500px
}
.cityname{
font-size: 60px ;
}