09c29219b4
* Refactor editor css, fix editor button highlight - Avoid using webview.css - Move more buttons css into button_mixins * Fix DropdownItem appearance * Fix the visuals of tags * Make dropdown font slightly smaller * Give SelectOption a background color * Move some css from deck-options-base to CardStateCustomizer * Avoid using core.scss for CardStats * Avoid using sass/core in congrats package * Inline core.scss into webview.scss * Include fusion-vars for base.scss * need to keep core.scss around for now (dae)
68 lines
1013 B
SCSS
68 lines
1013 B
SCSS
@use "vars";
|
|
@use "scrollbar";
|
|
|
|
$body-color: var(--text-fg);
|
|
$body-bg: var(--window-bg);
|
|
|
|
$link-hover-color: var(--link);
|
|
$link-hover-decoration: none;
|
|
|
|
$utilities: (
|
|
"opacity": (
|
|
property: opacity,
|
|
values: (
|
|
0: 0,
|
|
25: 0.25,
|
|
50: 0.5,
|
|
75: 0.75,
|
|
100: 1,
|
|
),
|
|
),
|
|
);
|
|
|
|
@import "bootstrap/scss/bootstrap-reboot";
|
|
@import "bootstrap/scss/bootstrap-utilities";
|
|
|
|
/* Bootstrap "extensions" */
|
|
.flex-basis-100 {
|
|
flex-basis: 100%;
|
|
}
|
|
|
|
.flex-basis-75 {
|
|
flex-basis: 75%;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
* {
|
|
overscroll-behavior: none;
|
|
}
|
|
|
|
.nightMode {
|
|
@include scrollbar.night-mode;
|
|
}
|
|
|
|
button {
|
|
/* override transition for instant hover response */
|
|
transition: color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
|
|
}
|
|
|
|
pre, code, kbd, samp {
|
|
unicode-bidi: normal !important;
|
|
}
|
|
|
|
.isWin {
|
|
--base-font-size: 12px;
|
|
}
|
|
|
|
.isMac {
|
|
--base-font-size: 13px;
|
|
}
|
|
|
|
.isLin {
|
|
--base-font-size: 14px;
|
|
}
|