blob: 8ee573474dab63e79e0bf1bcd9a28e0d737b88ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
@use "fonts";
@use "mixins";
@use "variables";
@use "forms";
@use "tables";
@use "components";
@use "divers";
@use "sidebar";
@use "layout";
@use "list-view";
@use "global-view";
@use "reader-view";
@use "configuration";
@use "logs";
@use "stats";
@use "mobile";
@charset "UTF-8";
/*=== GENERAL */
/*============*/
html, body {
background: variables.$grey-light;
color: variables.$main-font-color;
font-family: "lato", "Helvetica", "Arial", sans-serif;
font-size: 0.875rem;
}
body.formLogin,
body.register {
background: variables.$sid-bg;
}
/*=== Links */
a, button.as-link {
outline: none;
color: variables.$main-first;
}
|