-
Notifications
You must be signed in to change notification settings - Fork 0
/
weather.css
67 lines (67 loc) · 1.17 KB
/
weather.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
*{
margin: 0;
padding: 0;
font-family: 'Times New Roman', Times, serif;
box-sizing: border-box;
}
.head{
display:flex;
justify-content: center;
align-items: center;
margin-top: 10px;
color: rgb(148, 20, 15);
font-size: larger;
font-weight:bolder ;
}
body{
background-color: rgb(171, 223, 156);
}
.card{
width:90%;
max-width:470px;
background-color: rgb(13, 177, 174);
color:black;
margin:100px auto 0;
padding:40px 35px;
border-radius: 25px;
text-align: center;
}
.search{
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
}
.search input{
margin-right: 5px;
padding:10px 25px;
background-color: rgb(13, 177, 174);
color: black;
flex:1;
height:auto;
width:auto;
font-size: 18px;
}
.search button{
cursor:pointer;
height: 125%;
width:100%;
}
.weather{
margin-top: 30px;
}
.weather h1{
font-size: 50px;
font-weight: 200;
}
.weather h2{
font-size: 30px;
font-weight: 100;
}
.details{
display: flex;
align-items: center;
justify-content: space-around;
padding:0 30px;
margin-top:50px;
}