aboutsummaryrefslogtreecommitdiffstats
path: root/docs/com/css/theme/template/settings.scss
diff options
context:
space:
mode:
authorMorgan Richomme <morgan.richomme@orange.com>2016-06-01 14:42:03 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-06-01 14:42:03 +0000
commita574679f7b2636e74e6a262f4badad0445d10c3a (patch)
tree466429721c3454a9236b033a788ca72f9f4f4507 /docs/com/css/theme/template/settings.scss
parent70b96b8719b48c51b59182162fe8e018c55e7364 (diff)
parentbb522c6efd9a02e611014038566b15feb28da0c8 (diff)
Merge "Add framework for presentations"
Diffstat (limited to 'docs/com/css/theme/template/settings.scss')
-rwxr-xr-xdocs/com/css/theme/template/settings.scss43
1 files changed, 43 insertions, 0 deletions
diff --git a/docs/com/css/theme/template/settings.scss b/docs/com/css/theme/template/settings.scss
new file mode 100755
index 00000000..ffaac235
--- /dev/null
+++ b/docs/com/css/theme/template/settings.scss
@@ -0,0 +1,43 @@
+// Base settings for all themes that can optionally be
+// overridden by the super-theme
+
+// Background of the presentation
+$backgroundColor: #2b2b2b;
+
+// Primary/body text
+$mainFont: 'Lato', sans-serif;
+$mainFontSize: 36px;
+$mainColor: #eee;
+
+// Vertical spacing between blocks of text
+$blockMargin: 20px;
+
+// Headings
+$headingMargin: 0 0 $blockMargin 0;
+$headingFont: 'League Gothic', Impact, sans-serif;
+$headingColor: #eee;
+$headingLineHeight: 1.2;
+$headingLetterSpacing: normal;
+$headingTextTransform: uppercase;
+$headingTextShadow: none;
+$headingFontWeight: normal;
+$heading1TextShadow: $headingTextShadow;
+
+$heading1Size: 3.77em;
+$heading2Size: 2.11em;
+$heading3Size: 1.55em;
+$heading4Size: 1.00em;
+
+// Links and actions
+$linkColor: #13DAEC;
+$linkColorHover: lighten( $linkColor, 20% );
+
+// Text selection
+$selectionBackgroundColor: #FF5E99;
+$selectionColor: #fff;
+
+// Generates the presentation background, can be overridden
+// to return a background image or gradient
+@mixin bodyBackground() {
+ background: $backgroundColor;
+} \ No newline at end of file