mfw i accidentally commited from the static/pictures directory

This commit is contained in:
fzorb 2025-05-16 07:00:55 +03:00
parent 867d9e2277
commit 1189065cde
17 changed files with 160 additions and 0 deletions

59
static/css/main.css Normal file
View file

@ -0,0 +1,59 @@
@font-face {
font-family: mononoki;
src: url("/fonts/mononoki-Regular.ttf");
font-weight: regular;
}
@font-face {
font-family: mononoki;
src: url("/fonts/mononoki-Bold.ttf");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: mononoki;
src: url("/fonts/mononoki-Italic.ttf");
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: mononoki;
src: url("/fonts/mononoki-BoldItalic.ttf");
font-weight: bold;
font-style: italic;
}
body {
background-size: 10px 10px;
background-color: #282828;
background-image:
linear-gradient(to right, #3c3836 1px, transparent 1px),
linear-gradient(to bottom, #3c3836 1px, transparent 1px);
color: #f9f5d7;
font-family: mononoki, monospace;
}
.index-container {
max-width: 500px;
margin: 0 auto;
background-color: #1d202199;
padding: 16px;
}
.nav {
text-align: center;
}
a {
color: #8ec07c
}
.index-container h1 {
margin-bottom: 0;
margin-top: none;
text-align: center;
display: block;
}