aboutsummaryrefslogtreecommitdiff
path: root/assets/sass/researcher.scss
blob: 8acca577f6c8597ddcb8cd8794558b924d93cd2f (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
@import "variables";
@import "typography";

* {
    color: $dark;
    font-family: "Inconsolata";
    line-height: normal;
}
h1, h2, h3, h4, h5, h6 {
    font-size: medium;
    font-weight: bold;
    line-height: normal;
    margin: 1.2rem 0 0.8rem 0;
}
@for $i from 1 through 4 {
    h#{$i} {
        font-size: 1.2rem + 0.2 * (4 - $i);
    }
}
.container {
    max-width: $max-width;
}
.navbar-brand {
    @extend %link-dark;
    font-size: 2rem;
}
.nav-link {
    @extend %link-default;
}
footer {
    a {
        @extend %link-dark;
    }
}