summaryrefslogtreecommitdiffhomepage
path: root/presentation/css/theme/template/settings.scss
diff options
context:
space:
mode:
authorMarvin Borner2021-07-13 19:40:17 +0200
committerMarvin Borner2021-07-13 19:40:17 +0200
commit08cd951ea8410bc87e316e6c11d34a118437ba8b (patch)
treef57baaee689ee81b590bb5d01df3591da10cccc7 /presentation/css/theme/template/settings.scss
parent1b429c0fc28e5cd8b474ad5a1de1fa6f3d7c2e2a (diff)
Added colloq summary and final presentation
Diffstat (limited to 'presentation/css/theme/template/settings.scss')
-rw-r--r--presentation/css/theme/template/settings.scss45
1 files changed, 45 insertions, 0 deletions
diff --git a/presentation/css/theme/template/settings.scss b/presentation/css/theme/template/settings.scss
new file mode 100644
index 0000000..5a917f8
--- /dev/null
+++ b/presentation/css/theme/template/settings.scss
@@ -0,0 +1,45 @@
+// 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: 40px;
+$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;
+
+$codeFont: monospace;
+
+// 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;
+}