|
@@ -29,6 +29,7 @@
|
|
|
--heading4-size: 1em;
|
|
|
--code-font: monospace;
|
|
|
--link-color: #8b743d;
|
|
|
+ --link-color-dark: #564826;
|
|
|
--link-color-hover: #c0a86e;
|
|
|
--selection-background-color: rgba(79, 64, 28, 0.99);
|
|
|
--selection-color: #fff; }
|
|
@@ -41,22 +42,22 @@
|
|
|
background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
|
|
|
background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
|
|
|
background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);
|
|
|
- background-color: #f7f3de; }
|
|
|
+ background-color: var(--background-color); }
|
|
|
|
|
|
.reveal {
|
|
|
- font-family: "Lato", sans-serif;
|
|
|
- font-size: 40px;
|
|
|
+ font-family: var(--main-font);
|
|
|
+ font-size: var(--main-font-size);
|
|
|
font-weight: normal;
|
|
|
- color: #333; }
|
|
|
+ color: var(--main-color); }
|
|
|
|
|
|
.reveal ::selection {
|
|
|
- color: #fff;
|
|
|
- background: rgba(79, 64, 28, 0.99);
|
|
|
+ color: var(--selection-color);
|
|
|
+ background: var(--selection-background-color);
|
|
|
text-shadow: none; }
|
|
|
|
|
|
.reveal ::-moz-selection {
|
|
|
- color: #fff;
|
|
|
- background: rgba(79, 64, 28, 0.99);
|
|
|
+ color: var(--selection-color);
|
|
|
+ background: var(--selection-background-color);
|
|
|
text-shadow: none; }
|
|
|
|
|
|
.reveal .slides section,
|
|
@@ -73,36 +74,36 @@
|
|
|
.reveal h4,
|
|
|
.reveal h5,
|
|
|
.reveal h6 {
|
|
|
- margin: 0 0 20px 0;
|
|
|
- color: #333;
|
|
|
- font-family: "League Gothic", Impact, sans-serif;
|
|
|
- font-weight: normal;
|
|
|
- line-height: 1.2;
|
|
|
- letter-spacing: normal;
|
|
|
- text-transform: uppercase;
|
|
|
- text-shadow: none;
|
|
|
+ margin: var(--heading-margin);
|
|
|
+ color: var(--heading-color);
|
|
|
+ font-family: var(--heading-font);
|
|
|
+ font-weight: var(--heading-font-weight);
|
|
|
+ line-height: var(--heading-line-height);
|
|
|
+ letter-spacing: var(--heading-letter-spacing);
|
|
|
+ text-transform: var(--heading-text-transform);
|
|
|
+ text-shadow: var(--heading-text-shadow);
|
|
|
word-wrap: break-word; }
|
|
|
|
|
|
.reveal h1 {
|
|
|
- font-size: 3.77em; }
|
|
|
+ font-size: var(--heading1-size); }
|
|
|
|
|
|
.reveal h2 {
|
|
|
- font-size: 2.11em; }
|
|
|
+ font-size: var(--heading2-size); }
|
|
|
|
|
|
.reveal h3 {
|
|
|
- font-size: 1.55em; }
|
|
|
+ font-size: var(--heading3-size); }
|
|
|
|
|
|
.reveal h4 {
|
|
|
- font-size: 1em; }
|
|
|
+ font-size: var(--heading4-size); }
|
|
|
|
|
|
.reveal h1 {
|
|
|
- text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }
|
|
|
+ text-shadow: var(--heading1-text-shadow); }
|
|
|
|
|
|
/*********************************************
|
|
|
* OTHER
|
|
|
*********************************************/
|
|
|
.reveal p {
|
|
|
- margin: 20px 0;
|
|
|
+ margin: var(--block-margin) 0;
|
|
|
line-height: 1.3; }
|
|
|
|
|
|
/* Ensure certain elements are never larger than the slide itself */
|
|
@@ -155,7 +156,7 @@
|
|
|
display: block;
|
|
|
position: relative;
|
|
|
width: 70%;
|
|
|
- margin: 20px auto;
|
|
|
+ margin: var(--block-margin) auto;
|
|
|
padding: 5px;
|
|
|
font-style: italic;
|
|
|
background: rgba(255, 255, 255, 0.05);
|
|
@@ -172,16 +173,16 @@
|
|
|
display: block;
|
|
|
position: relative;
|
|
|
width: 90%;
|
|
|
- margin: 20px auto;
|
|
|
+ margin: var(--block-margin) auto;
|
|
|
text-align: left;
|
|
|
font-size: 0.55em;
|
|
|
- font-family: monospace;
|
|
|
+ font-family: var(--code-font);
|
|
|
line-height: 1.2em;
|
|
|
word-wrap: break-word;
|
|
|
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); }
|
|
|
|
|
|
.reveal code {
|
|
|
- font-family: monospace;
|
|
|
+ font-family: var(--code-font);
|
|
|
text-transform: none; }
|
|
|
|
|
|
.reveal pre code {
|
|
@@ -235,55 +236,55 @@
|
|
|
vertical-align: top; }
|
|
|
|
|
|
.reveal img {
|
|
|
- margin: 20px 0; }
|
|
|
+ margin: var(--block-margin) 0; }
|
|
|
|
|
|
/*********************************************
|
|
|
* LINKS
|
|
|
*********************************************/
|
|
|
.reveal a {
|
|
|
- color: #8b743d;
|
|
|
+ color: var(--link-color);
|
|
|
text-decoration: none;
|
|
|
transition: color .15s ease; }
|
|
|
|
|
|
.reveal a:hover {
|
|
|
- color: #c0a86e;
|
|
|
+ color: var(--link-color-hover);
|
|
|
text-shadow: none;
|
|
|
border: none; }
|
|
|
|
|
|
.reveal .roll span:after {
|
|
|
color: #fff;
|
|
|
- background: #564826; }
|
|
|
+ background: var(--link-color-dark); }
|
|
|
|
|
|
/*********************************************
|
|
|
* Frame helper
|
|
|
*********************************************/
|
|
|
.reveal .r-frame {
|
|
|
- border: 4px solid #333;
|
|
|
+ border: 4px solid var(--main-color);
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
|
|
|
|
|
|
.reveal a .r-frame {
|
|
|
transition: all .15s linear; }
|
|
|
|
|
|
.reveal a:hover .r-frame {
|
|
|
- border-color: #8b743d;
|
|
|
+ border-color: var(--link-color);
|
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
|
|
|
|
|
|
/*********************************************
|
|
|
* NAVIGATION CONTROLS
|
|
|
*********************************************/
|
|
|
.reveal .controls {
|
|
|
- color: #8b743d; }
|
|
|
+ color: var(--link-color); }
|
|
|
|
|
|
/*********************************************
|
|
|
* PROGRESS BAR
|
|
|
*********************************************/
|
|
|
.reveal .progress {
|
|
|
background: rgba(0, 0, 0, 0.2);
|
|
|
- color: #8b743d; }
|
|
|
+ color: var(--link-color); }
|
|
|
|
|
|
/*********************************************
|
|
|
* PRINT BACKGROUND
|
|
|
*********************************************/
|
|
|
@media print {
|
|
|
.backgrounds {
|
|
|
- background-color: #f7f3de; } }
|
|
|
+ background-color: var(--background-color); } }
|