2014-09-28 11:17:16 +02:00
|
|
|
/**
|
|
|
|
* Black theme for reveal.js.
|
|
|
|
*
|
2015-01-06 11:42:23 +01:00
|
|
|
* Copyright (C) 2015 Hakim El Hattab, http://hakim.se
|
2014-09-28 11:17:16 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
// Default mixins and settings -----------------
|
|
|
|
@import "../template/mixins";
|
|
|
|
@import "../template/settings";
|
|
|
|
// ---------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
// Include theme-specific fonts
|
2015-01-06 11:42:23 +01:00
|
|
|
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,400italic,600italic&subset=latin,latin-ext);
|
2014-09-28 11:17:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Override theme settings (see ../template/settings.scss)
|
2014-12-10 18:18:57 +01:00
|
|
|
$backgroundColor: #222;
|
2014-09-28 11:17:16 +02:00
|
|
|
|
2014-09-28 12:14:48 +02:00
|
|
|
$mainColor: #fff;
|
|
|
|
$headingColor: #fff;
|
|
|
|
|
2015-01-06 11:42:23 +01:00
|
|
|
$mainFontSize: 38px;
|
|
|
|
$mainFont: 'Source Sans Pro', Helvetica, sans-serif;
|
|
|
|
$headingFont: 'Source Sans Pro', Helvetica, sans-serif;
|
2014-09-28 11:17:16 +02:00
|
|
|
$headingTextShadow: none;
|
|
|
|
$headingLetterSpacing: normal;
|
2014-09-28 12:14:48 +02:00
|
|
|
$headingTextTransform: uppercase;
|
2015-01-06 11:42:23 +01:00
|
|
|
$headingFontWeight: 600;
|
|
|
|
$linkColor: #42affa;
|
2014-09-28 11:17:16 +02:00
|
|
|
$linkColorHover: lighten( $linkColor, 15% );
|
|
|
|
$selectionBackgroundColor: lighten( $linkColor, 25% );
|
|
|
|
|
2014-12-10 18:18:57 +01:00
|
|
|
$heading1Size: 2.5em;
|
|
|
|
$heading2Size: 1.6em;
|
|
|
|
$heading3Size: 1.3em;
|
2014-09-28 12:14:48 +02:00
|
|
|
$heading4Size: 1.0em;
|
|
|
|
|
2014-12-10 18:18:57 +01:00
|
|
|
section.has-light-background {
|
|
|
|
&, h1, h2, h3, h4, h5, h6 {
|
|
|
|
color: #222;
|
|
|
|
}
|
|
|
|
}
|
2014-09-28 12:14:48 +02:00
|
|
|
|
2014-09-28 11:17:16 +02:00
|
|
|
|
|
|
|
// Theme template ------------------------------
|
|
|
|
@import "../template/theme";
|
|
|
|
// ---------------------------------------------
|