diff options
Diffstat (limited to '')
-rw-r--r-- | sass/custom/_colors.scss | 24 | ||||
-rw-r--r-- | sass/custom/_fonts.scss | 12 | ||||
-rw-r--r-- | sass/custom/_styles.scss | 3 |
3 files changed, 21 insertions, 18 deletions
diff --git a/sass/custom/_colors.scss b/sass/custom/_colors.scss index 740266a8..515544fe 100644 --- a/sass/custom/_colors.scss +++ b/sass/custom/_colors.scss @@ -2,21 +2,21 @@ // To give it a try, uncomment some of the lines below rebuild your blog, and see how it works. // If you need a handy color picker try http://hslpicker.com -//$header-bg: #263347; -//$subtitle-color: lighten($header-bg, 58); -//$nav-bg: desaturate(lighten(#8fc17a, 18), 5); -//$nav-bg-front: image-url('noise.png'); -//$nav-bg-back: linear-gradient(lighten($nav-bg, 8), $nav-bg, darken($nav-bg, 11)); -//$sidebar-bg: desaturate(#eceff5, 8); -//$sidebar-link-color: saturate(#526f9a, 10); -//$sidebar-link-color-hover: darken(#7ab662, 9); -//$footer-bg: #ccc !default; -//$footer-bg-front: image-url('noise.png'); -//$footer-bg-back: linear-gradient(lighten($footer-bg, 8), $footer-bg, darken($footer-bg, 11)); +$header-bg: #263347; +$subtitle-color: lighten($header-bg, 58); +$nav-bg: desaturate(lighten(#8fc17a, 18), 5); +$nav-bg-front: image-url('noise.png'); +$nav-bg-back: linear-gradient(lighten($nav-bg, 8), $nav-bg, darken($nav-bg, 11)); +$sidebar-bg: desaturate(#eceff5, 8); +$sidebar-link-color: saturate(#526f9a, 10); +$sidebar-link-color-hover: darken(#7ab662, 9); +$footer-bg: #ccc !default; +$footer-bg-front: image-url('noise.png'); +$footer-bg-back: linear-gradient(lighten($footer-bg, 8), $footer-bg, darken($footer-bg, 11)); /* To use the light Solarized highlighting theme uncomment the following line */ -//$solarized: light; +$solarized: light; /* If you want to tweak the Solarized colors you can do that here */ //$base03: #002b36; //darkest blue diff --git a/sass/custom/_fonts.scss b/sass/custom/_fonts.scss index 1a6b2a06..162e3fa1 100644 --- a/sass/custom/_fonts.scss +++ b/sass/custom/_fonts.scss @@ -2,9 +2,9 @@ // To give it a try, uncomment some of the lines below rebuild your blog, and see how it works. your sites's. // If you love to use Web Fonts, you also need to add some lines to source/_includes/custom/head.html -//$sans: "Optima", sans-serif; -//$serif: "Baskerville", serif; -//$mono: "Courier", monospace; -//$heading-font-family: "Verdana", sans-serif; -//$header-title-font-family: "Futura", sans-serif; -//$header-subtitle-font-family: "Futura", sans-serif; +$sans: "Source Sans Pro", sans-serif; +$serif: "Source Sans Pro", sans-serif; +$mono: "Source Code Pro", monospace; +$heading-font-family: "Source Sans Pro", sans-serif; +$header-title-font-family: "Source Sans Pro", sans-serif; +$header-subtitle-font-family: "Source Sans Pro", sans-serif; diff --git a/sass/custom/_styles.scss b/sass/custom/_styles.scss index 91ffcccf..29bfa8d2 100644 --- a/sass/custom/_styles.scss +++ b/sass/custom/_styles.scss @@ -1,2 +1,5 @@ // This File is imported last, and will override other styles in the cascade // Add styles here to make changes without digging in too much +body { + font-size: 1em; +} |