2013-02-21 22:48:54 +01:00
|
|
|
/**
|
2013-03-04 23:54:59 +01:00
|
|
|
* Solarized Light theme for reveal.js.
|
2013-02-21 22:48:54 +01:00
|
|
|
* Author: Achim Staebler
|
|
|
|
*/
|
2015-10-06 19:40:06 +02:00
|
|
|
@import url(../../lib/font/league-gothic/league-gothic.css);
|
|
|
|
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
|
2013-02-21 22:48:54 +01:00
|
|
|
/**
|
2013-02-21 22:57:06 +01:00
|
|
|
* Solarized colors by Ethan Schoonover
|
2013-02-21 22:48:54 +01:00
|
|
|
*/
|
|
|
|
html * {
|
|
|
|
color-profile: sRGB;
|
|
|
|
rendering-intent: auto; }
|
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* GLOBAL STYLES
|
|
|
|
*********************************************/
|
|
|
|
body {
|
2013-03-04 23:54:59 +01:00
|
|
|
background: #fdf6e3;
|
|
|
|
background-color: #fdf6e3; }
|
2013-02-21 22:48:54 +01:00
|
|
|
|
|
|
|
.reveal {
|
2015-10-06 19:40:06 +02:00
|
|
|
font-family: "Lato", sans-serif;
|
2016-06-10 10:58:40 +02:00
|
|
|
font-size: 40px;
|
2013-11-08 14:11:35 +01:00
|
|
|
font-weight: normal;
|
2013-03-04 23:54:59 +01:00
|
|
|
color: #657b83; }
|
2013-02-21 22:48:54 +01:00
|
|
|
|
|
|
|
::selection {
|
2014-10-04 09:00:57 +02:00
|
|
|
color: #fff;
|
2013-02-21 22:48:54 +01:00
|
|
|
background: #d33682;
|
|
|
|
text-shadow: none; }
|
|
|
|
|
2016-04-27 20:50:03 +02:00
|
|
|
::-moz-selection {
|
|
|
|
color: #fff;
|
|
|
|
background: #d33682;
|
|
|
|
text-shadow: none; }
|
|
|
|
|
2015-10-06 19:40:06 +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; }
|
|
|
|
|
2013-02-21 22:48:54 +01:00
|
|
|
/*********************************************
|
|
|
|
* HEADERS
|
|
|
|
*********************************************/
|
2015-10-06 19:40:06 +02:00
|
|
|
.reveal h1,
|
|
|
|
.reveal h2,
|
|
|
|
.reveal h3,
|
|
|
|
.reveal h4,
|
|
|
|
.reveal h5,
|
|
|
|
.reveal h6 {
|
2013-02-21 22:48:54 +01:00
|
|
|
margin: 0 0 20px 0;
|
2013-03-04 23:54:59 +01:00
|
|
|
color: #586e75;
|
2015-10-06 19:40:06 +02:00
|
|
|
font-family: "League Gothic", Impact, sans-serif;
|
2015-01-06 11:42:23 +01:00
|
|
|
font-weight: normal;
|
2014-09-28 12:14:48 +02:00
|
|
|
line-height: 1.2;
|
|
|
|
letter-spacing: normal;
|
2013-02-21 22:48:54 +01:00
|
|
|
text-transform: uppercase;
|
2014-06-11 12:48:19 +02:00
|
|
|
text-shadow: none;
|
|
|
|
word-wrap: break-word; }
|
|
|
|
|
|
|
|
.reveal h1 {
|
|
|
|
font-size: 3.77em; }
|
|
|
|
|
|
|
|
.reveal h2 {
|
|
|
|
font-size: 2.11em; }
|
|
|
|
|
|
|
|
.reveal h3 {
|
|
|
|
font-size: 1.55em; }
|
|
|
|
|
|
|
|
.reveal h4 {
|
|
|
|
font-size: 1em; }
|
2013-02-21 22:48:54 +01:00
|
|
|
|
|
|
|
.reveal h1 {
|
2014-09-28 12:14:48 +02:00
|
|
|
text-shadow: none; }
|
2013-02-21 22:48:54 +01:00
|
|
|
|
2014-05-26 11:25:47 +02:00
|
|
|
/*********************************************
|
|
|
|
* OTHER
|
|
|
|
*********************************************/
|
|
|
|
.reveal p {
|
2014-11-05 11:52:32 +01:00
|
|
|
margin: 20px 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 */
|
2015-10-06 19:40:06 +02:00
|
|
|
.reveal img,
|
|
|
|
.reveal video,
|
|
|
|
.reveal iframe {
|
2014-06-11 12:32:39 +02:00
|
|
|
max-width: 95%;
|
|
|
|
max-height: 95%; }
|
|
|
|
|
2015-10-06 19:40:06 +02:00
|
|
|
.reveal strong,
|
|
|
|
.reveal b {
|
2014-06-11 12:32:39 +02:00
|
|
|
font-weight: bold; }
|
|
|
|
|
|
|
|
.reveal em {
|
|
|
|
font-style: italic; }
|
|
|
|
|
2015-10-06 19:40:06 +02:00
|
|
|
.reveal ol,
|
|
|
|
.reveal dl,
|
|
|
|
.reveal ul {
|
2014-06-11 12:32:39 +02:00
|
|
|
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; }
|
|
|
|
|
2015-10-06 19:40:06 +02:00
|
|
|
.reveal ul ul,
|
|
|
|
.reveal ul ol,
|
|
|
|
.reveal ol ol,
|
|
|
|
.reveal ol ul {
|
2014-06-11 12:32:39 +02:00
|
|
|
display: block;
|
|
|
|
margin-left: 40px; }
|
|
|
|
|
|
|
|
.reveal dt {
|
|
|
|
font-weight: bold; }
|
|
|
|
|
|
|
|
.reveal dd {
|
|
|
|
margin-left: 40px; }
|
|
|
|
|
|
|
|
.reveal blockquote {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
width: 70%;
|
2014-11-05 11:52:32 +01:00
|
|
|
margin: 20px 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); }
|
|
|
|
|
2015-10-06 19:40:06 +02:00
|
|
|
.reveal blockquote p:first-child,
|
|
|
|
.reveal blockquote p:last-child {
|
2014-06-11 12:32:39 +02:00
|
|
|
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: 20px 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 {
|
2017-09-06 16:50:39 +02:00
|
|
|
font-family: monospace;
|
|
|
|
text-transform: none; }
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal pre code {
|
|
|
|
display: block;
|
|
|
|
padding: 5px;
|
|
|
|
overflow: auto;
|
|
|
|
max-height: 400px;
|
2015-07-02 14:58:47 +02:00
|
|
|
word-wrap: normal; }
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal table {
|
|
|
|
margin: auto;
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0; }
|
|
|
|
|
|
|
|
.reveal table th {
|
|
|
|
font-weight: bold; }
|
|
|
|
|
2015-10-06 19:40:06 +02:00
|
|
|
.reveal table th,
|
|
|
|
.reveal table td {
|
2014-06-11 12:32:39 +02:00
|
|
|
text-align: left;
|
|
|
|
padding: 0.2em 0.5em 0.2em 0.5em;
|
|
|
|
border-bottom: 1px solid; }
|
|
|
|
|
2015-10-06 19:40:06 +02:00
|
|
|
.reveal table th[align="center"],
|
|
|
|
.reveal table td[align="center"] {
|
2015-02-28 19:15:14 +01:00
|
|
|
text-align: center; }
|
|
|
|
|
2015-10-06 19:40:06 +02:00
|
|
|
.reveal table th[align="right"],
|
|
|
|
.reveal table td[align="right"] {
|
2015-02-28 19:15:14 +01:00
|
|
|
text-align: right; }
|
|
|
|
|
2016-01-11 10:17:02 +01:00
|
|
|
.reveal table tbody tr:last-child th,
|
|
|
|
.reveal table tbody tr:last-child td {
|
2014-06-11 12:32:39 +02:00
|
|
|
border-bottom: none; }
|
|
|
|
|
|
|
|
.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
|
|
|
|
2013-02-21 22:48:54 +01:00
|
|
|
/*********************************************
|
|
|
|
* LINKS
|
|
|
|
*********************************************/
|
2014-02-17 11:55:38 +01:00
|
|
|
.reveal a {
|
2013-02-21 22:48:54 +01:00
|
|
|
color: #268bd2;
|
|
|
|
text-decoration: none;
|
2016-01-08 13:59:12 +01:00
|
|
|
-webkit-transition: color .15s ease;
|
|
|
|
-moz-transition: color .15s ease;
|
|
|
|
transition: color .15s ease; }
|
2013-02-21 22:48:54 +01:00
|
|
|
|
2014-02-17 11:55:38 +01:00
|
|
|
.reveal a:hover {
|
2015-10-06 19:40:06 +02:00
|
|
|
color: #78b9e6;
|
2013-02-21 22:48:54 +01:00
|
|
|
text-shadow: none;
|
|
|
|
border: none; }
|
|
|
|
|
|
|
|
.reveal .roll span:after {
|
|
|
|
color: #fff;
|
2015-10-06 19:40:06 +02:00
|
|
|
background: #1a6091; }
|
2013-02-21 22:48:54 +01:00
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* IMAGES
|
|
|
|
*********************************************/
|
|
|
|
.reveal section img {
|
|
|
|
margin: 15px 0px;
|
|
|
|
background: rgba(255, 255, 255, 0.12);
|
2013-03-04 23:54:59 +01:00
|
|
|
border: 4px solid #657b83;
|
2014-02-17 11:55:38 +01: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 {
|
2016-01-08 13:59:12 +01:00
|
|
|
-webkit-transition: all .15s linear;
|
|
|
|
-moz-transition: all .15s linear;
|
|
|
|
transition: all .15s linear; }
|
2013-02-21 22:48:54 +01:00
|
|
|
|
|
|
|
.reveal a:hover img {
|
|
|
|
background: rgba(255, 255, 255, 0.2);
|
|
|
|
border-color: #268bd2;
|
|
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
|
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* NAVIGATION CONTROLS
|
|
|
|
*********************************************/
|
2016-06-28 12:34:23 +02:00
|
|
|
.reveal .controls {
|
|
|
|
color: #268bd2; }
|
2016-04-20 13:45:03 +02:00
|
|
|
|
2013-02-21 22:48:54 +01:00
|
|
|
/*********************************************
|
|
|
|
* PROGRESS BAR
|
|
|
|
*********************************************/
|
|
|
|
.reveal .progress {
|
2017-05-18 09:58:25 +02:00
|
|
|
background: rgba(0, 0, 0, 0.2);
|
|
|
|
color: #268bd2; }
|
2013-02-21 22:48:54 +01:00
|
|
|
|
|
|
|
.reveal .progress span {
|
|
|
|
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
|
|
|
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
|
|
|
|
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
|