-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (75 loc) · 1.55 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
body{
background-image: url("./bg.jpg");
background-repeat: no-repeat;
background-size:cover;
overflow:hidden;
height: 100vh;
}
.container{
display: flex;
justify-content: center;
flex-wrap: wrap;
padding: 20px 70px;
color:#fff
}
.future-forecast{
display: flex;
color:white;
width:100%;
align-items: center;
justify-content: center;
}
.future-forecast .today{
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #eee;
border-radius: 10px;
padding:15px;
padding-right: 40px;
border-radius: 10px;
background: rgba(0,0,0,0.2)
}
.future-forecast .today .day{
padding: 5px 15px;
background: #3c3c44;
border-radius: 50px;
text-align: center;
}
.future-forecast .today .temp{
font-size: 18px;
padding-top: 15px;
}
.future-forecast .weather-forecast{
display: flex;
}
.weather-forecast .weather-forecast-item{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0 10px;
border: 1px solid #eee;
padding: 15px;
border-radius: 10px;
background: rgba(0,0,0,0.2)
}
.weather-forecast .weather-forecast-item .day{
padding: 5px 15px;
background: #3C3C44;
border-radius: 50px;
text-align: center;
}
.weather-forecast .weather-forecast-item .temp{
font-weight: 100;
font-size: 12px;
}
#loc{
background-color: transparent;
border: none;
border-bottom: 1px solid white;
color: #fff;
}
#loc::placeholder{
color: #fff;
}