refactor: make styles, js common for posts

This commit is contained in:
Barrett Ruth 2024-06-15 14:35:39 -05:00
parent 3865436f75
commit 2a8c3194d1
7 changed files with 143 additions and 87 deletions

36
styles/post.css Normal file
View file

@ -0,0 +1,36 @@
@font-face {
font-family: "Signifier";
src: url("public/signifier/Signifier-Regular.ttf");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Signifier";
src: url("public/signifier/Signifier-Italic.ttf");
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: "Signifier";
src: url("public/signifier/Signifier-Bold.ttf");
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: "Signifier";
src: url("public/signifier/Signifier-BoldItalic.ttf");
font-weight: bold;
font-style: italic;
}
html,
body {
font-family: "Signifier", serif;
overflow: hidden;
margin: 0;
padding: 0;
height: 100%;
}