2020-08-27 10:34:34 +02:00
|
|
|
/* Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
|
|
|
|
2021-09-30 11:18:10 +02:00
|
|
|
@use "vars";
|
2020-08-27 10:34:34 +02:00
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
color: var(--text-fg);
|
|
|
|
background: var(--window-bg);
|
2020-08-31 13:07:40 +02:00
|
|
|
margin: 1em;
|
2021-03-14 15:03:41 +01:00
|
|
|
transition: opacity 0.5s ease-out;
|
2021-03-21 13:47:52 +01:00
|
|
|
overscroll-behavior: none;
|
2020-08-27 10:34:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--link);
|
2020-08-27 13:46:34 +02:00
|
|
|
text-decoration: none;
|
2020-08-27 10:34:34 +02:00
|
|
|
}
|