forked from jthomasmock/themockup-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
my-litera.scss
38 lines (28 loc) · 979 Bytes
/
my-litera.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
/*-- scss:defaults --*/
// use litera as the base
$theme: "litera" !default;
// import google fonts
@import url('https://fonts.googleapis.com/css2?family=Lato');
@import url('https://fonts.googleapis.com/css2?family=Chivo');
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono');
// use Lato font if available
$font-family-sans-serif: "Lato", -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;
/*-- scss:rules --*/
// litera is serif by default: revert to san-serif
p {
font-family: $font-family-sans-serif;
}
// Navs
.navbar-brand {
font-family: "Fira Mono", mono;
font-size: 1.4rem;
font-weight: 900;
color: black;
}
// Navbar
.navbar {
font-family: "Fira Mono", mono;
font-size: 1rem;
}
$navbar-dark-hover-color: "#ff6700" !default;
$navbar-light-hover-color: "#ff6700" !default;