proper sidebar thing :D

This commit is contained in:
etherware-novice 2024-07-24 18:22:00 -05:00
parent b08ce3b4af
commit 3abe3a6a4f
No known key found for this signature in database
GPG Key ID: 5DB73B4D57B9D701
3 changed files with 55 additions and 4 deletions

View File

@ -9,7 +9,15 @@
{% if page.neko == "true" %}
{% include neko.html %}
{% endif %}
{% include navigation.html %}
{{ content }}
<div class="columns">
<div class="left-sidebar">
{% include navigation.html %}
</div>
<div class="main-content">{{ content }}</div>
<div class="right-sidebar">
hello world
</div>
</div>
</body>
</html>

View File

@ -1,3 +1,17 @@
.current {
color: green
@import "sidebar";
body {
background-color: #2196F3;
color: black;
font-family: Verdana;
text-align: center;
margin: 1px;
cursor: url("/cursor.png"),auto;
}
h1 {
margin: 1px;
padding: 8px;
background-color: blue;
}

29
_sass/sidebar.scss Normal file
View File

@ -0,0 +1,29 @@
.columns {
max-width: 80%;
display: flex;
margin-top: 5px; margin-bottom: 0px;
margin-left: auto; margin-right: auto;
justify-content: space-around;
border: 1px solid black;
}
.left-sidebar {
background: darkgray;
padding: 10px;
overflow-y: scroll;
flex: 0 60px;
}
.main-content {
width: 60%;
flex: 5;
margin: 10px;
border: 1px solid black;
}
.right-sidebar {
background: darkgray;
flex: 1;
display: flex;
flex-direction: column;
}