summaryrefslogtreecommitdiffstats
path: root/_build/static/talks/gun-2.0/css/theme/template/settings.scss
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2019-09-09 19:29:19 +0200
committerLoïc Hoguin <[email protected]>2019-09-09 19:31:54 +0200
commit9e73b9fbbf91ebcf5b8027d97275bffe77316e14 (patch)
treecb2082bcd47934744f1a036dbda2862cee1c6a56 /_build/static/talks/gun-2.0/css/theme/template/settings.scss
parent39dd660af26f88e78a9e511d16abedf93fd19587 (diff)
downloadninenines.eu-9e73b9fbbf91ebcf5b8027d97275bffe77316e14.tar.gz
ninenines.eu-9e73b9fbbf91ebcf5b8027d97275bffe77316e14.tar.bz2
ninenines.eu-9e73b9fbbf91ebcf5b8027d97275bffe77316e14.zip
Gun 2.0 talk
Diffstat (limited to '_build/static/talks/gun-2.0/css/theme/template/settings.scss')
-rw-r--r--_build/static/talks/gun-2.0/css/theme/template/settings.scss43
1 files changed, 43 insertions, 0 deletions
diff --git a/_build/static/talks/gun-2.0/css/theme/template/settings.scss b/_build/static/talks/gun-2.0/css/theme/template/settings.scss
new file mode 100644
index 00000000..63c02cfd
--- /dev/null
+++ b/_build/static/talks/gun-2.0/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: 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;
+
+// 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