-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnavbar.css
More file actions
62 lines (53 loc) · 1.35 KB
/
navbar.css
File metadata and controls
62 lines (53 loc) · 1.35 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
.navigation {
position: sticky;
top: 0px;
left: 0px;
z-index: 1;
}
.navigation nav {
display: flex;
justify-content: space-between;
/* border-bottom: 1px solid black; */
padding-left: 15px;
padding-right: 15px;
/* background-color: rgba(245, 245, 245, 0.568); */
backdrop-filter: blur(8px);
background-color: rgba(0, 0, 0, 0.171);
background-image: linear-gradient(to right, rgba(0, 153, 255, 0.596), rgba(255, 255, 0, 0.356));
overflow: hidden;
}
.logo {
background-image: url(images/logo.png);
background-size: cover;
/* box-shadow: 0 0 8px; */
border-radius: 50%;
/* background-image: linear-gradient(blue, green); */
width: 112px;
height: 50px;
background-repeat: no-repeat;
cursor: pointer;
/* margin-top: 4px; */
/* position: relative; */
/* left: 50px; */
/* margin-left: 23px; */
/* background-color: aliceblue; */
/* background-image: url(images/logo.png); */
}
.nav_links {
display: flex;
}
.nav_links li {
list-style: none;
padding: 15px;
}
.nav_links li a {
text-decoration: none;
text-align: center;
font-family: 'Roboto', sans-serif;
font-weight: bold;
color: rgb(255, 255, 255);
}
.nav_links li a:hover {
color: green;
}