You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
911 B
22 lines
911 B
/** |
|
* @file |
|
* Page-level structural rules for the druid theme. |
|
* |
|
* This layer holds rules that arrange regions, not rules that style their |
|
* contents — grids, flex containers, max-widths, page padding, sidebar |
|
* positioning. If a rule could move from `<header>` to `<aside>` without |
|
* changing meaning, it belongs here; if it's tied to a specific UI element |
|
* (a card, a button, a menu item), put it in css/components/. |
|
* |
|
* Classes referenced by templates/layout/page.html.twig: |
|
* .layout-container — outermost wrapper around the whole page |
|
* .layout-content — main content column inside <main> |
|
* .layout-sidebar-first — optional aside before content |
|
* .layout-sidebar-second — optional aside after content |
|
* |
|
* Container queries (@container) are a natural fit for region-internal |
|
* responsiveness — see todo.md for the rationale. |
|
*/ |
|
@layer layout { |
|
|
|
}
|
|
|