-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (92 loc) · 1.69 KB
/
style.css
File metadata and controls
111 lines (92 loc) · 1.69 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
104
105
106
107
108
109
110
111
@import url('https://fonts.googleapis.com/css2?family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&display=swap');
*{
margin: 0;
padding: 0;
font-family: "Bona Nova SC", serif;
}
#map {
height: 100vh;
width: 65%;
/* border-radius: 0.5rem; */
}
body{
background-color: #051014;
}
.container {
background-color: #051014;
display: flex;
flex-direction: row;
color: white;
}
.weather{
padding: 1rem 3rem;
justify-content: top;
}
.gif{
margin: 1rem 3rem;
width: 15rem;
height: 15rem;
}
.icon{
color: black;
height: 3rem;
width: 3rem;
/* margin-right: 1rem; */
}
.weather-info{
display: flex;
align-items: center;
}
.detailsTitle{
font-size: 5vh;
font-weight: bold;
justify-content: center;
}
.weatherDetails{
font-size: 2.5vh;
line-height: 5vh;
margin: 3vh;
}
.loadMsg{
background-color: aliceblue;
color: black;
padding: 0.2vw 1vw;
border-radius: 1vw;
justify-content: center;
}
@media screen and (max-width: 768px) {
#map {
width: 100%;
height: 50vh;
}
.container {
background-color: #051014;
display: flex;
flex-direction: row;
flex-wrap: wrap;
color: white;
}
.weather {
padding: 1rem;
text-align: center;
}
.weather-info {
flex-direction: column;
align-items: flex-start;
}
.gif {
width: 35%;
height: 40%;
padding: 0;
margin: 0;
}
.weatherDetails{
font-size: 1rem;
line-height: 1.2rem;
margin: 1rem;
}
.weather-info{
display: flex;
flex-direction: row;
}
}