mirror of
https://github.com/sotam0316/brain_dogfood.git
synced 2026-04-25 03:48:38 +09:00
Initial Global Release v1.0 (Localization & Security Hardening)
This commit is contained in:
@@ -0,0 +1,98 @@
|
||||
/* Composer & Editor */
|
||||
.composer-wrapper { width: 100%; margin-bottom: 3rem; }
|
||||
|
||||
#composer input[type="text"] {
|
||||
width: 100%;
|
||||
background: transparent;
|
||||
border: none;
|
||||
outline: none;
|
||||
color: white;
|
||||
font-family: var(--font);
|
||||
font-size: 1.1rem;
|
||||
font-weight: 800;
|
||||
height: 35px;
|
||||
}
|
||||
|
||||
.meta-field {
|
||||
background: rgba(0,0,0,0.3) !important;
|
||||
border: 1px solid rgba(255,255,255,0.1) !important;
|
||||
border-radius: 8px;
|
||||
padding: 5px 10px !important;
|
||||
font-size: 0.8rem !important;
|
||||
color: var(--muted) !important;
|
||||
}
|
||||
|
||||
.editor-resize-wrapper {
|
||||
resize: vertical;
|
||||
overflow: hidden;
|
||||
min-height: 200px;
|
||||
height: 350px;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.toastui-editor-defaultUI {
|
||||
height: 100% !important;
|
||||
border: 1px solid rgba(255,255,255,0.1) !important;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
#editorAttachments {
|
||||
width: 100%;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/* --- 키보드 단축키 힌트 바 --- */
|
||||
.shortcut-hint-bar {
|
||||
margin-top: 10px;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.shortcut-toggle-btn {
|
||||
background: rgba(56, 189, 248, 0.08);
|
||||
border: 1px solid rgba(56, 189, 248, 0.15);
|
||||
color: var(--muted);
|
||||
font-size: 0.75rem;
|
||||
padding: 5px 12px;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
font-family: var(--font);
|
||||
}
|
||||
.shortcut-toggle-btn:hover {
|
||||
background: rgba(56, 189, 248, 0.15);
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.shortcut-details {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
padding: 10px 4px;
|
||||
animation: fadeSlideIn 0.2s ease;
|
||||
}
|
||||
|
||||
.shortcut-details .sk {
|
||||
font-size: 0.72rem;
|
||||
color: var(--muted);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.shortcut-details kbd {
|
||||
display: inline-block;
|
||||
background: rgba(255, 255, 255, 0.08);
|
||||
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||
border-radius: 4px;
|
||||
padding: 1px 5px;
|
||||
font-size: 0.68rem;
|
||||
font-family: 'Inter', monospace;
|
||||
color: var(--accent);
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
|
||||
margin: 0 1px;
|
||||
}
|
||||
|
||||
@keyframes fadeSlideIn {
|
||||
from { opacity: 0; transform: translateY(-4px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
/* 🌡️ Heatmap Component */
|
||||
|
||||
.heatmap-wrapper {
|
||||
padding: 12px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.heatmap-header {
|
||||
margin-bottom: 8px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.heatmap-title {
|
||||
font-size: 0.75rem;
|
||||
font-weight: 600;
|
||||
color: var(--muted);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.heatmap-select {
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
color: var(--muted);
|
||||
font-size: 0.65rem;
|
||||
padding: 2px 4px;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.heatmap-select:hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-color: var(--accent);
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.heatmap-select option {
|
||||
background: var(--bg);
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.heatmap-grid {
|
||||
display: grid;
|
||||
grid-template-rows: repeat(7, 10px);
|
||||
grid-auto-flow: column;
|
||||
grid-auto-columns: 10px;
|
||||
gap: 3px;
|
||||
overflow-x: auto;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
/* Hide scrollbar for cleaner look */
|
||||
.heatmap-grid::-webkit-scrollbar {
|
||||
height: 3px;
|
||||
}
|
||||
.heatmap-grid::-webkit-scrollbar-thumb {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.heatmap-cell {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
border-radius: 2px;
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
transition: transform 0.2s, filter 0.2s;
|
||||
}
|
||||
|
||||
.heatmap-cell:hover {
|
||||
transform: scale(1.3);
|
||||
z-index: 10;
|
||||
filter: brightness(1.2);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.heatmap-cell.out {
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* Level Colors (Cyan to Purple Gradient) */
|
||||
.heatmap-cell.lvl-0 { background: rgba(255, 255, 255, 0.05); }
|
||||
.heatmap-cell.lvl-1 { background: rgba(56, 189, 248, 0.3); }
|
||||
.heatmap-cell.lvl-2 { background: rgba(56, 189, 248, 0.6); }
|
||||
.heatmap-cell.lvl-3 { background: rgba(56, 189, 248, 0.9); }
|
||||
.heatmap-cell.lvl-4 {
|
||||
background: var(--ai-accent);
|
||||
box-shadow: 0 0 5px var(--ai-accent);
|
||||
}
|
||||
|
||||
.heatmap-legend {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
margin-top: 8px;
|
||||
font-size: 0.65rem;
|
||||
color: var(--muted);
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.heatmap-legend .heatmap-cell {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
/* Masonry Grid Layout */
|
||||
.masonry-grid { width: 100%; columns: auto 300px; column-gap: 1.5rem; }
|
||||
|
||||
/* Memo Card Styling */
|
||||
.memo-card {
|
||||
break-inside: avoid; margin-bottom: 1.5rem; background: rgba(30, 41, 59, 0.6);
|
||||
border-radius: 12px; padding: 1.2rem 1.2rem 45px 1.2rem; border: 1px solid rgba(255,255,255,0.05);
|
||||
position: relative; transition: transform 0.2s, background 0.2s;
|
||||
max-height: 320px; overflow: hidden;
|
||||
}
|
||||
|
||||
.memo-card:hover { transform: translateY(-4px); background: rgba(30, 41, 59, 1); }
|
||||
|
||||
.memo-card.compact { max-height: 80px; background: rgba(30, 41, 59, 0.3); border: 1px dashed rgba(255,255,255,0.1); }
|
||||
.memo-card.compact .memo-content,
|
||||
.memo-card.compact .memo-ai-summary,
|
||||
.memo-card.compact .memo-backlinks { display: none; }
|
||||
.memo-card.compact .memo-title { font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0px; margin-right: 50px; }
|
||||
.memo-card.compact::after { display: none; }
|
||||
|
||||
.memo-card.encrypted {
|
||||
border: 1px solid var(--encrypted-border) !important;
|
||||
box-shadow: 0 0 15px rgba(0, 243, 255, 0.15), inset 0 0 5px rgba(0, 243, 255, 0.05);
|
||||
}
|
||||
|
||||
/* Fade-out for long content */
|
||||
.memo-card::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: 0; left: 0; width: 100%; height: 60px;
|
||||
background: linear-gradient(transparent, rgba(15, 23, 42, 0.8));
|
||||
pointer-events: none;
|
||||
border-radius: 0 0 12px 12px;
|
||||
}
|
||||
|
||||
/* Memo Content Elements */
|
||||
.memo-title { font-weight: 600; font-size: 1.0rem; margin-bottom: 0.5rem; }
|
||||
.memo-content { font-size: 0.9rem; color: #cbd5e1; line-height: 1.6; }
|
||||
.memo-content img { max-width: 100%; border-radius: 8px; margin-top: 5px; }
|
||||
|
||||
.memo-summary, .memo-ai-summary {
|
||||
font-size: 0.8rem;
|
||||
font-style: italic;
|
||||
color: var(--ai-accent);
|
||||
border-left: 2px solid var(--ai-accent);
|
||||
padding-left: 10px;
|
||||
margin-bottom: 15px;
|
||||
line-height: 1.5;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.memo-summary strong {
|
||||
color: var(--ai-accent);
|
||||
font-weight: 800;
|
||||
text-transform: uppercase;
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
/* Meta & Badges */
|
||||
.memo-meta { margin-bottom: 12px; display: flex; flex-wrap: wrap; gap: 5px; }
|
||||
.tag-badge { padding: 2px 8px; border-radius: 12px; font-size: 0.75rem; font-weight: bold; }
|
||||
.tag-user { background: rgba(56, 189, 248, 0.2); color: var(--accent); }
|
||||
.tag-ai { background: rgba(139, 92, 246, 0.2); color: #c084fc; border: 1px solid rgba(139, 92, 246, 0.3); }
|
||||
.group-badge { background: rgba(255,255,255,0.05); color: #cbd5e1; padding: 2px 8px; border-radius: 12px; font-size: 0.75rem; font-weight: bold; }
|
||||
|
||||
/* Links & Actions */
|
||||
.memo-backlinks { margin-top: 12px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.8rem; color: var(--muted); }
|
||||
.link-item { color: var(--accent); cursor: pointer; text-decoration: none; font-weight: 600; }
|
||||
.link-item:hover { text-decoration: underline; }
|
||||
|
||||
.memo-actions { position: absolute; bottom: 10px; right: 10px; opacity: 0; transition: opacity 0.2s; display: flex; gap: 5px; }
|
||||
.memo-card:hover .memo-actions { opacity: 1; }
|
||||
|
||||
/* Attachments */
|
||||
.memo-attachments {
|
||||
margin-top: 15px;
|
||||
padding-top: 10px;
|
||||
border-top: 1px solid rgba(255,255,255,0.05);
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.file-chip {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
background: rgba(255,255,255,0.05);
|
||||
border: 1px solid rgba(255,255,255,0.1);
|
||||
border-radius: 6px;
|
||||
padding: 6px 12px;
|
||||
font-size: 0.8rem;
|
||||
color: #cbd5e1;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.file-chip:hover {
|
||||
background: rgba(255,255,255,0.1);
|
||||
border-color: var(--accent);
|
||||
color: white;
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
/* Modals & Special Overlay Components */
|
||||
|
||||
/* Asset Manager / Library */
|
||||
.asset-card {
|
||||
transition: transform 0.2s, background 0.2s;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
|
||||
.asset-card:hover {
|
||||
transform: scale(1.02);
|
||||
background: rgba(255,255,255,0.1) !important;
|
||||
border-color: var(--accent);
|
||||
}
|
||||
|
||||
/* Settings Modal Specifics */
|
||||
.settings-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr auto;
|
||||
gap: 15px;
|
||||
align-items: center;
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
.settings-grid label { font-size: 0.95rem; font-weight: 600; color: #cbd5e1; }
|
||||
|
||||
.settings-grid input[type="color"] {
|
||||
width: 50px; height: 32px; padding: 0;
|
||||
border: 2px solid rgba(255,255,255,0.1); border-radius: 6px;
|
||||
background: transparent; cursor: pointer; outline: none;
|
||||
}
|
||||
|
||||
.settings-actions {
|
||||
display: flex; justify-content: flex-end; gap: 10px;
|
||||
margin-top: 25px; padding-top: 15px;
|
||||
border-top: 1px solid rgba(255,255,255,0.05);
|
||||
}
|
||||
|
||||
/* Universal Modal Close Button */
|
||||
.close-modal-btn {
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
right: 15px;
|
||||
background: none;
|
||||
border: none;
|
||||
color: var(--muted);
|
||||
font-size: 1.8rem;
|
||||
line-height: 1;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
z-index: 10;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.close-modal-btn:hover {
|
||||
color: var(--accent);
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
/* Explorer Chip Counts */
|
||||
.chip-count {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
color: var(--muted);
|
||||
font-size: 0.7rem;
|
||||
font-weight: 800;
|
||||
padding: 2px 6px;
|
||||
border-radius: 10px;
|
||||
margin-left: 6px;
|
||||
min-width: 18px;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.explorer-chip:hover .chip-count {
|
||||
background: var(--accent);
|
||||
color: #0f172a;
|
||||
}
|
||||
|
||||
/* AI Disabled State */
|
||||
body.ai-disabled .ai-btn,
|
||||
body.ai-disabled .ai-summary-box,
|
||||
body.ai-disabled .memo-summary,
|
||||
body.ai-disabled .tag-ai,
|
||||
body.ai-disabled .ai-insight-icon,
|
||||
body.ai-disabled .ai-badge,
|
||||
body.ai-disabled .ai-loading-overlay {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
body.ai-disabled [data-source="ai"],
|
||||
body.ai-disabled .drawer-section:has(h3:contains("태그별 탐색")) {
|
||||
/* Note: :contains and :has are tricky, but we can target by class or JS filtering */
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
/* 슬래시 명령(/) 팝업 스타일 */
|
||||
|
||||
.slash-popup {
|
||||
position: fixed;
|
||||
z-index: 10000;
|
||||
min-width: 180px;
|
||||
max-width: 240px;
|
||||
max-height: 280px;
|
||||
overflow-y: auto;
|
||||
background: rgba(15, 23, 42, 0.95);
|
||||
backdrop-filter: blur(12px);
|
||||
border: 1px solid rgba(56, 189, 248, 0.2);
|
||||
border-radius: 10px;
|
||||
padding: 6px;
|
||||
box-shadow:
|
||||
0 8px 32px rgba(0, 0, 0, 0.5),
|
||||
0 0 0 1px rgba(255, 255, 255, 0.05) inset;
|
||||
animation: slashPopupIn 0.15s ease-out;
|
||||
}
|
||||
|
||||
/* 스크롤바 커스텀 */
|
||||
.slash-popup::-webkit-scrollbar { width: 4px; }
|
||||
.slash-popup::-webkit-scrollbar-track { background: transparent; }
|
||||
.slash-popup::-webkit-scrollbar-thumb {
|
||||
background: rgba(56, 189, 248, 0.3);
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.slash-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
padding: 4px 10px;
|
||||
border-radius: 7px;
|
||||
cursor: pointer;
|
||||
transition: background 0.12s ease, transform 0.1s ease;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.slash-item:hover,
|
||||
.slash-item.selected {
|
||||
background: rgba(56, 189, 248, 0.12);
|
||||
}
|
||||
|
||||
.slash-item.selected {
|
||||
background: rgba(56, 189, 248, 0.18);
|
||||
box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.25) inset;
|
||||
}
|
||||
|
||||
.slash-icon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
background: rgba(255, 255, 255, 0.06);
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border-radius: 6px;
|
||||
font-size: 0.8rem;
|
||||
color: var(--accent, #38bdf8);
|
||||
flex-shrink: 0;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.slash-label {
|
||||
font-size: 0.82rem;
|
||||
color: rgba(255, 255, 255, 0.85);
|
||||
font-weight: 500;
|
||||
font-family: var(--font, 'Inter', sans-serif);
|
||||
}
|
||||
|
||||
@keyframes slashPopupIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(-6px) scale(0.96);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0) scale(1);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,184 @@
|
||||
/* --- Visualization & Navigation (v3.0+) --- */
|
||||
|
||||
/* Sidebar Sections for Viz */
|
||||
.sidebar-section {
|
||||
margin-top: 10px;
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
.calendar-content {
|
||||
max-height: 1000px;
|
||||
overflow: hidden;
|
||||
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.calendar-content.collapsed {
|
||||
max-height: 0 !important;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* Calendar Widget */
|
||||
.calendar-widget {
|
||||
background: rgba(15, 23, 42, 0.4);
|
||||
border-radius: 12px;
|
||||
padding: 10px;
|
||||
margin: 5px 0 15px 0;
|
||||
border: 1px solid rgba(255, 255, 255, 0.05);
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.calendar-nav {
|
||||
display: flex;
|
||||
justify-content: space-between; align-items: center;
|
||||
margin-bottom: 10px; padding: 0 5px;
|
||||
}
|
||||
|
||||
.calendar-nav span { font-weight: 600; color: var(--accent); }
|
||||
.calendar-nav button {
|
||||
background: none; border: none; color: var(--muted); cursor: pointer;
|
||||
font-size: 1rem; padding: 2px 5px; border-radius: 4px;
|
||||
}
|
||||
.calendar-nav button:hover { color: white; background: rgba(255, 255, 255, 0.1); }
|
||||
|
||||
.calendar-grid {
|
||||
display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; text-align: center;
|
||||
}
|
||||
|
||||
.calendar-day-label { color: var(--muted); font-weight: 800; font-size: 0.7rem; margin-bottom: 5px; }
|
||||
|
||||
.calendar-day {
|
||||
position: relative; padding: 6px 0; border-radius: 6px; cursor: pointer;
|
||||
transition: background 0.2s; color: var(--text-dim);
|
||||
}
|
||||
.calendar-day:hover { background: rgba(255, 255, 255, 0.1); color: white; }
|
||||
.calendar-day.today { color: var(--accent) !important; font-weight: 800; background: rgba(56, 189, 248, 0.15); }
|
||||
.calendar-day.selected { background: var(--accent) !important; color: white !important; box-shadow: 0 0 10px var(--accent); }
|
||||
.calendar-day.other-month { opacity: 0.2; }
|
||||
|
||||
/* Activity Dots */
|
||||
.activity-dot {
|
||||
position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%);
|
||||
width: 4px; height: 4px; background: var(--ai-accent); border-radius: 50%;
|
||||
box-shadow: 0 0 5px var(--ai-accent);
|
||||
}
|
||||
|
||||
/* Floating Knowledge Explorer (v3.9 Compact) */
|
||||
.drawer {
|
||||
position: fixed;
|
||||
top: 100px;
|
||||
left: calc(var(--sidebar-width) + 30px);
|
||||
width: 320px; /* 크기 축소 */
|
||||
max-height: 500px; /* 높이 제한 */
|
||||
z-index: 1100;
|
||||
transform: scale(0.9) translateY(20px);
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, visibility 0.3s;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 0;
|
||||
box-shadow: 0 20px 50px rgba(0,0,0,0.6);
|
||||
border-radius: 16px; /* 더 날렵하게 */
|
||||
background: rgba(15, 23, 42, 0.97) !important;
|
||||
backdrop-filter: blur(40px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.15);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.drawer.active {
|
||||
transform: scale(1) translateY(0);
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
/* 드래그 중인 상태 */
|
||||
.drawer.dragging {
|
||||
transition: none; /* 드래그 중에는 애니메이션 끔 */
|
||||
opacity: 0.8;
|
||||
cursor: grabbing;
|
||||
}
|
||||
|
||||
.drawer-header {
|
||||
padding: 12px 18px; /* 여백 축소 */
|
||||
border-bottom: 1px solid rgba(255,255,255,0.08);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
cursor: grab;
|
||||
background: rgba(255,255,255,0.03);
|
||||
}
|
||||
|
||||
.drawer-header h3 {
|
||||
font-size: 0.9rem; /* 0.95 -> 0.9 */
|
||||
font-weight: 800;
|
||||
color: var(--accent);
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.drawer-body {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
padding: 15px 18px; /* 여백 축소 */
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: rgba(255,255,255,0.1) transparent;
|
||||
}
|
||||
|
||||
.drawer .close-btn {
|
||||
background: rgba(255,255,255,0.05);
|
||||
border: none;
|
||||
color: var(--muted);
|
||||
font-size: 1rem;
|
||||
width: 26px; /* 크기 축소 */
|
||||
height: 26px;
|
||||
border-radius: 50%;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.drawer .close-btn:hover {
|
||||
background: rgba(255,255,255,0.1);
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* Colored Explorer Chips (Enhanced) */
|
||||
.explorer-section {
|
||||
margin-bottom: 25px; /* 여백 축소 */
|
||||
}
|
||||
|
||||
.explorer-section h3 {
|
||||
font-size: 0.65rem; /* 폰트 축소 */
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08rem;
|
||||
color: var(--muted);
|
||||
margin-bottom: 10px;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.explorer-grid {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px; /* 간격 축소 */
|
||||
}
|
||||
|
||||
.explorer-chip {
|
||||
padding: 5px 12px; /* 여백 축소 */
|
||||
background: rgba(255, 255, 255, 0.03);
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border-radius: 10px;
|
||||
cursor: pointer;
|
||||
font-size: 0.75rem; /* 0.8 -> 0.75 */
|
||||
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
color: var(--text-dim);
|
||||
user-select: none;
|
||||
}
|
||||
.explorer-chip:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-1px); }
|
||||
|
||||
.explorer-chip.tag-user { border-color: rgba(56, 189, 248, 0.3); color: #bae6fd; }
|
||||
.explorer-chip.tag-user:hover, .explorer-chip.tag-user.active { background: rgba(56, 189, 248, 0.15); border-color: var(--accent); color: white; }
|
||||
.explorer-chip.tag-ai { border-color: rgba(168, 85, 247, 0.3); color: #e9d5ff; }
|
||||
.explorer-chip.tag-ai:hover, .explorer-chip.tag-ai.active { background: rgba(168, 85, 247, 0.15); border-color: #a855f7; color: white; }
|
||||
@@ -0,0 +1,107 @@
|
||||
/* Main Content Area */
|
||||
.content {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
padding: 2rem 3rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/* Top Navigation Bar */
|
||||
.topbar {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
|
||||
.search-bar {
|
||||
background: rgba(255,255,255,0.05);
|
||||
border: 1px solid rgba(255,255,255,0.1);
|
||||
border-radius: 12px;
|
||||
padding: 0.8rem 1.2rem;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
.search-bar input {
|
||||
background: transparent;
|
||||
border: none;
|
||||
outline: none;
|
||||
color: white;
|
||||
width: 100%;
|
||||
font-family: var(--font);
|
||||
}
|
||||
|
||||
/* Glass Panels & Modals Base */
|
||||
.glass-panel {
|
||||
background: var(--card); backdrop-filter: blur(16px);
|
||||
border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
|
||||
padding: 1.2rem; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
.modal {
|
||||
display: none;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: rgba(0,0,0,0.6);
|
||||
backdrop-filter: blur(5px);
|
||||
z-index: 1000;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.modal.active { display: flex; }
|
||||
|
||||
.modal-content {
|
||||
width: 90%;
|
||||
max-width: 800px;
|
||||
max-height: 85vh;
|
||||
overflow-y: auto;
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
/* UI Utility Components */
|
||||
.spinner {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border: 4px solid rgba(255,255,255,0.1);
|
||||
border-top: 4px solid var(--accent);
|
||||
border-radius: 50%;
|
||||
animation: spin 1s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
|
||||
|
||||
.primary-btn {
|
||||
background: var(--accent);
|
||||
color: #0f172a;
|
||||
font-weight: 700;
|
||||
border: none;
|
||||
padding: 0.5rem 1.2rem;
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
|
||||
.primary-btn:hover { background: var(--accent-hover); }
|
||||
|
||||
.action-btn {
|
||||
background: rgba(0,0,0,0.4);
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
padding: 5px 10px;
|
||||
cursor: pointer;
|
||||
color: white;
|
||||
transition: background 0.2s;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.action-btn:hover { background: rgba(184, 59, 94, 0.8); }
|
||||
.ai-btn:hover { background: var(--ai-accent); color: white; }
|
||||
@@ -0,0 +1,171 @@
|
||||
/* 🧠 뇌사료 | Premium Login Styles (v4.1) */
|
||||
|
||||
:root {
|
||||
--bg: #0b0f1a;
|
||||
--card: rgba(22, 30, 46, 0.6);
|
||||
--text: #f8fafc;
|
||||
--muted: #94a3b8;
|
||||
--accent: #38bdf8;
|
||||
--accent-hover: #0ea5e9;
|
||||
--ai-accent: #a855f7;
|
||||
--font: 'Inter', sans-serif;
|
||||
}
|
||||
|
||||
* { box-sizing: border-box; margin: 0; padding: 0; font-family: var(--font); }
|
||||
|
||||
body {
|
||||
background-color: var(--bg);
|
||||
background-image:
|
||||
radial-gradient(circle at 20% 30%, rgba(56, 189, 248, 0.1), transparent 40%),
|
||||
radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.1), transparent 40%);
|
||||
color: var(--text);
|
||||
height: 100vh;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.login-container {
|
||||
perspective: 1000px;
|
||||
width: 100%;
|
||||
max-width: 440px;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.login-card {
|
||||
background: var(--card);
|
||||
backdrop-filter: blur(25px);
|
||||
-webkit-backdrop-filter: blur(25px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 32px;
|
||||
padding: 60px 45px;
|
||||
box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6);
|
||||
text-align: center;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
animation: cardEntrance 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
|
||||
}
|
||||
|
||||
@keyframes cardEntrance {
|
||||
from { opacity: 0; transform: translateY(40px) scale(0.95); }
|
||||
to { opacity: 1; transform: translateY(0) scale(1); }
|
||||
}
|
||||
|
||||
.login-card::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0; left: 0; width: 100%; height: 6px;
|
||||
background: linear-gradient(90deg, var(--accent), var(--ai-accent));
|
||||
}
|
||||
|
||||
.logo-area {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-size: 3rem;
|
||||
font-weight: 800;
|
||||
margin-bottom: 12px;
|
||||
background: linear-gradient(135deg, #38bdf8, #a855f7);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.tagline {
|
||||
font-size: 0.95rem;
|
||||
color: var(--muted);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
/* Form Styling */
|
||||
.input-group {
|
||||
margin-bottom: 24px;
|
||||
text-align: left;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.input-group label {
|
||||
display: block;
|
||||
margin-bottom: 8px;
|
||||
font-size: 0.85rem;
|
||||
color: var(--muted);
|
||||
font-weight: 600;
|
||||
margin-left: 4px;
|
||||
}
|
||||
|
||||
.input-wrapper {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.input-wrapper input {
|
||||
width: 100%;
|
||||
background: rgba(0, 0, 0, 0.4);
|
||||
border: 1px solid rgba(255, 255, 255, 0.08);
|
||||
border-radius: 16px;
|
||||
padding: 16px 20px;
|
||||
color: white;
|
||||
outline: none;
|
||||
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.input-wrapper input:focus {
|
||||
background: rgba(0, 0, 0, 0.6);
|
||||
border-color: var(--accent);
|
||||
box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
|
||||
}
|
||||
|
||||
/* Button & Actions */
|
||||
.login-btn {
|
||||
width: 100%;
|
||||
background: linear-gradient(135deg, var(--accent), #0ea5e9);
|
||||
color: #0f172a;
|
||||
border: none;
|
||||
border-radius: 16px;
|
||||
padding: 18px;
|
||||
font-size: 1.1rem;
|
||||
font-weight: 800;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
margin-top: 15px;
|
||||
box-shadow: 0 10px 25px -5px rgba(56, 189, 248, 0.4);
|
||||
}
|
||||
|
||||
.login-btn:hover {
|
||||
transform: translateY(-3px);
|
||||
background: linear-gradient(135deg, #7dd3fc, var(--accent-hover));
|
||||
box-shadow: 0 15px 30px -5px rgba(56, 189, 248, 0.6);
|
||||
}
|
||||
|
||||
.login-btn:active {
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.error-msg {
|
||||
color: #f87171;
|
||||
font-size: 0.85rem;
|
||||
margin-top: 20px;
|
||||
background: rgba(248, 113, 113, 0.1);
|
||||
padding: 10px;
|
||||
border-radius: 8px;
|
||||
display: none;
|
||||
animation: shake 0.4s;
|
||||
}
|
||||
|
||||
@keyframes shake {
|
||||
0%, 100% { transform: translateX(0); }
|
||||
25% { transform: translateX(-5px); }
|
||||
75% { transform: translateX(5px); }
|
||||
}
|
||||
|
||||
.login-card-footer {
|
||||
margin-top: 40px;
|
||||
padding-top: 20px;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
||||
font-size: 0.8rem;
|
||||
color: rgba(148, 163, 184, 0.5);
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
/* --- Mobile Optimization (v2.0+) --- */
|
||||
@media (max-width: 768px) {
|
||||
body { overflow-x: hidden; }
|
||||
|
||||
/* Sidebar as Drawer on Mobile */
|
||||
.sidebar {
|
||||
position: fixed; left: 0; top: 0; height: 100vh; z-index: 1000;
|
||||
transform: translateX(-100%); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
||||
width: 280px; box-shadow: 20px 0 50px rgba(0,0,0,0.5);
|
||||
}
|
||||
.sidebar.mobile-open { transform: translateX(0); }
|
||||
.sidebar.collapsed { width: 280px; }
|
||||
.sidebar.collapsed .text { display: inline !important; }
|
||||
|
||||
/* Mobile Content Layout */
|
||||
.content { padding: 1rem; width: 100%; }
|
||||
.topbar { margin-bottom: 1.5rem; flex-direction: row; align-items: center; justify-content: flex-start; gap: 0; }
|
||||
.search-bar { flex: 1; order: 2; }
|
||||
#mobileMenuBtn { display: block !important; order: 1; }
|
||||
|
||||
.sidebar-toggle { font-size: 1.5rem; padding: 10px; }
|
||||
|
||||
/* Composer Adjustments */
|
||||
.meta-inputs { flex-direction: column; align-items: stretch !important; gap: 8px !important; }
|
||||
.meta-field { width: 100% !important; height: 44px !important; font-size: 1rem !important; }
|
||||
#composer input[type="text"] { height: 44px; font-size: 1.1rem; }
|
||||
.editor-resize-wrapper { height: 300px; }
|
||||
|
||||
/* Card Layout for Mobile */
|
||||
.masonry-grid { columns: 1; column-gap: 0; }
|
||||
.memo-card { max-height: none; padding-bottom: 50px; }
|
||||
.memo-card::after { height: 40px; }
|
||||
|
||||
.memo-actions { opacity: 1 !important; bottom: 8px; right: 8px; }
|
||||
.action-btn { padding: 8px 12px; font-size: 1rem; min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
|
||||
|
||||
.modal-content { width: 95%; max-height: 90vh; border-radius: 12px; }
|
||||
.tag-badge, .group-badge { padding: 4px 10px; font-size: 0.85rem; }
|
||||
|
||||
body { padding-bottom: env(safe-area-inset-bottom); }
|
||||
|
||||
/* Knowledge Drawer Mobile Adjustments */
|
||||
.drawer {
|
||||
left: 10px; right: 10px; width: auto;
|
||||
transform: translateY(110%);
|
||||
bottom: 10px; top: auto; height: 70vh;
|
||||
}
|
||||
.drawer.active { transform: translateY(0); }
|
||||
}
|
||||
@@ -0,0 +1,177 @@
|
||||
.sidebar {
|
||||
width: var(--sidebar-width);
|
||||
height: 100vh;
|
||||
background: var(--sidebar);
|
||||
backdrop-filter: blur(10px);
|
||||
border-right: 1px solid rgba(255,255,255,0.05);
|
||||
padding: 2rem 1.2rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
|
||||
flex-shrink: 0;
|
||||
overflow: hidden; /* 전체 스크롤을 막고 내부 스크롤 활성화 */
|
||||
}
|
||||
|
||||
.sidebar-content {
|
||||
flex: 1;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
margin: 0 -0.5rem; /* 스크롤바 공간 확보를 위해 패딩 살짝 조정 */
|
||||
padding: 0 0.5rem;
|
||||
}
|
||||
|
||||
/* Custom Scrollbar for Sidebar */
|
||||
.sidebar-content::-webkit-scrollbar {
|
||||
width: 4px;
|
||||
}
|
||||
|
||||
.sidebar-content::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.sidebar-content::-webkit-scrollbar-thumb {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.sidebar-content::-webkit-scrollbar-thumb:hover {
|
||||
background: rgba(56, 189, 248, 0.3);
|
||||
}
|
||||
|
||||
.sidebar-header { margin-bottom: 2.5rem; white-space: nowrap; overflow: hidden; }
|
||||
|
||||
.logo {
|
||||
font-size: 1.3rem;
|
||||
font-weight: 800;
|
||||
background: linear-gradient(135deg, #38bdf8, #8b5cf6);
|
||||
-webkit-background-clip: text;
|
||||
-webkit-text-fill-color: transparent;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
|
||||
.sidebar-toggle {
|
||||
background: none; border: none; color: var(--muted); font-size: 1.2rem; cursor: pointer;
|
||||
padding: 5px; border-radius: 4px; transition: background 0.2s, color 0.2s;
|
||||
}
|
||||
|
||||
.sidebar-toggle:hover { background: rgba(255,255,255,0.05); color: var(--text); }
|
||||
|
||||
/* Navigation List */
|
||||
.nav { list-style: none; display: flex; flex-direction: column; gap: 0; }
|
||||
|
||||
.nav li {
|
||||
padding: 0.25rem 0.8rem;
|
||||
border-radius: 4px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.1s ease;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.6rem;
|
||||
color: var(--muted);
|
||||
font-size: 0.85rem;
|
||||
margin: 0;
|
||||
border-top: 1px solid transparent;
|
||||
}
|
||||
|
||||
.nav li:hover { background: rgba(255,255,255,0.05); color: var(--text); }
|
||||
.nav li.active { background: rgba(56, 189, 248, 0.15); color: var(--accent); }
|
||||
|
||||
/* Navigation Dividers */
|
||||
.nav li:not(.sub-item):not(:first-child) {
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
||||
margin-top: 0.2rem;
|
||||
padding-top: 0.4rem;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 0.7rem;
|
||||
font-weight: 800;
|
||||
color: rgba(255,255,255,0.25);
|
||||
margin: 0.8rem 0 0.2rem 0.8rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05rem;
|
||||
list-style: none;
|
||||
border-top: 1px solid rgba(255, 255, 255, 0.05);
|
||||
padding-top: 0.5rem;
|
||||
}
|
||||
|
||||
.sub-item { padding-left: 2.2rem !important; border-top: none !important; margin-top: 0 !important; }
|
||||
|
||||
/* Sidebar Footer */
|
||||
.sidebar-footer {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
margin-top: auto;
|
||||
padding-top: 20px;
|
||||
border-top: 1px solid rgba(255,255,255,0.05);
|
||||
}
|
||||
|
||||
.sidebar-footer .action-btn { flex: 1; padding: 10px !important; }
|
||||
|
||||
#settingsBtn {
|
||||
flex: 0 0 45px !important;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding: 0 !important;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
/* Collapsed State (Desktop) */
|
||||
.sidebar.collapsed { width: var(--sidebar-collapsed-width); padding: 2rem 0.5rem; }
|
||||
.sidebar.collapsed .text { display: none !important; }
|
||||
.sidebar.collapsed .logo { width: auto; margin-right: 0; }
|
||||
.sidebar.collapsed .nav li { padding: 0.8rem 0; justify-content: center; background: none !important; border: none !important; }
|
||||
.sidebar.collapsed .nav li.active { color: var(--accent); }
|
||||
.sidebar.collapsed .nav li .icon { font-size: 1.2rem; margin: 0; }
|
||||
.sidebar.collapsed .section-title { padding: 0.5rem 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); height: 1px; overflow: hidden; }
|
||||
.sidebar.collapsed .sub-item { padding-left: 0 !important; }
|
||||
|
||||
/* Hide redundant sections in collapsed state */
|
||||
.sidebar.collapsed .sidebar-section:has(#calendarHeader),
|
||||
.sidebar.collapsed .sidebar-section:has(#heatmapContainer),
|
||||
.sidebar.collapsed #calendarHeader,
|
||||
.sidebar.collapsed #calendarContainer,
|
||||
.sidebar.collapsed #heatmapContainer {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* Remove boxes from buttons in collapsed state */
|
||||
.sidebar.collapsed .action-btn {
|
||||
background: none !important;
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
justify-content: center !important;
|
||||
padding: 10px 0 !important;
|
||||
}
|
||||
|
||||
.sidebar.collapsed .sidebar-footer { padding: 10px 0; justify-content: center; display: flex; flex-direction: column; align-items: center; border-top: 1px solid rgba(255,255,255,0.05);}
|
||||
.sidebar.collapsed #logoutBtn { padding: 8px !important; justify-content: center; }
|
||||
.sidebar.collapsed #settingsBtn { background: none !important; border: none !important; }
|
||||
|
||||
/* Tooltips for Collapsed Sidebar */
|
||||
.sidebar.collapsed [data-tooltip] { position: relative; }
|
||||
.sidebar.collapsed [data-tooltip]::after {
|
||||
content: attr(data-tooltip);
|
||||
position: absolute;
|
||||
left: 80px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
background: rgba(15, 23, 42, 0.9);
|
||||
color: white;
|
||||
padding: 6px 12px;
|
||||
border-radius: 6px;
|
||||
font-size: 0.8rem;
|
||||
white-space: nowrap;
|
||||
opacity: 0;
|
||||
pointer-events: none;
|
||||
transition: all 0.2s ease;
|
||||
z-index: 1000;
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
.sidebar.collapsed [data-tooltip]:hover::after {
|
||||
opacity: 1;
|
||||
left: 70px;
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
html { font-size: 15px; }
|
||||
|
||||
:root {
|
||||
--bg: #0f172a;
|
||||
--sidebar: rgba(30, 41, 59, 0.7);
|
||||
--card: rgba(30, 41, 59, 0.85);
|
||||
--text: #f8fafc;
|
||||
--muted: #94a3b8;
|
||||
--accent: #38bdf8;
|
||||
--accent-hover: #0ea5e9;
|
||||
--ai-accent: #8b5cf6;
|
||||
--encrypted-border: #00f3ff;
|
||||
--sidebar-width: 260px;
|
||||
--sidebar-collapsed-width: 70px;
|
||||
--font: 'Inter', sans-serif;
|
||||
}
|
||||
|
||||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
|
||||
body {
|
||||
background-color: var(--bg);
|
||||
background-image: radial-gradient(circle at 15% 50%, rgba(56, 189, 248, 0.05), transparent 25%),
|
||||
radial-gradient(circle at 85% 30%, rgba(139, 92, 246, 0.05), transparent 25%);
|
||||
color: var(--text);
|
||||
font-family: var(--font);
|
||||
display: flex;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
}
|
||||
Reference in New Issue
Block a user