mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-09 19:57:49 +02:00

* Change app link to not use heading * Use main and h1 for main content * Update settings page structure * Fix responsive styles * Update bookmark form page structure * Update auth page structure * Add some basic page titles * Expose side panel section * Add page title for bookmark details * Expose more sections * Improve region names
42 lines
618 B
CSS
42 lines
618 B
CSS
/* Main layout */
|
|
body {
|
|
margin: 20px 10px;
|
|
|
|
@media (min-width: 600px) {
|
|
/* Horizontal offset accounts for checkboxes that show up in bulk edit mode */
|
|
margin: 20px 32px;
|
|
}
|
|
}
|
|
|
|
header {
|
|
margin-bottom: var(--unit-9);
|
|
|
|
a.app-link:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.app-logo {
|
|
width: 28px;
|
|
height: 28px;
|
|
}
|
|
|
|
.app-name {
|
|
margin-left: var(--unit-3);
|
|
font-size: var(--font-size-lg);
|
|
font-weight: 500;
|
|
line-height: 1.2;
|
|
}
|
|
}
|
|
|
|
header .toasts {
|
|
margin-bottom: 20px;
|
|
|
|
.toast {
|
|
margin-bottom: 0.4rem;
|
|
}
|
|
|
|
.toast a.btn-clear:visited {
|
|
color: currentColor;
|
|
}
|
|
}
|