| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- /* Globals */
- :root {
- --sidebar-width: 300px;
- --page-padding: 15px;
- --content-max-width: 750px;
- --menu-bar-height: 50px;
- }
- /* Themes */
- .all,.tai,.roman,.han,.zh{
- --bg: hsl(0, 0%, 100%);
- --fg: hsl(0, 0%, 0%);
- --sidebar-bg: #fafafa;
- --sidebar-fg: hsl(0, 0%, 0%);
- --sidebar-non-existant: #aaaaaa;
- --sidebar-active: #1f1fff;
- --sidebar-spacer: #f4f4f4;
- --scrollbar: #8F8F8F;
- --icons: #747474;
- --icons-hover: #000000;
- --links: #20609f;
- --inline-code-color: #301900;
- --theme-popup-bg: #fafafa;
- --theme-popup-border: #cccccc;
- --theme-hover: #e6e6e6;
- --quote-bg: hsl(197, 37%, 96%);
- --quote-border: hsl(197, 37%, 91%);
- --table-border-color: hsl(0, 0%, 95%);
- --table-header-bg: hsl(0, 0%, 80%);
- --table-alternate-bg: hsl(0, 0%, 97%);
- --searchbar-border-color: #aaa;
- --searchbar-bg: #fafafa;
- --searchbar-fg: #000;
- --searchbar-shadow-color: #aaa;
- --searchresults-header-fg: #666;
- --searchresults-border-color: #888;
- --searchresults-li-bg: #e4f2fe;
- --search-mark-bg: #a2cff5;
- }
- tai{
- display: none;
- }
- my{
- display: none;
- }
- roman{
- display: none;
- }
- han{
- display: none;
- }
- .tai tai{
- font-weight: bolder;
- display: block;
- }
- .my my{
- font-weight: bolder;
- display: block;
- }
- .roman roman{
- font-weight: bolder;
- display: block;
- /*font-size: 1.8rem;*/
- }
- .han han{
- /*font-weight: bolder;*/
- display: block;
- }
- .zh zh{
- /*font-weight: bolder;*/
- display: block;
- margin-bottom: 1rem;
- }
- .all tai{
- display: block;
- }
- .all roman{
- display: block;
- }
- .all zh{
- display: block;
- margin-bottom: 1rem;
- }
- @media (prefers-color-scheme: dark) {
- .all.no-js {
- --bg: hsl(200, 7%, 8%);
- --fg: #98a3ad;
- --sidebar-bg: #292c2f;
- --sidebar-fg: #a1adb8;
- --sidebar-non-existant: #505254;
- --sidebar-active: #3473ad;
- --sidebar-spacer: #393939;
- --scrollbar: var(--sidebar-fg);
- --icons: #43484d;
- --icons-hover: #b3c0cc;
- --links: #2b79a2;
- --inline-code-color: #c5c8c6;
- --theme-popup-bg: #141617;
- --theme-popup-border: #43484d;
- --theme-hover: #1f2124;
- --quote-bg: hsl(234, 21%, 18%);
- --quote-border: hsl(234, 21%, 23%);
- --table-border-color: hsl(200, 7%, 13%);
- --table-header-bg: hsl(200, 7%, 28%);
- --table-alternate-bg: hsl(200, 7%, 11%);
- --searchbar-border-color: #aaa;
- --searchbar-bg: #b7b7b7;
- --searchbar-fg: #000;
- --searchbar-shadow-color: #aaa;
- --searchresults-header-fg: #666;
- --searchresults-border-color: #98a3ad;
- --searchresults-li-bg: #2b2b2f;
- --search-mark-bg: #355c7d;
- }
- }
|