2012-10-20 16:57:51 +02:00
|
|
|
/**
|
2013-03-04 22:37:15 +01:00
|
|
|
* A simple theme for reveal.js presentations, similar
|
2013-06-14 01:48:20 +02:00
|
|
|
* to the default theme. The accent color is brown.
|
2013-03-04 22:37:15 +01:00
|
|
|
*
|
2013-06-14 01:48:20 +02:00
|
|
|
* This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.
|
2012-10-20 16:57:51 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
// Default mixins and settings -----------------
|
|
|
|
@import "../template/mixins";
|
|
|
|
@import "../template/settings";
|
|
|
|
// ---------------------------------------------
|
|
|
|
|
|
|
|
// Override theme settings (see ../template/settings.scss)
|
2023-05-23 19:50:14 +02:00
|
|
|
$mainFont: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
|
2012-10-20 16:57:51 +02:00
|
|
|
$mainColor: #000;
|
2023-05-23 19:50:14 +02:00
|
|
|
$headingFont: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
|
|
|
|
$headingColor: #383d3d;
|
2012-10-20 16:57:51 +02:00
|
|
|
$headingTextShadow: none;
|
|
|
|
$headingTextTransform: none;
|
2023-05-23 19:50:14 +02:00
|
|
|
$backgroundColor: #f0f1eb;
|
|
|
|
$linkColor: #51483d;
|
|
|
|
$linkColorHover: lighten($linkColor, 20%);
|
|
|
|
$selectionBackgroundColor: #26351c;
|
2012-10-20 16:57:51 +02:00
|
|
|
|
2014-02-17 11:55:38 +01:00
|
|
|
.reveal a {
|
2013-06-14 01:48:20 +02:00
|
|
|
line-height: 1.3em;
|
|
|
|
}
|
2012-10-20 16:57:51 +02:00
|
|
|
|
2020-06-05 10:02:49 +02:00
|
|
|
// Change text colors against dark slide backgrounds
|
|
|
|
@include dark-bg-text-color(#fff);
|
|
|
|
|
2012-10-20 16:57:51 +02:00
|
|
|
// Theme template ------------------------------
|
|
|
|
@import "../template/theme";
|
2013-06-14 01:48:20 +02:00
|
|
|
// ---------------------------------------------
|