2022-10-19 04:39:32 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Core.css for Mocha UI
|
|
|
|
|
|
|
|
Theme: Default
|
|
|
|
|
|
|
|
Copyright:
|
|
|
|
Copyright (c) 2007-2009 Greg Houston, <http://greghoustondesign.com/>.
|
|
|
|
|
|
|
|
License:
|
|
|
|
MIT-style license.
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
CSS rules in this file:
|
|
|
|
|
|
|
|
1. Rules required by all MochaUI components or are shared by more than one.
|
|
|
|
2. Theme specific adjustments to plugin styles.
|
|
|
|
3. Miscellaneous rules that have no better place to go.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Required By All
|
|
|
|
---------------------------------------------------------------- */
|
2022-10-24 15:42:50 +02:00
|
|
|
:root {
|
2023-01-24 04:43:14 +01:00
|
|
|
color-scheme: dark;
|
|
|
|
--darkmode-primary: #00d9ff;
|
|
|
|
--darkmode-background: #202020;
|
|
|
|
--darkmode-background-alt: #242424;
|
|
|
|
--darkmode-background-alt2: #4e4e4e;
|
|
|
|
--darkmode-text: #c2c2c2;
|
|
|
|
--darkmode-text-alt: #d3d3d3;
|
|
|
|
--darkmode-line-color: #2F3437;
|
|
|
|
--highlight-color--darkred: #b83739;
|
|
|
|
--highlight-color--red: #ce292c;
|
|
|
|
--highlight-color--orange: #d0822b;
|
|
|
|
--highlight-color--yellow: #fcdd04;
|
|
|
|
--highlight-color--green: #64e67c;
|
|
|
|
--highlight-color--brightgreen: #49ca61;
|
|
|
|
--highlight-color--blue: #9FC8EB;
|
|
|
|
--highlight-color--purple: #DEAFEB;
|
|
|
|
--callout-background-color-dark: #DFDFDC;
|
|
|
|
--calloutred-background-color-dark: #E8D4D8;
|
|
|
|
--calloutorange-background-color-dark: #E8DAC8;
|
|
|
|
--calloutyellow-background-color-dark: #E9E2BF;
|
|
|
|
--calloutgreen-background-color-dark: #CDE6D0;
|
|
|
|
--calloutblue-background-color-dark: #D6E2E6;
|
|
|
|
--calloutpurple-background-color-dark: #E4D5E3;
|
|
|
|
--text-shadow: 0.01em 0.01em 0.03em #727E84;
|
2022-10-24 15:42:50 +02:00
|
|
|
}
|
2022-10-19 04:39:32 +02:00
|
|
|
|
2022-10-24 15:42:50 +02:00
|
|
|
body {
|
2023-01-24 04:43:14 +01:00
|
|
|
font-size: .875rem;
|
|
|
|
font-family: "Google Sans", -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
|
|
font-feature-settings: "kern", "liga", "clig", "calt";
|
2022-10-24 15:42:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Text Colors */
|
|
|
|
.highlight-darkred {
|
2023-01-24 04:43:14 +01:00
|
|
|
color: var(--highlight-color--darkred) !important;
|
2022-10-24 15:42:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.highlight-red {
|
2023-01-24 04:43:14 +01:00
|
|
|
color: var(--highlight-color--red) !important;
|
2022-10-24 15:42:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.highlight-orange {
|
2023-01-24 04:43:14 +01:00
|
|
|
color: var(--highlight-color--orange) !important;
|
2022-10-24 15:42:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.highlight-yellow {
|
2023-01-24 04:43:14 +01:00
|
|
|
color: var(--highlight-color--yellow) !important;
|
2022-10-24 15:42:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.highlight-green {
|
2023-01-24 04:43:14 +01:00
|
|
|
color: var(--highlight-color--green) !important;
|
2022-10-24 15:42:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.highlight-brightgreen {
|
2023-01-24 04:43:14 +01:00
|
|
|
color: var(--highlight-color--brightgreen) !important;
|
2022-10-24 15:42:50 +02:00
|
|
|
}
|
2022-10-19 04:39:32 +02:00
|
|
|
|
2022-10-24 15:42:50 +02:00
|
|
|
/* Clears */
|
2022-10-19 04:39:32 +02:00
|
|
|
.clear {
|
2023-01-24 04:43:14 +01:00
|
|
|
clear: both;
|
|
|
|
height: 0;
|
2022-10-19 04:39:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
* html .clear {
|
2023-01-24 04:43:14 +01:00
|
|
|
font-size: 1px;
|
|
|
|
line-height: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
visibility: hidden;
|
2022-10-19 04:39:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Miscellaneous
|
|
|
|
---------------------------------------------------------------- */
|
|
|
|
|
|
|
|
#themeControl {
|
2023-01-24 04:43:14 +01:00
|
|
|
margin-top: 2px;
|
2022-10-19 04:39:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Theme Specific Adjustments to Default Plugin Styles
|
|
|
|
---------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* Folder Tree */
|
|
|
|
|
|
|
|
.tree li a {
|
2023-01-24 04:43:14 +01:00
|
|
|
color: #3f3f3f !important;
|
|
|
|
}
|