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 */
|
|
|
|
|
|
|
|
@use 'vars';
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: Helvetica, Arial;
|
|
|
|
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;
|
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
|
|
|
}
|