Properly implemented the home animation sequence.

This commit is contained in:
g_it 2026-02-04 22:10:31 +01:00
commit 1b3ef37a16
Signed by untrusted user who does not match committer: g_it
GPG key ID: A2B0A7C06A054627
8 changed files with 246 additions and 387 deletions

50
content/assets/css/_chapter.css Executable file
View file

@ -0,0 +1,50 @@
@import url(_colours.css);
/*****************************
* CHAPTER
* Styling for chapter pages.
*****************************/
.md-content__inner,
.md-main__inner,
.md-grid,
html,
body,
* {
margin: 0;
padding: 0;
box-sizing: border-box;
max-width: none;
}
article,
.md-container {
min-height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
body {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: white;
width: 100%;
}
.container {
width: 100%;
height: 100%;
}
header,
.md-content .md-typeset h1 {
display: none !important;
}
article.md-content__inner.md-typeset:before,
article.md-content__inner.md-typeset:after {
content: none;
}