-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (83 loc) · 1.34 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
body{
background-color: #222;
}
.card {
color: aliceblue;
width: 90%;
max-width: 470px;
height: 20%;
max-height: 700px;
margin: 100px auto 0;
text-align: center;
border-radius: 20px;
padding: 45px 35px;
background: linear-gradient(120deg, rgba(2, 0, 36, 1) 0%, rgba(0, 255, 248, 1) 100%);
}
.weather{
display: block;
}
.weather-icon{
height: 50px;
}
.temp{
font-family:sans-serif;
font-size: 4rem;
margin: 2px 2px;
}
h2{
margin: 20px 2px;
font-family: monospace;
font-size: 4rem;
}
.card button img{
height: 25px;
}
.search{
display: flex;
width: 100%;
}
.search button{
width: 60px;
height: 60px;
border-radius: 50%;
cursor: pointer;
margin: 10px auto 0;
}
.search input{
padding: 0px 40px;
height: 60px;
border-radius: 30px;
align-items: center;
justify-content: center;
flex: 1;
margin: 10px auto 0px;
}
.details{
margin: 30px 0;
display: flex;
}
.col{
font-family: monospace;
font-size: 1rem;
display: flex;
margin: 20px 30px;
}
.wind_speed{
font-size: 1.7rem;
}
.Humidity{
font-size: 1.7rem;
}
.col p{
margin: 8px 2px;
}
.col img{
margin: 20px 20px;
height: 40px;
width: 40px;
}
.made_by{
color: aliceblue;
font-family: cursive;
font-size: 1.5rem;
}