2023-06-04 22:25:15 +00:00
|
|
|
@import "@picocss/pico/scss/pico"; /* To import only what you need from Pico [check the documentaion](https://picocss.com/docs/customization.html) */
|
2023-06-11 16:03:42 +00:00
|
|
|
@import url('/assets/fonts/fonts.css');
|
2023-06-04 22:25:15 +00:00
|
|
|
/* @import url('https://cdn.jsdelivr.net/npm/@mdi/font@5.8.55/css/materialdesignicons.min.css'); */
|
|
|
|
|
|
|
|
/* Write your global styles here, in SCSS syntax. Variables and mixins from the src/variables.scss file are available here without importing */
|
|
|
|
|
2023-06-08 21:19:09 +00:00
|
|
|
h1, h2, h3, h4, h5, h6, body {
|
2023-06-11 16:03:42 +00:00
|
|
|
font-family: 'Space Grotesk', sans-serif;
|
2023-06-04 22:25:15 +00:00
|
|
|
// background-color: #ffffff;
|
|
|
|
// color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Green Light scheme (Default) */
|
|
|
|
/* Can be forced with data-theme="light" */
|
|
|
|
[data-theme="light"],
|
|
|
|
:root:not([data-theme="dark"]) {
|
|
|
|
--primary: #43a047;
|
|
|
|
--primary-hover: #388e3c;
|
|
|
|
--primary-focus: rgba(67, 160, 71, 0.125);
|
|
|
|
--primary-inverse: #FFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Green Dark scheme (Auto) */
|
|
|
|
/* Automatically enabled if user has Dark mode enabled */
|
|
|
|
@media only screen and (prefers-color-scheme: dark) {
|
|
|
|
:root:not([data-theme]) {
|
|
|
|
--primary: #43a047;
|
|
|
|
--primary-hover: #4caf50;
|
|
|
|
--primary-focus: rgba(67, 160, 71, 0.25);
|
|
|
|
--primary-inverse: #FFF;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Green Dark scheme (Forced) */
|
|
|
|
/* Enabled if forced with data-theme="dark" */
|
|
|
|
[data-theme="dark"] {
|
|
|
|
--primary: #43a047;
|
|
|
|
--primary-hover: #4caf50;
|
|
|
|
--primary-focus: rgba(67, 160, 71, 0.25);
|
|
|
|
--primary-inverse: #FFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Green (Common styles) */
|
|
|
|
:root {
|
|
|
|
--form-element-active-border-color: var(--primary);
|
|
|
|
--form-element-focus-color: var(--primary-focus);
|
|
|
|
--switch-color: var(--primary-inverse);
|
|
|
|
--switch-checked-background-color: var(--primary);
|
2023-06-06 06:53:57 +00:00
|
|
|
}
|
|
|
|
|
2023-06-08 21:19:09 +00:00
|
|
|
p, li {
|
2023-06-06 06:53:57 +00:00
|
|
|
cursor: text;
|
2023-06-08 21:19:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
article {
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 0px 0px 15px rgba(32, 32, 32, 0.2);
|
2023-06-04 22:25:15 +00:00
|
|
|
}
|