Added new navigation links for Dashboard, Editor, Player, Paper, Settings, Tables, and News sections. Each link includes click handlers to switch sections and active state styling. This expands the application's navigation options for better user access to different features.
39 lines
623 B
CSS
39 lines
623 B
CSS
/* Paper specific styles */
|
|
.editor-content {
|
|
outline: none;
|
|
min-height: 100%;
|
|
}
|
|
|
|
.prose {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.floating-toolbar {
|
|
position: fixed;
|
|
bottom: 2rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
z-index: 100;
|
|
/* Smooth transition */
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
/* Paper shadow effect */
|
|
.bg-card {
|
|
background-color: hsl(var(--card));
|
|
color: hsl(var(--card-foreground));
|
|
}
|
|
|
|
.border-border {
|
|
border-color: hsl(var(--border));
|
|
}
|
|
|
|
/* Toolbar button styles */
|
|
button {
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: hsl(var(--accent));
|
|
color: hsl(var(--accent-foreground));
|
|
}
|