From 398eda4992ad73531f39595776c007014b3020c3 Mon Sep 17 00:00:00 2001 From: Olivier Roques Date: Sat, 1 Aug 2020 23:19:40 +0200 Subject: Add sass files --- assets/sass/researcher.scss | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 assets/sass/researcher.scss (limited to 'assets/sass/researcher.scss') diff --git a/assets/sass/researcher.scss b/assets/sass/researcher.scss new file mode 100644 index 0000000..8acca57 --- /dev/null +++ b/assets/sass/researcher.scss @@ -0,0 +1,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; + } +} -- cgit v1.2.3