2012-10-20 14:57:51 +00:00
|
|
|
// Base theme template for reveal.js
|
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* GLOBAL STYLES
|
|
|
|
*********************************************/
|
|
|
|
|
|
|
|
body {
|
|
|
|
@include bodyBackground();
|
2012-10-28 23:32:24 +00:00
|
|
|
background-color: $backgroundColor;
|
2012-10-20 14:57:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.reveal {
|
|
|
|
font-family: $mainFont;
|
|
|
|
font-size: $mainFontSize;
|
2013-11-08 13:11:35 +00:00
|
|
|
font-weight: normal;
|
2012-10-20 14:57:51 +00:00
|
|
|
letter-spacing: -0.02em;
|
|
|
|
color: $mainColor;
|
|
|
|
}
|
|
|
|
|
2012-11-27 14:23:23 +00:00
|
|
|
::selection {
|
|
|
|
color: $selectionColor;
|
|
|
|
background: $selectionBackgroundColor;
|
|
|
|
text-shadow: none;
|
2012-10-20 14:57:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* HEADERS
|
|
|
|
*********************************************/
|
|
|
|
|
2012-11-27 14:23:23 +00:00
|
|
|
.reveal h1,
|
|
|
|
.reveal h2,
|
|
|
|
.reveal h3,
|
|
|
|
.reveal h4,
|
|
|
|
.reveal h5,
|
2012-10-20 14:57:51 +00:00
|
|
|
.reveal h6 {
|
2013-07-21 04:32:51 +00:00
|
|
|
margin: $headingMargin;
|
2012-10-20 14:57:51 +00:00
|
|
|
color: $headingColor;
|
|
|
|
|
|
|
|
font-family: $headingFont;
|
|
|
|
line-height: $headingLineHeight;
|
|
|
|
letter-spacing: $headingLetterSpacing;
|
2012-11-27 14:23:23 +00:00
|
|
|
|
2012-10-20 14:57:51 +00:00
|
|
|
text-transform: $headingTextTransform;
|
|
|
|
text-shadow: $headingTextShadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal h1 {
|
|
|
|
text-shadow: $heading1TextShadow;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* LINKS
|
|
|
|
*********************************************/
|
|
|
|
|
2014-02-17 10:55:38 +00:00
|
|
|
.reveal a {
|
2012-10-20 14:57:51 +00:00
|
|
|
color: $linkColor;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
-webkit-transition: color .15s ease;
|
|
|
|
-moz-transition: color .15s ease;
|
|
|
|
transition: color .15s ease;
|
|
|
|
}
|
2014-02-17 10:55:38 +00:00
|
|
|
.reveal a:hover {
|
2012-10-20 14:57:51 +00:00
|
|
|
color: $linkColorHover;
|
2012-11-27 14:23:23 +00:00
|
|
|
|
2012-10-20 14:57:51 +00:00
|
|
|
text-shadow: none;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal .roll span:after {
|
|
|
|
color: #fff;
|
|
|
|
background: darken( $linkColor, 15% );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* IMAGES
|
|
|
|
*********************************************/
|
|
|
|
|
|
|
|
.reveal section img {
|
2012-11-27 14:23:23 +00:00
|
|
|
margin: 15px 0px;
|
2012-10-20 14:57:51 +00:00
|
|
|
background: rgba(255,255,255,0.12);
|
|
|
|
border: 4px solid $mainColor;
|
2012-11-27 14:23:23 +00:00
|
|
|
|
2012-10-20 14:57:51 +00:00
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
|
|
|
|
2014-02-17 10:55:38 +00:00
|
|
|
.reveal a img {
|
|
|
|
-webkit-transition: all .15s linear;
|
|
|
|
-moz-transition: all .15s linear;
|
|
|
|
transition: all .15s linear;
|
|
|
|
}
|
|
|
|
|
2012-10-20 14:57:51 +00:00
|
|
|
.reveal a:hover img {
|
|
|
|
background: rgba(255,255,255,0.2);
|
|
|
|
border-color: $linkColor;
|
2012-11-27 14:23:23 +00:00
|
|
|
|
2012-10-20 14:57:51 +00:00
|
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* NAVIGATION CONTROLS
|
|
|
|
*********************************************/
|
|
|
|
|
2012-11-10 16:40:19 +00:00
|
|
|
.reveal .controls div.navigate-left,
|
|
|
|
.reveal .controls div.navigate-left.enabled {
|
2012-10-23 03:16:14 +00:00
|
|
|
border-right-color: $linkColor;
|
2012-10-23 02:34:31 +00:00
|
|
|
}
|
|
|
|
|
2012-11-10 16:40:19 +00:00
|
|
|
.reveal .controls div.navigate-right,
|
|
|
|
.reveal .controls div.navigate-right.enabled {
|
2012-10-23 03:16:14 +00:00
|
|
|
border-left-color: $linkColor;
|
2012-10-23 02:34:31 +00:00
|
|
|
}
|
|
|
|
|
2012-11-10 16:40:19 +00:00
|
|
|
.reveal .controls div.navigate-up,
|
|
|
|
.reveal .controls div.navigate-up.enabled {
|
2012-10-23 03:16:14 +00:00
|
|
|
border-bottom-color: $linkColor;
|
2012-10-23 02:34:31 +00:00
|
|
|
}
|
|
|
|
|
2012-11-10 16:40:19 +00:00
|
|
|
.reveal .controls div.navigate-down,
|
|
|
|
.reveal .controls div.navigate-down.enabled {
|
2012-10-23 03:16:14 +00:00
|
|
|
border-top-color: $linkColor;
|
2012-10-23 02:34:31 +00:00
|
|
|
}
|
|
|
|
|
2012-11-10 16:40:19 +00:00
|
|
|
.reveal .controls div.navigate-left.enabled:hover {
|
2012-10-23 02:34:31 +00:00
|
|
|
border-right-color: $linkColorHover;
|
|
|
|
}
|
|
|
|
|
2012-11-10 16:40:19 +00:00
|
|
|
.reveal .controls div.navigate-right.enabled:hover {
|
2012-10-23 02:34:31 +00:00
|
|
|
border-left-color: $linkColorHover;
|
|
|
|
}
|
|
|
|
|
2012-11-10 16:40:19 +00:00
|
|
|
.reveal .controls div.navigate-up.enabled:hover {
|
2012-10-23 02:34:31 +00:00
|
|
|
border-bottom-color: $linkColorHover;
|
|
|
|
}
|
|
|
|
|
2012-11-10 16:40:19 +00:00
|
|
|
.reveal .controls div.navigate-down.enabled:hover {
|
2012-10-23 02:34:31 +00:00
|
|
|
border-top-color: $linkColorHover;
|
2012-10-20 14:57:51 +00: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);
|
|
|
|
}
|
|
|
|
|
2013-11-27 16:00:21 +00:00
|
|
|
/*********************************************
|
|
|
|
* SLIDE NUMBER
|
|
|
|
*********************************************/
|
|
|
|
.reveal .slide-number {
|
|
|
|
color: $linkColor;
|
|
|
|
}
|
|
|
|
|
2012-10-20 14:57:51 +00:00
|
|
|
|