diff options
author | Hakim El Hattab | 2019-03-21 09:03:27 +0100 |
---|---|---|
committer | GitHub | 2019-03-21 09:03:27 +0100 |
commit | b5fe0f812625ce1628ee24e69fff0eedca8e93fd (patch) | |
tree | f172935cf512c7f20182a9e6c0c9e9562e8c4190 /css/theme/template | |
parent | b4c6c920337aee02e563828c40a546b82a2dc47b (diff) | |
parent | 01874c6e70f11b63c66bdace29411812932b88f9 (diff) |
Merge branch 'dev' into hash-problem
Diffstat (limited to 'css/theme/template')
-rw-r--r-- | css/theme/template/settings.scss | 4 | ||||
-rw-r--r-- | css/theme/template/theme.scss | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/css/theme/template/settings.scss b/css/theme/template/settings.scss index 63c02cf..5a917f8 100644 --- a/css/theme/template/settings.scss +++ b/css/theme/template/settings.scss @@ -28,6 +28,8 @@ $heading2Size: 2.11em; $heading3Size: 1.55em; $heading4Size: 1.00em; +$codeFont: monospace; + // Links and actions $linkColor: #13DAEC; $linkColorHover: lighten( $linkColor, 20% ); @@ -40,4 +42,4 @@ $selectionColor: #fff; // to return a background image or gradient @mixin bodyBackground() { background: $backgroundColor; -}
\ No newline at end of file +} diff --git a/css/theme/template/theme.scss b/css/theme/template/theme.scss index a8f142d..9ccfaf5 100644 --- a/css/theme/template/theme.scss +++ b/css/theme/template/theme.scss @@ -162,16 +162,16 @@ body { text-align: left; font-size: 0.55em; - font-family: monospace; + font-family: $codeFont; line-height: 1.2em; word-wrap: break-word; - box-shadow: 0px 0px 6px rgba(0,0,0,0.3); + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); } .reveal code { - font-family: monospace; + font-family: $codeFont; text-transform: none; } |