start updating doc style

This commit is contained in:
2024-05-24 09:56:26 +02:00
parent 8e127a1cb5
commit c742d037a6
2 changed files with 29 additions and 24 deletions

View File

@@ -17,20 +17,22 @@ html, body {
}
body {
height: 100vh;
display: grid;
display: block;
background-color: #648cab;
grid-template-areas:
'header header header header header'
'menu main main main main'
'menu main main main main'
'menu main main main main'
'menu main main main main'
'menu main main main main'
'menu main main main main'
'menu main main main main'
'menu main main main main'
'footer footer footer footer footer';
}
.doc-main {
display: flex;
}
@media only screen and (min-width: 1000px) {
body {
height: 100vh;
}
.doc-main {
display: flex;
height: 85vh;
}
}
.title-wrapper {

View File

@@ -13,6 +13,8 @@
</head>
<body>
<div id="nav"></div>
<div class="doc-main">
<div id="side-bar"></div>
<div id="backToTop" onclick="backToTop();"></div>
<div id="docPage">
@@ -26,6 +28,7 @@
<p>If you like this project, please consider giving it a star on GitHub and donating to help fund the development costs.</p>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="/docs/js/index.js"></script>
</body>