33 lines
399 B
CSS
33 lines
399 B
CSS
|
@import 'theme';
|
||
|
@import 'states';
|
||
|
@import 'inputs';
|
||
|
@import 'forms';
|
||
|
@import 'markdown';
|
||
|
@import 'tooltip';
|
||
|
|
||
|
html,
|
||
|
body,
|
||
|
#app {
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin: 0;
|
||
|
color: var(--text);
|
||
|
font-family: sans-serif;
|
||
|
}
|
||
|
|
||
|
.link {
|
||
|
color: var(--link);
|
||
|
text-decoration: none;
|
||
|
|
||
|
&:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.heading {
|
||
|
margin: 0 0 1rem 0;
|
||
|
color: var(--primary-light-20);
|
||
|
}
|