mirror of
https://github.com/Ladebeze66/coffreobsidian.git
synced 2025-12-16 10:17:45 +01:00
34 lines
717 B
CSS
34 lines
717 B
CSS
/* === Responsive pour écrans larges (Ultrawide 21:9) === */
|
|
@media (min-aspect-ratio: 21/9) {
|
|
.markdown-preview-view, .cm-s-obsidian {
|
|
max-width: 95% !important;
|
|
margin: 0 auto;
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
.workspace-split.mod-vertical {
|
|
gap: 16px;
|
|
}
|
|
|
|
body {
|
|
--file-line-width: 1000px; /* agrandir zone de lecture */
|
|
}
|
|
}
|
|
|
|
/* === Responsive pour écrans standards (16:9 ou moins) === */
|
|
@media (max-aspect-ratio: 16/9) {
|
|
.markdown-preview-view, .cm-s-obsidian {
|
|
max-width: 700px;
|
|
margin: auto;
|
|
font-size: 1em;
|
|
}
|
|
|
|
.workspace-split.mod-vertical {
|
|
gap: 8px;
|
|
}
|
|
|
|
body {
|
|
--file-line-width: 650px;
|
|
}
|
|
}
|
|
|