mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 03:24:20 +00:00
Stefano Pigozzi
d603f0ab1f
* Work on improving examples * Fix toggles * Create the `unpkgTargets` and `yarnTargets` variables * Allow interaction again * Add media screen to color rules * Configure default colors and fonts * Configure panel min-width in the example page * Remove the need for a examples index.css * Place selectorsets in the same chapter as rulesets * Rework images and build script * Tweak todo rendering * Do not bother styling range * Create layouts and fix bold code * Update text and readme
23 lines
571 B
CSS
23 lines
571 B
CSS
/**
|
|
* Bluelib Layouts Flex
|
|
* by <me@steffo.eu>
|
|
*/
|
|
:where(.bluelib) :where(.layout-flex-row),
|
|
:where(.bluelib) :where(.layout-flex-rrow),
|
|
:where(.bluelib) :where(.layout-flex-column),
|
|
:where(.bluelib) :where(.layout-flex-rcolumn) {
|
|
display: flex;
|
|
gap: 8px;
|
|
}
|
|
:where(.bluelib) :where(.layout-flex-row) {
|
|
flex-direction: row;
|
|
}
|
|
:where(.bluelib) :where(.layout-flex-rrow) {
|
|
flex-direction: row-reverse;
|
|
}
|
|
:where(.bluelib) :where(.layout-flex-column) {
|
|
flex-direction: column;
|
|
}
|
|
:where(.bluelib) :where(.layout-flex-rcolumn) {
|
|
flex-direction: column-reverse;
|
|
}
|