2012-10-20 16:57:51 +02:00
|
|
|
// Base theme template for reveal.js
|
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* GLOBAL STYLES
|
|
|
|
*********************************************/
|
|
|
|
|
|
|
|
body {
|
|
|
|
@include bodyBackground();
|
2012-10-29 00:32:24 +01:00
|
|
|
background-color: $backgroundColor;
|
2012-10-20 16:57:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.reveal {
|
|
|
|
font-family: $mainFont;
|
|
|
|
font-size: $mainFontSize;
|
2013-11-08 14:11:35 +01:00
|
|
|
font-weight: normal;
|
2012-10-20 16:57:51 +02:00
|
|
|
color: $mainColor;
|
|
|
|
}
|
|
|
|
|
2012-11-27 15:23:23 +01:00
|
|
|
::selection {
|
|
|
|
color: $selectionColor;
|
|
|
|
background: $selectionBackgroundColor;
|
|
|
|
text-shadow: none;
|
2012-10-20 16:57:51 +02:00
|
|
|
}
|
|
|
|
|
2016-05-23 10:38:46 +02:00
|
|
|
::-moz-selection {
|
|
|
|
color: $selectionColor;
|
|
|
|
background: $selectionBackgroundColor;
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
2014-06-11 12:48:19 +02:00
|
|
|
.reveal .slides>section,
|
|
|
|
.reveal .slides>section>section {
|
2014-09-28 12:14:48 +02:00
|
|
|
line-height: 1.3;
|
2014-06-11 12:48:19 +02:00
|
|
|
font-weight: inherit;
|
|
|
|
}
|
|
|
|
|
2012-10-20 16:57:51 +02:00
|
|
|
/*********************************************
|
|
|
|
* HEADERS
|
|
|
|
*********************************************/
|
|
|
|
|
2012-11-27 15:23:23 +01:00
|
|
|
.reveal h1,
|
|
|
|
.reveal h2,
|
|
|
|
.reveal h3,
|
|
|
|
.reveal h4,
|
|
|
|
.reveal h5,
|
2012-10-20 16:57:51 +02:00
|
|
|
.reveal h6 {
|
2013-07-21 06:32:51 +02:00
|
|
|
margin: $headingMargin;
|
2012-10-20 16:57:51 +02:00
|
|
|
color: $headingColor;
|
|
|
|
|
|
|
|
font-family: $headingFont;
|
2015-01-06 11:42:23 +01:00
|
|
|
font-weight: $headingFontWeight;
|
2012-10-20 16:57:51 +02:00
|
|
|
line-height: $headingLineHeight;
|
|
|
|
letter-spacing: $headingLetterSpacing;
|
2012-11-27 15:23:23 +01:00
|
|
|
|
2012-10-20 16:57:51 +02:00
|
|
|
text-transform: $headingTextTransform;
|
|
|
|
text-shadow: $headingTextShadow;
|
2014-06-11 12:48:19 +02:00
|
|
|
|
|
|
|
word-wrap: break-word;
|
2012-10-20 16:57:51 +02:00
|
|
|
}
|
|
|
|
|
2014-09-28 12:14:48 +02:00
|
|
|
.reveal h1 {font-size: $heading1Size; }
|
|
|
|
.reveal h2 {font-size: $heading2Size; }
|
|
|
|
.reveal h3 {font-size: $heading3Size; }
|
|
|
|
.reveal h4 {font-size: $heading4Size; }
|
2014-06-11 12:48:19 +02:00
|
|
|
|
2012-10-20 16:57:51 +02:00
|
|
|
.reveal h1 {
|
|
|
|
text-shadow: $heading1TextShadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-26 11:25:47 +02:00
|
|
|
/*********************************************
|
|
|
|
* OTHER
|
|
|
|
*********************************************/
|
|
|
|
|
|
|
|
.reveal p {
|
2014-11-05 11:52:32 +01:00
|
|
|
margin: $blockMargin 0;
|
2014-09-28 12:14:48 +02:00
|
|
|
line-height: 1.3;
|
2014-06-11 12:32:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Ensure certain elements are never larger than the slide itself */
|
|
|
|
.reveal img,
|
|
|
|
.reveal video,
|
|
|
|
.reveal iframe {
|
|
|
|
max-width: 95%;
|
|
|
|
max-height: 95%;
|
|
|
|
}
|
|
|
|
.reveal strong,
|
|
|
|
.reveal b {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal em {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal ol,
|
|
|
|
.reveal dl,
|
|
|
|
.reveal ul {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
text-align: left;
|
|
|
|
margin: 0 0 0 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal ol {
|
|
|
|
list-style-type: decimal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal ul {
|
|
|
|
list-style-type: disc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal ul ul {
|
|
|
|
list-style-type: square;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal ul ul ul {
|
|
|
|
list-style-type: circle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal ul ul,
|
|
|
|
.reveal ul ol,
|
|
|
|
.reveal ol ol,
|
|
|
|
.reveal ol ul {
|
|
|
|
display: block;
|
|
|
|
margin-left: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal dt {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal dd {
|
|
|
|
margin-left: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal q,
|
|
|
|
.reveal blockquote {
|
|
|
|
quotes: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal blockquote {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
width: 70%;
|
2014-11-05 11:52:32 +01:00
|
|
|
margin: $blockMargin auto;
|
2014-06-11 12:32:39 +02:00
|
|
|
padding: 5px;
|
|
|
|
|
|
|
|
font-style: italic;
|
|
|
|
background: rgba(255, 255, 255, 0.05);
|
|
|
|
box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
|
|
|
|
}
|
|
|
|
.reveal blockquote p:first-child,
|
|
|
|
.reveal blockquote p:last-child {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal q {
|
|
|
|
font-style: italic;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal pre {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
width: 90%;
|
2014-11-05 11:52:32 +01:00
|
|
|
margin: $blockMargin auto;
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
text-align: left;
|
|
|
|
font-size: 0.55em;
|
|
|
|
font-family: monospace;
|
|
|
|
line-height: 1.2em;
|
|
|
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
|
|
box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
|
|
|
|
}
|
|
|
|
.reveal code {
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal pre code {
|
|
|
|
display: block;
|
|
|
|
padding: 5px;
|
|
|
|
overflow: auto;
|
|
|
|
max-height: 400px;
|
|
|
|
word-wrap: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal table {
|
|
|
|
margin: auto;
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal table th {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal table th,
|
|
|
|
.reveal table td {
|
|
|
|
text-align: left;
|
|
|
|
padding: 0.2em 0.5em 0.2em 0.5em;
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
}
|
|
|
|
|
2015-02-28 19:15:14 +01:00
|
|
|
.reveal table th[align="center"],
|
|
|
|
.reveal table td[align="center"] {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal table th[align="right"],
|
|
|
|
.reveal table td[align="right"] {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2015-05-03 17:40:11 +02:00
|
|
|
.reveal table tbody tr:last-child th,
|
|
|
|
.reveal table tbody tr:last-child td {
|
2015-03-02 12:08:21 +01:00
|
|
|
border-bottom: none;
|
2014-06-11 12:32:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.reveal sup {
|
|
|
|
vertical-align: super;
|
|
|
|
}
|
|
|
|
.reveal sub {
|
|
|
|
vertical-align: sub;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal small {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 0.6em;
|
|
|
|
line-height: 1.2em;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal small * {
|
|
|
|
vertical-align: top;
|
2014-05-26 11:25:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-20 16:57:51 +02:00
|
|
|
/*********************************************
|
|
|
|
* LINKS
|
|
|
|
*********************************************/
|
|
|
|
|
2014-02-17 11:55:38 +01:00
|
|
|
.reveal a {
|
2012-10-20 16:57:51 +02:00
|
|
|
color: $linkColor;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
-webkit-transition: color .15s ease;
|
|
|
|
-moz-transition: color .15s ease;
|
|
|
|
transition: color .15s ease;
|
|
|
|
}
|
2014-02-17 11:55:38 +01:00
|
|
|
.reveal a:hover {
|
2012-10-20 16:57:51 +02:00
|
|
|
color: $linkColorHover;
|
2012-11-27 15:23:23 +01:00
|
|
|
|
2012-10-20 16:57:51 +02:00
|
|
|
text-shadow: none;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal .roll span:after {
|
|
|
|
color: #fff;
|
|
|
|
background: darken( $linkColor, 15% );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* IMAGES
|
|
|
|
*********************************************/
|
|
|
|
|
|
|
|
.reveal section img {
|
2012-11-27 15:23:23 +01:00
|
|
|
margin: 15px 0px;
|
2012-10-20 16:57:51 +02:00
|
|
|
background: rgba(255,255,255,0.12);
|
|
|
|
border: 4px solid $mainColor;
|
2012-11-27 15:23:23 +01:00
|
|
|
|
2012-10-20 16:57:51 +02:00
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
|
|
|
|
2015-02-14 01:43:47 +01:00
|
|
|
.reveal section img.plain {
|
|
|
|
border: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
2014-02-17 11:55:38 +01:00
|
|
|
.reveal a img {
|
|
|
|
-webkit-transition: all .15s linear;
|
|
|
|
-moz-transition: all .15s linear;
|
|
|
|
transition: all .15s linear;
|
|
|
|
}
|
|
|
|
|
2012-10-20 16:57:51 +02:00
|
|
|
.reveal a:hover img {
|
|
|
|
background: rgba(255,255,255,0.2);
|
|
|
|
border-color: $linkColor;
|
2012-11-27 15:23:23 +01:00
|
|
|
|
2012-10-20 16:57:51 +02:00
|
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* NAVIGATION CONTROLS
|
|
|
|
*********************************************/
|
|
|
|
|
2015-07-07 11:37:27 +02:00
|
|
|
.reveal .controls .navigate-left,
|
|
|
|
.reveal .controls .navigate-left.enabled {
|
2012-10-23 05:16:14 +02:00
|
|
|
border-right-color: $linkColor;
|
2012-10-23 04:34:31 +02:00
|
|
|
}
|
|
|
|
|
2015-07-07 11:37:27 +02:00
|
|
|
.reveal .controls .navigate-right,
|
|
|
|
.reveal .controls .navigate-right.enabled {
|
2012-10-23 05:16:14 +02:00
|
|
|
border-left-color: $linkColor;
|
2012-10-23 04:34:31 +02:00
|
|
|
}
|
|
|
|
|
2015-07-07 11:37:27 +02:00
|
|
|
.reveal .controls .navigate-up,
|
|
|
|
.reveal .controls .navigate-up.enabled {
|
2012-10-23 05:16:14 +02:00
|
|
|
border-bottom-color: $linkColor;
|
2012-10-23 04:34:31 +02:00
|
|
|
}
|
|
|
|
|
2015-07-07 11:37:27 +02:00
|
|
|
.reveal .controls .navigate-down,
|
|
|
|
.reveal .controls .navigate-down.enabled {
|
2012-10-23 05:16:14 +02:00
|
|
|
border-top-color: $linkColor;
|
2012-10-23 04:34:31 +02:00
|
|
|
}
|
|
|
|
|
2015-07-07 11:37:27 +02:00
|
|
|
.reveal .controls .navigate-left.enabled:hover {
|
2012-10-23 04:34:31 +02:00
|
|
|
border-right-color: $linkColorHover;
|
|
|
|
}
|
|
|
|
|
2015-07-07 11:37:27 +02:00
|
|
|
.reveal .controls .navigate-right.enabled:hover {
|
2012-10-23 04:34:31 +02:00
|
|
|
border-left-color: $linkColorHover;
|
|
|
|
}
|
|
|
|
|
2015-07-07 11:37:27 +02:00
|
|
|
.reveal .controls .navigate-up.enabled:hover {
|
2012-10-23 04:34:31 +02:00
|
|
|
border-bottom-color: $linkColorHover;
|
|
|
|
}
|
|
|
|
|
2015-07-07 11:37:27 +02:00
|
|
|
.reveal .controls .navigate-down.enabled:hover {
|
2012-10-23 04:34:31 +02:00
|
|
|
border-top-color: $linkColorHover;
|
2012-10-20 16:57:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* PROGRESS BAR
|
|
|
|
*********************************************/
|
|
|
|
|
|
|
|
.reveal .progress {
|
|
|
|
background: rgba(0,0,0,0.2);
|
|
|
|
}
|
|
|
|
.reveal .progress span {
|
|
|
|
background: $linkColor;
|
|
|
|
|
|
|
|
-webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
|
|
|
-moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
|
|
|
transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
|
|
|
|
}
|
|
|
|
|
|
|
|
|