2020-04-16 17:50:15 +02:00
|
|
|
@import url("src/general.css");
|
2018-11-08 21:56:14 +01:00
|
|
|
@import url("src/layout.css");
|
|
|
|
@import url("src/pad-editor.css");
|
|
|
|
|
2020-04-07 12:11:38 +02:00
|
|
|
@import url("src/components/scrollbars.css");
|
2018-11-08 21:56:14 +01:00
|
|
|
@import url("src/components/buttons.css");
|
|
|
|
@import url("src/components/popup.css");
|
|
|
|
|
|
|
|
@import url("src/components/chat.css");
|
2018-11-08 21:56:15 +01:00
|
|
|
@import url("src/components/sidediv.css");
|
2018-11-08 21:56:14 +01:00
|
|
|
@import url("src/components/gritter.css");
|
|
|
|
@import url("src/components/table-of-content.css");
|
|
|
|
@import url("src/components/toolbar.css");
|
|
|
|
@import url("src/components/users.css");
|
2018-11-08 21:56:18 +01:00
|
|
|
@import url("src/components/form.css");
|
2018-11-08 21:56:40 +01:00
|
|
|
@import url("src/components/import-export.css");
|
2018-11-08 21:56:14 +01:00
|
|
|
|
|
|
|
@import url("src/plugins/brightcolorpicker.css");
|
|
|
|
@import url("src/plugins/font_color.css");
|
2018-11-08 21:56:26 +01:00
|
|
|
@import url("src/plugins/tables2.css");
|
2018-11-08 21:56:40 +01:00
|
|
|
@import url("src/plugins/author_hover.css");
|
2020-04-14 17:23:37 +02:00
|
|
|
@import url("src/plugins/comments.css");
|
2018-11-08 21:56:14 +01:00
|
|
|
|
2020-04-07 17:33:40 +02:00
|
|
|
@import url("src/pad-variants.css");
|
|
|
|
|
2020-04-04 13:06:12 +02:00
|
|
|
/* -----------------------------------------------------------------
|
|
|
|
* COLORS
|
2020-04-16 17:50:15 +02:00
|
|
|
* If you want to change main colors, please replace following CSS variables
|
2020-04-04 13:06:12 +02:00
|
|
|
* -----------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2020-04-07 12:13:57 +02:00
|
|
|
:root {
|
2020-04-16 11:53:57 +02:00
|
|
|
--super-dark-color: #485365; /*#374256;*/
|
2020-04-07 17:33:40 +02:00
|
|
|
--dark-color: #576273; /*#4d5d77*/
|
|
|
|
|
2020-04-07 12:13:57 +02:00
|
|
|
--primary-color: #64d29b;
|
2020-04-17 08:44:56 +02:00
|
|
|
--middle-color: #d2d2d2; /* kind of grey, use for border for examples */
|
2018-11-08 21:56:28 +01:00
|
|
|
|
2020-04-07 17:33:40 +02:00
|
|
|
--light-color: #f2f3f4; /*#f9f9f9;*/
|
|
|
|
--super-light-color: white;
|
|
|
|
|
|
|
|
--text-color: var(--super-dark-color);
|
|
|
|
--text-soft-color: var(--dark-color);
|
2020-04-07 12:13:57 +02:00
|
|
|
--border-color: var(--middle-color);
|
2020-04-07 17:33:40 +02:00
|
|
|
--bg-soft-color: var(--light-color);
|
|
|
|
--bg-color: var(--super-light-color);
|
2018-11-08 21:56:14 +01:00
|
|
|
|
2020-04-17 08:44:56 +02:00
|
|
|
--toolbar-border: none;
|
|
|
|
|
2020-04-07 12:13:57 +02:00
|
|
|
--main-font-family: Quicksand, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
2020-04-08 18:14:41 +02:00
|
|
|
|
|
|
|
--editor-padding: 40px 55px;
|
|
|
|
--editor-padding-top: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Default scrollbar values */
|
|
|
|
body {
|
|
|
|
--scrollbar-bg: var(--light-color);
|
2020-04-16 17:50:15 +02:00
|
|
|
--scrollbar-track: var(--super-light-color);
|
2020-04-16 11:53:57 +02:00
|
|
|
--scrollbar-thumb: var(--dark-color);
|
2018-11-08 21:56:28 +01:00
|
|
|
}
|