This commit is contained in:
pika 2025-03-30 19:57:41 +02:00
parent 6dd38036e7
commit 097b3dbf09
34 changed files with 1719 additions and 520 deletions

View file

@ -1,14 +1,35 @@
/* Custom styles for the app */
:root {
--background-color: #f5f8fa;
--text-color: #333;
--card-bg: #fff;
--border-color: #e3e8ee;
--sidebar-bg: #f0f2f5;
--sidebar-hover-bg: #e0e5ee;
--highlight-color: #3b82f6;
}
[data-bs-theme="dark"] {
--background-color: #1a2234;
--text-color: #e6e8eb;
--card-bg: #24304d;
--border-color: #374564;
--sidebar-bg: #151a27;
--sidebar-hover-bg: #1c2133;
--highlight-color: #3f8cff;
}
body {
background-color: var(--background-color);
color: var(--text-color);
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background-color: #f5f7fb;
color: #232e3c;
transition: background-color 0.3s ease;
}
.markdown-body {
padding: 1rem;
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.125);
background-color: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 4px;
}
@ -92,85 +113,160 @@ body {
/* Sidebar styles */
.sidebar {
width: 260px;
background-color: var(--sidebar-bg);
color: var(--text-color);
height: 100vh;
position: fixed;
top: 0;
left: 0;
bottom: 0;
z-index: 100;
background: #fff;
box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15);
width: 250px;
z-index: 1000;
overflow-y: auto;
transition: all 0.3s;
}
.sidebar-brand {
padding: 1.5rem;
padding: 1.5rem 1rem;
font-size: 1.25rem;
font-weight: 600;
display: flex;
align-items: center;
height: 64px;
color: var(--text-color);
}
.sidebar-brand-text {
font-size: 1.25rem;
font-weight: 600;
margin-left: 0.75rem;
}
.sidebar-nav {
padding: 0.75rem 1.5rem;
margin-left: 0.5rem;
}
.sidebar-heading {
padding: 0.75rem 1rem 0.5rem;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
color: #8898aa;
letter-spacing: 0.04em;
margin-top: 1.5rem;
margin-bottom: 0.75rem;
font-weight: 600;
color: var(--text-color);
opacity: 0.6;
}
.sidebar-item {
display: block;
padding: 0.675rem 1.2rem;
font-size: 0.875rem;
color: #525f7f;
border-radius: 0.375rem;
margin-bottom: 0.25rem;
font-weight: 500;
transition: all 0.15s ease;
padding: 0.5rem 1rem;
color: var(--text-color);
text-decoration: none;
border-radius: 0.25rem;
margin: 0.2rem 0.5rem;
transition: background-color 0.2s;
}
.sidebar-item:hover {
color: #5e72e4;
background: rgba(94, 114, 228, 0.1);
text-decoration: none;
background-color: var(--sidebar-hover-bg);
color: var(--text-color);
}
.sidebar-item.active {
color: #5e72e4;
background: rgba(94, 114, 228, 0.1);
background-color: var(--highlight-color);
color: white;
}
/* Main content */
.main-content {
margin-left: 250px;
padding: 1rem;
min-height: 100vh;
}
/* Header styles */
.page-header {
margin-bottom: 1.5rem;
}
.page-title {
font-weight: 600;
}
.main-content {
margin-left: 260px;
.page-pretitle {
color: #6c757d;
text-transform: uppercase;
font-size: 0.8rem;
letter-spacing: 0.05em;
}
/* Responsive sidebar */
@media (max-width: 992px) {
/* Auth pages */
body.auth-page {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
background-color: var(--background-color);
}
.auth-form {
max-width: 450px;
margin: 0 auto;
}
/* Port visualization */
.port-map {
overflow-x: auto;
}
.port-map-grid {
display: grid;
grid-template-columns: repeat(10, 1fr);
gap: 4px;
}
.port-item {
padding: 4px;
font-size: 10px;
text-align: center;
border-radius: 3px;
cursor: pointer;
user-select: none;
}
.port-item:hover {
opacity: 0.8;
}
/* Responsive tweaks */
@media (max-width: 768px) {
.sidebar {
left: -260px;
transition: left 0.3s ease;
transform: translateX(-100%);
}
.sidebar.show {
left: 0;
transform: translateX(0);
}
.main-content {
margin-left: 0;
}
.main-content.sidebar-open {
margin-left: 250px;
}
}
/* Theme switch */
#theme-toggle {
width: 38px;
height: 38px;
position: relative;
}
.theme-icon-light {
display: none;
}
.theme-icon-dark {
display: inline-block;
}
[data-bs-theme="dark"] .theme-icon-light {
display: inline-block;
}
[data-bs-theme="dark"] .theme-icon-dark {
display: none;
}
/* Notification area */