-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
119 lines (106 loc) · 2.17 KB
/
index.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
*{
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Montserrat','sans-serif';
}
#app{
position: relative;
width: 414px;
height: 420px;
display: block;
margin: 20px auto;
text-align: center;
padding: 40px 0px;
overflow: hidden;
border-radius: 45px;
background-image: linear-gradient(
325deg,
hsl(240deg 97% 55%) 0%,
hsl(240deg 97% 65%) 32%,
hsl(240deg 97% 70%) 59%,
hsl(240deg 96% 75%) 74%,
hsl(240deg 96% 79%) 84%,
hsl(240deg 96% 82%) 90%,
hsl(240deg 96% 85%) 94%,
hsl(240deg 96% 88%) 97%,
hsl(240deg 96% 91%) 99%,
hsl(240deg 96% 93%) 100%,
hsl(240deg 96% 96%) 100%,
hsl(240deg 95% 98%) 100%,
hsl(0deg 0% 100%) 100%
);
}
#searchBar {
display: flex;
padding: 0 40px;
margin-bottom: 30px;
}
#searchBarInput{
background-color: none;
border : none;
outline: none;
width: 90%;
background: transparent;
color: #fff;
border-bottom: solid 1px lightblue;
}
input ::placeholder{
color: #fff;
opacity: 0.6;
}
#searchIcon {
border: none;
background-color: transparent;
color: #fff;
font-size: 1.5rem;
}
#temperature {
background: rgb(206, 206, 206);
border-radius: 500px;
width: 50px;
height: 50px;
text-align: center;
display: block;
margin: auto;
box-shadow: 0 30px 20px #1d1d1d36;
margin: auto;
margin-top: 30px;
margin-bottom: 300px;
}
#temp-img {
margin-bottom:-30px;
}
#description {
color: #fff;
}
#temp {
padding-top: 10px;
font-size: 1rem;
color: black;
}
#temperature p {
font-size: 14px;
}
#temperature h2 {
margin: 0;
font-size: 60px;
font-weight: 300;
}
.extra-info{
position: absolute;
bottom: 5px;
width: 100%;
display: flex;
justify-content: space-around;
color:#fff;
padding-bottom: 30px;
}
.extra-info h5{
font-size: 1.1rem;
text-transform: uppercase;
}
#info{
font-size: medium;
text-transform: uppercase;
}