Updated layout, added ability to make new sections, added new block types, increased layout size by 30%

This commit is contained in:
nathan
2026-05-01 14:37:36 -04:00
parent a472255a94
commit d0200f3975
7 changed files with 841 additions and 35 deletions

View File

@@ -77,7 +77,7 @@ body {
/* Sidebar Styling */
.sidebar {
width: 420px;
width: 35%;
background: var(--color-white);
box-shadow: var(--shadow-lg);
display: flex;
@@ -85,20 +85,21 @@ body {
z-index: 100;
transition: transform var(--transition-normal);
position: relative;
order: 2;
}
.sidebar.collapsed {
transform: translateX(-370px);
transform: translateX(370px);
}
.sidebar-toggle {
position: absolute;
right: -30px;
left: -30px;
top: 20px;
width: 30px;
height: 60px;
background: var(--color-white);
border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
border-radius: var(--radius-sm) 0 0 var(--radius-sm);
box-shadow: var(--shadow-md);
display: flex;
align-items: center;
@@ -266,6 +267,7 @@ body {
flex: 1;
position: relative;
background: var(--color-secondary);
order: 1;
}
#map {