mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
21 lines
412 B
SCSS
21 lines
412 B
SCSS
/* Copyright: Ankitects Pty Ltd and contributors
|
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
|
|
|
@use "vars";
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
color: var(--fg-default);
|
|
background: var(--canvas-default);
|
|
margin: 1em;
|
|
transition: opacity 0.5s ease-out;
|
|
overscroll-behavior: none;
|
|
}
|
|
|
|
a {
|
|
color: var(--accent-link);
|
|
text-decoration: none;
|
|
}
|