-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
97 lines (84 loc) · 1.71 KB
/
app.css
File metadata and controls
97 lines (84 loc) · 1.71 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
body {
background: url("https://hdqwalls.com/download/stranger-things-season-3-2019-4k-5k-38-1920x1080.jpg") center / cover no-repeat;
height: 100vh;
margin: 0;
display: flex;
justify-content: center;
}
.menu-bar {
border-radius: 25px;
height: fit-content;
display: inline-flex;
background-color: rgba(0, 0, 0, .4);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
align-items: center;
padding: 0 10px;
margin: 50px 0 0 0;
}
li {
list-style: none;
color: white;
font-family: sans-serif;
font-weight: bold;
padding: 12px 16px;
margin: 0 8px;
position: relative;
cursor: pointer;
white-space: nowrap;
}
li:before {
content: " ";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: -1;
transition: .2s;
border-radius: 25px;
}
li:hover {
background: linear-gradient(to bottom, #0ec5a0, #d2d1d3);
box-shadow: 0px 3px 20px 0px black;
transform: scale(1);
border-radius: 50px;
color: black;
}
a {
all: unset;
}
div {
display: inline;
}
.search {
border-radius: 25px;
height: fit-content;
background-color: rgba(0, 0, 0, .4);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
align-items: center;
padding: 0 10px;
margin: 50px 0 0 70px;
list-style: none;
color: white;
font-family: sans-serif;
font-weight: bold;
padding: 12px 16px;
cursor: pointer;
white-space: nowrap;
display: block;
}
.search:hover #inputparent {
background-color: red;
display: block;
}
.fa fa-search {
padding: 12px 16px;
}
#input-bar {
border-radius: 50px;
}
h1 {
color: green;
}