-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (89 loc) · 1.67 KB
/
style.css
File metadata and controls
102 lines (89 loc) · 1.67 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
*{
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;
}
#info{
line-height: 0.6rem;
color: #fff;
}
#info h3{
font-size: 35px;
font-weight: bold;
text-transform: uppercase;
margin: 0.6em;
}
#description{
text-transform: uppercase;
color: #fff;
}
#temp{
color: #fff;
font-size: 30px;
margin-top: 20px;
}
#searchIcon{
border: none;
background: transparent;
color: #fff;
font-size: 0.5rem;
}
#extraInfo{
position: absolute;
bottom: 5px;
width: 100%;
display: flex;
justify-content:space-around;
color: #fff;
padding-bottom:30px;
}
#extraInfo h5{
font-size:1.1rem ;
text-transform: uppercase;
}