50 lines
776 B
CSS
Executable file
50 lines
776 B
CSS
Executable file
@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;
|
|
}
|