2019-12-02 11:52:26 +07:00
|
|
|
/*!
|
2021-10-25 10:23:15 +07:00
|
|
|
* Pico.css v1.4.1 (https://picocss.com)
|
2021-07-02 16:54:41 +07:00
|
|
|
* Copyright 2019-2021 - Licensed under MIT
|
2019-12-02 11:52:26 +07:00
|
|
|
*
|
|
|
|
* Slim version example
|
|
|
|
* You can export only the modules you need
|
|
|
|
*/
|
|
|
|
|
2019-12-02 12:42:25 +07:00
|
|
|
// Config
|
|
|
|
// --------------------
|
|
|
|
|
|
|
|
// Enable responsive spacings for <header>, <main>, <footer>, <section>, <article>
|
2019-12-02 11:52:26 +07:00
|
|
|
$enable-responsive-spacings: false;
|
2019-12-02 12:42:25 +07:00
|
|
|
|
2021-07-02 16:54:41 +07:00
|
|
|
// Enable transitions
|
2019-12-02 23:22:13 +07:00
|
|
|
$enable-transitions: false;
|
|
|
|
|
2021-07-02 16:54:41 +07:00
|
|
|
// Enable overriding with !important
|
2020-09-25 09:10:04 +07:00
|
|
|
$enable-important: false;
|
|
|
|
|
2019-12-02 12:42:25 +07:00
|
|
|
// Pico Lib
|
|
|
|
// --------------------
|
|
|
|
|
2019-12-02 11:52:26 +07:00
|
|
|
// Config
|
|
|
|
@import "variables";
|
|
|
|
|
|
|
|
// Theming
|
|
|
|
@import "themes/default";
|
|
|
|
|
|
|
|
// Layout
|
2021-10-24 12:33:20 +07:00
|
|
|
@import "layout/document"; // html
|
|
|
|
@import "layout/sectioning"; // body, header, main, footer
|
|
|
|
@import "layout/container"; // .container, .container-fluid
|
|
|
|
@import "layout/section"; // section
|
|
|
|
@import "layout/grid"; // .grid
|
|
|
|
@import "layout/scroller"; // figure
|
2019-12-02 11:52:26 +07:00
|
|
|
|
|
|
|
// Content
|
2021-10-24 12:33:20 +07:00
|
|
|
@import "content/typography"; // a, headings, p, ul, blockquote, ...
|
|
|
|
@import "content/embedded"; // audio, canvas, iframe, img, svg, video
|
|
|
|
@import "content/button"; // button, a[role=button], type=button, type=submit ...
|
|
|
|
@import "content/form"; // input, select, textarea, label, fieldset, legend
|
|
|
|
@import "content/table"; // table, tr, td, ...
|
2020-09-11 23:22:50 +07:00
|
|
|
|
2021-07-17 15:19:19 +07:00
|
|
|
// Utilities
|
2021-10-24 12:33:20 +07:00
|
|
|
@import "utilities/accessibility"; // -ms-touch-action, aria-*
|
|
|
|
@import "utilities/reduce-motion"; // prefers-reduced-motion
|