mirror of
https://github.com/rvtr/wiki.git
synced 2025-06-18 11:05:39 -04:00

TWiLight wiki + NightScript's DS Index in English and a couple pages in Japanese for testing
44 lines
1002 B
SCSS
Executable File
44 lines
1002 B
SCSS
Executable File
---
|
|
---
|
|
|
|
:root {
|
|
// Main contents
|
|
--main-bg: #fff;
|
|
--main-color: #222;
|
|
--header-color: #222;
|
|
--borders: #bbb;
|
|
--blockquote-color: #666;
|
|
--code-bg: #e9e9e9;
|
|
--code-color: #333;
|
|
--a-color: #0366d6;
|
|
--small-color: gray;
|
|
--carousel-caption-bg: #fffb;
|
|
--table-alt-bg: #f0f0f0;
|
|
|
|
// Cards
|
|
--card-background: var(--main-bg);
|
|
--card-edges-background: rgba(0,0,0,.03);
|
|
|
|
// Modal
|
|
--modal-borders: 1px solid #dee2e6;
|
|
|
|
// Nav
|
|
--nav-link-color: rgba(255, 255, 255, 0.7);
|
|
--nav-link-color-hover: rgba(255, 255, 255, 0.5);
|
|
--nav-link-color-active: rgba(255, 255, 255, 1);
|
|
--dropdown-item-bg-hover: rgba(0, 0, 0, 0.3);
|
|
--primary: {{ page.color | default: site.color }};
|
|
--dark: #343a40;
|
|
--light: #f8f9fa;
|
|
--light-border: #ced4da;
|
|
--light-placeholder: darkgray;
|
|
}
|
|
|
|
.carousel-dark-when-light .carousel-control-next-icon, .carousel-dark-when-light .carousel-control-prev-icon {
|
|
filter: invert(1) grayscale(100);
|
|
}
|
|
|
|
.carousel-dark-when-light .carousel-indicators li {
|
|
background-color: #000;
|
|
}
|