diff options
author | Ian Lewis <ianmlewis@gmail.com> | 2019-03-29 22:40:11 -0400 |
---|---|---|
committer | Ian Lewis <ianmlewis@gmail.com> | 2019-03-29 22:40:11 -0400 |
commit | 22f1890a9beab11d8cfdceba3a4d66f8bbbb468c (patch) | |
tree | 110ec3a84a72560244ee4476852295b86a737eb0 /assets/scss |
Initial commit
Diffstat (limited to 'assets/scss')
-rw-r--r-- | assets/scss/_variables_project.scss | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/assets/scss/_variables_project.scss b/assets/scss/_variables_project.scss new file mode 100644 index 000000000..eec4cfe30 --- /dev/null +++ b/assets/scss/_variables_project.scss @@ -0,0 +1,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; |