fixed source code link; footer height on sites with less content maximized

This commit is contained in:
Vrifox 2020-09-21 11:21:54 +02:00
parent 740f1318ce
commit 2f67080912
8 changed files with 117 additions and 48 deletions

View file

@ -7,7 +7,6 @@ footer {
.container {
display: flex;
align-items: center;
max-width: none;
.website-subnav {
margin-left: auto;
ul {
@ -24,9 +23,19 @@ footer {
}
}
}
footer::after {
content: '';
background: rgb(30, 30, 45);
position: fixed;
height: 10000px;
width: 100vw;
overflow: hidden;
}
@media (max-width: 600px) {
footer {
.container {
max-width: none;
.website-version {
order: 2;
padding: 10px 20px;

View file

@ -9,6 +9,10 @@ a:hover {
text-decoration: underline;
}
html {
scrollbar-width: thin;
scrollbar-color: rgb(255, 130, 130) rgb(60, 60, 90);
}
body {
background: rgb(40, 40, 60);
color: rgb(240, 240, 255);

View file

@ -5,7 +5,6 @@ nav {
.container {
display: flex;
align-items: center;
max-width: none;
.website-name {
a {
color: rgb(245, 245, 245);
@ -36,6 +35,7 @@ nav {
@media (max-width: 600px) {
nav {
.container {
max-width: none;
.website-nav {
padding: 0 20px;
}