-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTLT.scss
57 lines (45 loc) · 1.5 KB
/
TLT.scss
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
55
56
57
/*-- scss:defaults --*/
// use materia as the base
$theme: "materia" !default;
// import google fonts
@import url('https://fonts.googleapis.com/css2?family=Outfit');
@import url('https://fonts.googleapis.com/css2?family=Sniglet');
@import url('https://fonts.googleapis.com/css2?family=Archivo');
@import url('https://fonts.googleapis.com/css2?family=Chivo');
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code');
// use Outfit font if available
$font-family-sans-serif: "Outfit", "Chivo", -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"
!default;
// default mono font as "Fira Code"
$font-family-monospace: 'Fira Code' !default;
/* Inline Code Formatting */
// Set a default body emphasis color
$code-bg: #FFFFFFFF !default;
/*-- scss:rules --*/
// default font as san-serif
p {
font-family: $font-family-sans-serif;
}
// title block
#title-block-header.quarto-title-block.default .quarto-title .title {
font-family: "Fira Code";
font-size: $font-size-base * 1;
font-weight: 800;
}
// Navs
.navbar-brand {
font-family: "Outfit", monospace;
font-size: 1.3rem;
font-weight: 1000;
}
// Navbar
.navbar {
font-family: "Sniglet";
font-size: $font-size-base * 0.9;
font-weight: 500;
}
$navbar-dark-hover-color: "#ff6700" !default;
$navbar-light-hover-color: "#ff6700" !default;