-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (50 loc) · 1.02 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.container {
width: 100%;
min-height: 100vh;
padding: 5%;
background-image: linear-gradient(rgba(0,8,51,0.9), rgba(0,8,51,0.9)), url(images/background.jpg);
background-position: center;
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
}
.search-bar {
width: 100%;
max-width: 700px;
background: rgba(255, 255, 255, 0.2);
display: flex;
align-items: center;
border-radius: 60px;
padding: 10px 20px;
backdrop-filter: blur(4px) saturate(180%);
}
.search-bar input {
background: transparent;
flex: 1;
border: 0;
outline: none;
padding: 24px 20px;
font-size: 20px;
color: #cac7ff;
}
::placeholder {
color: #cac7ff;
}
.search-bar button img {
width: 25px;
}
.search-bar button {
border: 0;
border-radius: 50%;
width: 60px;
height: 60px;
background: #58629b;
cursor: pointer;
}