base menu, about page, atom feed
This commit is contained in:
parent
013ca30765
commit
0b64fd58a1
21 changed files with 284 additions and 47 deletions
|
|
@ -50,3 +50,24 @@ header {
|
|||
}
|
||||
}
|
||||
|
||||
.burger {
|
||||
cursor: pointer;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
nav.overlay {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
top: 42px;
|
||||
left: 0;
|
||||
background: rgb(16, 16, 16);
|
||||
opacity: 0;
|
||||
z-index: 100;
|
||||
padding: 4px;
|
||||
display: none;
|
||||
&.active {
|
||||
display: block;
|
||||
opacity: 0.9;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ video, .poster {
|
|||
.content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
min-height: max(100vh, 100%);
|
||||
max-width: 1000px;
|
||||
margin: auto;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue