blob: eec4cfe30019a4063ad7ee8dae6f72cfa237da45 (
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
|
// Colors.
$primary: #262362;
$secondary: #ffffff;
// Custom styles.
a.doc-table-anchor {
display: block;
position: relative;
top: -75px;
visibility: hidden;
}
.td-navbar {
.navbar-brand {
.navbar-logo {
svg {
width: auto;
}
}
}
}
// Fonts.
$google_font_name: "Roboto";
$google_font_family: "Roboto";
$font-size-base: 1rem;
$h1-font-size: $font-size-base * 2.5;
$h2-font-size: $font-size-base * 2;
$h3-font-size: $font-size-base * 1.75;
$h4-font-size: $font-size-base * 1.5;
$h5-font-size: $font-size-base * 1.25;
$h6-font-size: $font-size-base;
|