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");
|
2018-11-08 21:56:14 +01:00
|
|
|
|
2020-04-07 12:13:57 +02:00
|
|
|
html {
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
2020-04-04 13:06:12 +02:00
|
|
|
/* -----------------------------------------------------------------
|
|
|
|
* COLORS
|
|
|
|
* If you want to change main colors, please replace following rules
|
|
|
|
* -----------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2020-04-07 12:13:57 +02:00
|
|
|
:root {
|
|
|
|
--dark-color: #374256;
|
|
|
|
--dark-soft-color: #576273;
|
|
|
|
--primary-color: #64d29b;
|
|
|
|
--middle-color: #d2d2d2; /* between light-soft-color and dark-soft-color, use for border for examples */
|
|
|
|
--light-soft-color: #f2f3f4; /*#f9f9f9;*/
|
|
|
|
--light-color: white;
|
2018-11-08 21:56:28 +01:00
|
|
|
|
2020-04-07 12:13:57 +02:00
|
|
|
--text-color: var(--dark-color);
|
|
|
|
--text-soft-color: var(--dark-soft-color);
|
|
|
|
--border-color: var(--middle-color);
|
|
|
|
--bg-soft-color: var(--light-soft-color);
|
|
|
|
--bg-color: var(--light-color);
|
2018-11-08 21:56:14 +01:00
|
|
|
|
2020-04-07 12:13:57 +02:00
|
|
|
--main-font-family: Quicksand, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
2018-11-08 21:56:28 +01:00
|
|
|
}
|
2018-11-08 21:56:14 +01:00
|
|
|
|
2020-04-06 14:31:07 +02:00
|
|
|
|
2020-04-07 12:13:57 +02:00
|
|
|
body {
|
|
|
|
color: var(--text-color);
|
|
|
|
font-family: var(--main-font-family);
|
2020-04-04 09:51:22 +02:00
|
|
|
}
|
2020-04-07 12:13:57 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* PRIMARY COLOR */
|
|
|
|
h1 {
|
|
|
|
color: var(--primary-color);
|
2020-04-04 09:51:22 +02:00
|
|
|
}
|
2018-11-08 21:56:39 +01:00
|
|
|
|
|
|
|
/* BACKGROUND COLOR */
|
2020-04-03 17:41:47 +02:00
|
|
|
#editorcontainerbox {
|
2020-04-07 12:13:57 +02:00
|
|
|
background-color: var(--bg-soft-color);
|
|
|
|
}
|