Initial commit

This commit is contained in:
2026-05-20 18:25:15 +02:00
commit 95f0b4ff01
288 changed files with 90909 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
#main-wrapper {
flex-grow: 1;
display: flex;
flex-direction: column;
overflow: hidden;
}
#topbar {
height: 60px;
background-color: var(--bg2);
border-bottom: 1px solid var(--border);
display: flex;
align-items: center;
padding: 0 20px;
justify-content: space-between;
.mobile-toggle {
display: none;
background: none;
border: none;
color: var(--text);
cursor: pointer;
}
.search-bar {
display: flex;
align-items: center;
background-color: var(--bg);
border: 1px solid var(--border);
border-radius: 2px;
padding: 5px 10px;
width: 300px;
input {
background: none;
border: none;
color: var(--text);
outline: none;
margin-left: 8px;
width: 100%;
}
}
}
#content {
flex-grow: 1;
padding: 30px;
overflow-y: auto;
position: relative;
}