Initial commit

This commit is contained in:
2025-10-11 17:02:49 +02:00
commit 92056f073f
243 changed files with 27536 additions and 0 deletions

86
resources/css/app.css Normal file
View File

@@ -0,0 +1,86 @@
@font-face {
font-family: 'Oswald';
src: url('./Oswald/static/Oswald-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Oswald';
src: url('./Oswald/static/Oswald-Bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Oswald';
src: url('./Oswald/static/Oswald-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Oswald';
src: url('./Oswald/static/Oswald-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Oswald';
src: url('./Oswald/static/Oswald-SemiBold.ttf') format('truetype');
font-weight: 600;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Oswald';
src: url('./Oswald/static/Oswald-ExtraLight.ttf') format('truetype');
font-weight: 200;
font-style: normal;
font-display: swap;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 10px;
font-family: 'Oswald', Arial, sans-serif;
color: white;
font-weight: 300;
}
body {
min-height: 100vh;
}
a {
color: white;
text-decoration: none;
cursor: pointer;
}
a:hover {
text-decoration: underline;
}
img {
user-select: none;
}
.image-column {
text-align: center;
}
.image-container {
display: inline-block;
}