mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-13 13:39:27 +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
33 lines
497 B
CSS
33 lines
497 B
CSS
.settings-page {
|
|
h1 {
|
|
font-size: var(--font-size-xl);
|
|
margin-bottom: var(--unit-6);
|
|
}
|
|
|
|
section {
|
|
margin-bottom: var(--unit-10);
|
|
|
|
h2 {
|
|
font-size: var(--font-size-lg);
|
|
margin-bottom: var(--unit-3);
|
|
}
|
|
}
|
|
|
|
textarea.monospace {
|
|
font-family: monospace;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.input-group > input[type="submit"] {
|
|
height: auto;
|
|
}
|
|
|
|
section.about table {
|
|
max-width: 400px;
|
|
}
|
|
|
|
& .form-group {
|
|
margin-bottom: var(--unit-4);
|
|
}
|
|
}
|