-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (96 loc) · 1.79 KB
/
style.css
File metadata and controls
97 lines (96 loc) · 1.79 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
*{
box-sizing:border-box;
margin:0;
padding:0;
font-family: 'Montserrat', sans-serif;
}
p, h5{
margin:0.5rem;
}
#app{
position:relative;
width:414px;
height:420px;
display:block;
margin: 20px auto;
text-align:center;
padding:40px 0;
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;
justify-content:space-between;
padding:0 40px;
margin-bottom: 30px;
color:#fff;
}
#searchBarInput{
background-color:none;
border:none;
outline:none;
width:90%;
background:none;
font-size:1.4rem;
color:#fff;
border-bottom: solid 1px lightblue;
}
input::placeholder{
color:#fff;
opacity:0.6;
}
#searchIcon{
border:none;
background-color:transparent;
font-size:1.5rem;
color:#fff;
}
#info{
color:#fff;
line-height:0.5rem;
}
#info h4{
font-size:40px;
text-transform:uppercase;
margin:2rem;
font-weight:bold;
}
#description{
color:#fff;
text-transform:uppercase;
}
#temp{
color:#fff;
margin-top:20px;
font-size:30px;
}
#extraInfo{
position:absolute;
bottom:5px;
width:100%;
display:flex;
justify-content:space-around;
border: black 2px;
color:#fff;
padding-bottom:30px;
}
#extraInfo h5{
font-size:1.1rem;
text-transform:uppercase;
}