WeatherPage.scss
2.21 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
#body {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
flex-direction: column;
border-top: 2px solid;
border-bottom: 2px solid;
.address {
display: flex;
justify-content: center;
align-items: center;
margin-top: 150px;
font-size: 30px;
}
.today_weather {
display: flex;
justify-content: center;
align-items: center;
border: 2px solid;
width: 50%;
margin-top: 30px;
margin-bottom: 10px;
.today_now_weather_info {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-right: 30px;
}
.days {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
flex-direction: column;
margin-top: 25px;
margin-bottom: 25px;
margin-left: 15px;
margin-right: 200px;
}
.today_whole_weather{
display: flex;
flex-direction: row;
}
}
.tommorrow_weather {
display: flex;
justify-content: center;
align-items: center;
border: 2px solid;
width: 50%;
margin-top: 20px;
margin-bottom: 20px;
.days {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
flex-direction: column;
margin-top: 25px;
margin-bottom: 25px;
margin-left: 15px;
margin-right: 200px;
}
.tommorrow_weather_info {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-right: 30px;
.tommorrow_whole_weather{
display: flex;
flex-direction: row;
}
}
}
.weather-btn-area {
display: flex;
justify-content: center;
margin-top: 20px;
margin-bottom: 10px;
button {
width: 150px;
height: 60px;
font-size: 15px;
font-weight: bold;
background-color:rgb(255, 253, 238);
cursor: pointer;
}
}
}