-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavbar.css
54 lines (46 loc) · 801 Bytes
/
navbar.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
.navbar{
width: 100%;
background: black;
position:sticky;
height:50px;
top:0;
overflow: hidden;
z-index: 99;
display:flex;
align-items: center;
justify-content: center;
}
.navbar-content{
margin:10px;
width: 100vw;
max-width: 1024px;
height:100%;
display:flex;
align-items: center;
justify-content: space-between;
}
.navbar-content p{
font-size: 100%;
}
.back-button{
visibility: hidden;
}
.navbar-content img{
display: block;
height:80%;
}
/* Page content */
.content {
/* height:calc(100vh - 100px); */
display:flex;
justify-content: center;
align-items: center;
width: 100vw;
/* position: relative; */
}
/*
.content img{
width: 100%;
height: 100%;
object-fit: cover;
} */