joeni

main.scss

1
@import 'colors';
2
@import 'fonts';
3
body {
4
    font: $font-stack;
5
    background-color: white;  // Maybe we could add a night mode in the future?
6
}
7
8
a {
9
    text-decoration: none;
10
    color: $UHasselt-color;
11
    &:hover {
12
        text-decoration: underline;
13
    }
14
    &:active {
15
        text-decoration: underline;
16
        color: white;
17
        background-color: $UHasselt-color;
18
    }
19
}
20
21
.FoS-text {
22
    color: $Faculty-of-Sciences-color;
23
}
24
.FoTS-text {
25
    color: $Faculty-of-Transportation-Sciences-color;
26
}
27
.FoAaA-text {
28
    color: $Faculty-of-Architecture-and-Arts-color;
29
}
30
.FoBE-text {
31
    color: $Faculty-of-Business-Economics-color;
32
}
33
.FoMaLS-text {
34
    color: $Faculty-of-Medicine-and-Life-Sciences-color;
35
}
36
.FoET-text {
37
    color: $Faculty-of-Engineering-Technology-color;
38
}
39
.FoL-text {
40
    color: $Faculty-of-Law-color;
41
}
42
43
.FoS {
44
    background-color: $Faculty-of-Sciences-color;
45
}
46
.FoTS {
47
    background-color: $Faculty-of-Transportation-Sciences-color;
48
}
49
.FoAaA {
50
    background-color: $Faculty-of-Architecture-and-Arts-color;
51
}
52
.FoBE {
53
    background-color: $Faculty-of-Business-Economics-color;
54
}
55
.FoMaLS {
56
    background-color: $Faculty-of-Medicine-and-Life-Sciences-color;
57
}
58
.FoET {
59
    background-color: $Faculty-of-Engineering-Technology-color;
60
}
61
.FoL {
62
    background-color: $Faculty-of-Law-color;
63
}
64