2019-12-02 11:52:26 +07:00
|
|
|
/*!
|
2020-07-24 11:41:26 +07:00
|
|
|
* Pico.css v1.0.4 (https://picocss.com)
|
2020-07-21 10:11:57 +07:00
|
|
|
* Copyright 2020 - 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
|
|
|
|
2019-12-02 23:22:13 +07:00
|
|
|
// Enable validation states for <input>
|
2019-12-02 11:52:26 +07:00
|
|
|
$enable-input-states: false;
|
|
|
|
|
2019-12-02 23:22:13 +07:00
|
|
|
// Enable transitions for <a>, <button>, <input>, <details>
|
|
|
|
$enable-transitions: 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
|
|
|
|
@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
|
|
|
|
|
|
|
|
// Content
|
|
|
|
@import "content/typography"; // a, headings, p, ul, blockquote ...
|
|
|
|
@import "content/form"; // label, input, select, ...
|
|
|
|
@import "content/form-checkbox-radio"; // type=checkbox, type=radio, role=switch
|
|
|
|
@import "content/button"; // button, a[role=button], ...
|
|
|
|
// @import "content/button-styles"; // .secondary, .contrast, .outline
|
|
|
|
@import "content/table"; // table, tr, td, ...
|
|
|
|
// @import "content/code"; // pre, code, ...
|
|
|
|
// @import "content/miscs"; // hr, progress, template, [hidden]
|
|
|
|
|
|
|
|
// Components
|
|
|
|
// @import "components/accordion"; // details, summary
|
|
|
|
// @import "components/card"; // article
|
|
|
|
// @import "components/card-sectioning"; // article > header, footer, pre
|
|
|
|
// @import "components/nav"; // nav
|
|
|
|
// @import "components/tooltip"; // data-tooltip
|