1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-10-16 05:37:28 +00:00
bluelib/dist/layouts-flex.root.css
Stefano Pigozzi d603f0ab1f
v9 (#64)
* 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
2023-05-25 01:20:38 +02:00

23 lines
539 B
CSS

/**
* Bluelib Layouts Flex
* by <me@steffo.eu>
*/
:where(body) :where(.layout-flex-row),
:where(body) :where(.layout-flex-rrow),
:where(body) :where(.layout-flex-column),
:where(body) :where(.layout-flex-rcolumn) {
display: flex;
gap: 8px;
}
:where(body) :where(.layout-flex-row) {
flex-direction: row;
}
:where(body) :where(.layout-flex-rrow) {
flex-direction: row-reverse;
}
:where(body) :where(.layout-flex-column) {
flex-direction: column;
}
:where(body) :where(.layout-flex-rcolumn) {
flex-direction: column-reverse;
}