mirror of
https://github.com/koloml/philomena-tagging-assistant.git
synced 2026-05-09 15:12:21 +00:00
36 lines
593 B
SCSS
36 lines
593 B
SCSS
@use './colors';
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
font-family: inherit;
|
|
font-size: inherit;
|
|
}
|
|
|
|
html, body {
|
|
background-color: colors.$background;
|
|
color: colors.$text;
|
|
font-size: 16px;
|
|
min-width: 320px;
|
|
max-height: min(100vh, 320px);
|
|
font-family: verdana, arial, helvetica, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
a {
|
|
color: colors.$link;
|
|
text-decoration: none;
|
|
|
|
&:hover, &:focus {
|
|
color: colors.$link-hover;
|
|
}
|
|
}
|
|
|
|
@import "injectable/input";
|
|
@import "injectable/tag";
|
|
@import "injectable/icons";
|