-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (86 loc) · 1.43 KB
/
style.css
File metadata and controls
103 lines (86 loc) · 1.43 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
body {
font-family: Arial, sans-serif;
background-color: #1976d2;
color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.weather-container {
background-color: #42a5f5;
border-radius: 20px;
padding: 20px;
width: 350px;
text-align: center;
}
.weather-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
width: 60px;
height: 60px;
}
.search-box {
/* display: flex;
align-items: center; */
background-color: white;
border-radius: 20px;
padding: 5px 10px;
}
.search-box input {
border: none;
outline: none;
width: 100px;
}
.search-box button {
background: none;
border: none;
font-size: 18px;
cursor: pointer;
}
.weather-info {
margin-top: 20px;
}
.weather-icon {
font-size: 50px;
}
.weather-details {
margin-top: 10px;
}
.temperature {
font-size: 48px;
font-weight: bold;
}
.condition {
font-size: 24px;
}
.location {
margin-top: 10px;
font-size: 18px;
}
.weather-stats {
display: flex;
justify-content: space-around;
margin-top: 20px;
}
.humidity, .wind-speed {
display: flex;
align-items: center;
}
.show-more {
margin-top: 20px;
}
.show-more a {
color: black;
text-decoration: none;
cursor: pointer;
}
.extra-info {
display: none;
margin-top: 20px;
text-align: left;
}