v1.0.1 #1

Merged
DrMaxNix merged 2 commits from dev into main 2024-02-08 22:14:34 +01:00
2 changed files with 29 additions and 3 deletions

View File

@ -1,6 +1,6 @@
<?php
// VERSION //
static::$version = "1.0.0";
static::$version = "1.0.1";
// DEPENDENCIES //

View File

@ -28,6 +28,11 @@ html, body {
html {
font-size: 16px;
}
@media only screen and (max-width: 1000px) {
html {
font-size: 14px;
}
}
body {
flex-grow: 1;
@ -81,6 +86,16 @@ a {
background-color: var(--color-bg);
}
@media only screen and (max-width: 1600px) {
.page {
width: 70vw;
}
}
@media only screen and (max-width: 1000px) {
.page {
width: 90vw;
}
}
.heading {
position: relative;
@ -171,17 +186,28 @@ a {
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: nowrap;
flex-wrap: wrap;
gap: 0.5rem;
width: 50vw;
color: var(--color-gray);
}
@media only screen and (max-width: 1600px) {
.footer {
width: 70vw;
}
}
@media only screen and (max-width: 1000px) {
.footer {
width: 90vw;
}
}
.footer > * {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
flex-wrap: wrap;
gap: 0.5rem;
}