diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2016-06-01 14:42:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-06-01 14:42:03 +0000 |
commit | a574679f7b2636e74e6a262f4badad0445d10c3a (patch) | |
tree | 466429721c3454a9236b033a788ca72f9f4f4507 /docs/com/css/theme/source/night.scss | |
parent | 70b96b8719b48c51b59182162fe8e018c55e7364 (diff) | |
parent | bb522c6efd9a02e611014038566b15feb28da0c8 (diff) |
Merge "Add framework for presentations"
Diffstat (limited to 'docs/com/css/theme/source/night.scss')
-rwxr-xr-x | docs/com/css/theme/source/night.scss | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/com/css/theme/source/night.scss b/docs/com/css/theme/source/night.scss new file mode 100755 index 000000000..b0cb57f53 --- /dev/null +++ b/docs/com/css/theme/source/night.scss @@ -0,0 +1,35 @@ +/** + * Black theme for reveal.js. + * + * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se + */ + + +// Default mixins and settings ----------------- +@import "../template/mixins"; +@import "../template/settings"; +// --------------------------------------------- + + +// Include theme-specific fonts +@import url(https://fonts.googleapis.com/css?family=Montserrat:700); +@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); + + +// Override theme settings (see ../template/settings.scss) +$backgroundColor: #111; + +$mainFont: 'Open Sans', sans-serif; +$linkColor: #e7ad52; +$linkColorHover: lighten( $linkColor, 20% ); +$headingFont: 'Montserrat', Impact, sans-serif; +$headingTextShadow: none; +$headingLetterSpacing: -0.03em; +$headingTextTransform: none; +$selectionBackgroundColor: #e7ad52; +$mainFontSize: 30px; + + +// Theme template ------------------------------ +@import "../template/theme"; +// ---------------------------------------------
\ No newline at end of file |