move js and css to their own directories

This commit is contained in:
Pierre de Lacroix 2025-11-14 15:43:48 +01:00
parent 6429c6a575
commit bc8b5dc172
Signed by untrusted user who does not match committer: lateralus23
GPG key ID: C20C17EC0D98B2DF
7 changed files with 15 additions and 15 deletions

33
css/poster.css Normal file
View file

@ -0,0 +1,33 @@
body {
background: #434343;
}
aside {
background: url(../assets/notebook.jpg);
width: fit-content;
}
main {
overflow: hidden;
max-width: 21cm;
aspect-ratio: 1 / 1.414;
box-shadow: 5px 5px 5px #00000085;
margin: 50px auto;
position: relative;
}
@page {
size: portrait;
margin: 0;
}
@media print {
body main {
margin: 0 !important;
}
aside, footer, nav {
display: none;
}
}