2019-03-08 15:38:22 +03:00
|
|
|
@import 'normalize.css';
|
2022-07-26 18:49:30 +03:00
|
|
|
|
2019-03-08 15:38:22 +03:00
|
|
|
@import './vars.pcss';
|
|
|
|
@import './layout.pcss';
|
2021-04-19 17:57:33 +03:00
|
|
|
@import './carbon.pcss';
|
2019-03-08 15:38:22 +03:00
|
|
|
@import './components/header.pcss';
|
|
|
|
@import './components/writing.pcss';
|
|
|
|
@import './components/page.pcss';
|
2022-09-12 20:11:44 +03:00
|
|
|
@import './components/greeting.pcss';
|
2019-03-13 12:25:43 +03:00
|
|
|
@import './components/auth.pcss';
|
2022-09-02 00:24:33 +05:30
|
|
|
@import './components/error.pcss';
|
2022-05-24 12:49:06 +08:00
|
|
|
@import './components/button.pcss';
|
2022-06-16 21:37:37 +08:00
|
|
|
@import './components/sidebar.pcss';
|
Added page navigation (#209)
* Added navigation on page
* Removed useless log, added docs to navigator component
* Fixed duplicated variables, some changes in navigation functions, changed pages.twig and navigator.twig
* Added flatArray model, changed navigation functions
* Replaced page footer style to page.pcss
* Fixed generating flat array, when pages remove
* Removed useless generating
* Renamed flatArray model to pagesFlatArray, updated descriptions, renamed generate to regenerate, removed hardcoded key name in cache
* Changed styles naming and added margin for navigation
* Added ability to change nesting in flat array, fixed BEM
* Updated nesting parameter, fixed BEM
* Changed navigator component by passing objects, removed navigator wrapper
* Style navigator renamed to navigator__item
* Update src/backend/models/pagesFlatArray.ts
Co-authored-by: Peter Savchenko <specc.dev@gmail.com>
* Renamed navigator__item to navigator_item
* Deleted wrappers from navigator buttons, removed page__footer
Co-authored-by: Peter Savchenko <specc.dev@gmail.com>
2022-08-02 17:38:02 +03:00
|
|
|
@import './components/navigator.pcss';
|
2022-07-26 18:49:30 +03:00
|
|
|
@import './components/table-of-content.pcss';
|
2018-09-18 13:10:44 +03:00
|
|
|
|
2018-09-07 19:24:09 +03:00
|
|
|
body {
|
|
|
|
font-family: system-ui, Helvetica, Arial, Verdana;
|
2018-09-18 13:10:44 +03:00
|
|
|
color: var(--color-text-main);
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2018-09-07 19:24:09 +03:00
|
|
|
}
|
2018-09-19 01:47:32 +03:00
|
|
|
|
|
|
|
svg {
|
|
|
|
fill: currentColor;
|
|
|
|
}
|
2022-05-24 12:49:06 +08:00
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: inherit
|
|
|
|
}
|