2014-10-04 09:00:57 +02:00
|
|
|
@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);
|
2013-09-22 17:54:45 +02:00
|
|
|
/**
|
|
|
|
* Blood theme for reveal.js
|
|
|
|
* Author: Walther http://github.com/Walther
|
|
|
|
*
|
|
|
|
* Designed to be used with highlight.js theme
|
|
|
|
* "monokai_sublime.css" available from
|
|
|
|
* https://github.com/isagalaev/highlight.js/
|
|
|
|
*
|
|
|
|
* For other themes, change $codeBackground accordingly.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/*********************************************
|
|
|
|
* GLOBAL STYLES
|
|
|
|
*********************************************/
|
|
|
|
body {
|
2014-10-04 09:00:57 +02:00
|
|
|
background: #222;
|
|
|
|
background: -moz-radial-gradient(center, circle cover, #626262 0%, #222 100%);
|
|
|
|
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #626262), color-stop(100%, #222));
|
|
|
|
background: -webkit-radial-gradient(center, circle cover, #626262 0%, #222 100%);
|
|
|
|
background: -o-radial-gradient(center, circle cover, #626262 0%, #222 100%);
|
|
|
|
background: -ms-radial-gradient(center, circle cover, #626262 0%, #222 100%);
|
|
|
|
background: radial-gradient(center, circle cover, #626262 0%, #222 100%);
|
2013-09-22 17:54:45 +02:00
|
|
|
background-color: #2b2b2b; }
|
|
|
|
|
|
|
|
.reveal {
|
2014-10-04 09:00:57 +02:00
|
|
|
font-family: Ubuntu, 'sans-serif';
|
2013-09-22 17:54:45 +02:00
|
|
|
font-size: 36px;
|
2013-11-08 14:11:35 +01:00
|
|
|
font-weight: normal;
|
2014-10-04 09:00:57 +02:00
|
|
|
color: #eee; }
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
::selection {
|
2014-10-04 09:00:57 +02:00
|
|
|
color: #fff;
|
|
|
|
background: #a23;
|
2013-09-22 17:54:45 +02:00
|
|
|
text-shadow: none; }
|
|
|
|
|
2014-10-04 09:00:57 +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-09-22 17:54:45 +02:00
|
|
|
/*********************************************
|
|
|
|
* HEADERS
|
|
|
|
*********************************************/
|
2014-10-04 09:00:57 +02:00
|
|
|
.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
|
2013-09-22 17:54:45 +02:00
|
|
|
margin: 0 0 20px 0;
|
2014-10-04 09:00:57 +02:00
|
|
|
color: #eee;
|
|
|
|
font-family: Ubuntu, '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-09-22 17:54:45 +02:00
|
|
|
text-transform: uppercase;
|
2014-10-04 09:00:57 +02:00
|
|
|
text-shadow: 2px 2px 2px #222;
|
2014-06-11 12:48:19 +02:00
|
|
|
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-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
.reveal h1 {
|
2014-10-04 09:00:57 +02:00
|
|
|
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); }
|
2013-09-22 17:54:45 +02: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 */
|
2014-10-04 09:00:57 +02:00
|
|
|
.reveal img, .reveal video, .reveal iframe {
|
2014-06-11 12:32:39 +02:00
|
|
|
max-width: 95%;
|
|
|
|
max-height: 95%; }
|
|
|
|
|
2014-10-04 09:00:57 +02:00
|
|
|
.reveal strong, .reveal b {
|
2014-06-11 12:32:39 +02:00
|
|
|
font-weight: bold; }
|
|
|
|
|
|
|
|
.reveal em {
|
|
|
|
font-style: italic; }
|
|
|
|
|
2014-10-04 09:00:57 +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; }
|
|
|
|
|
2014-10-04 09:00:57 +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; }
|
|
|
|
|
2014-10-04 09:00:57 +02:00
|
|
|
.reveal q, .reveal blockquote {
|
2014-06-11 12:32:39 +02:00
|
|
|
quotes: none; }
|
|
|
|
|
|
|
|
.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); }
|
|
|
|
|
2014-10-04 09:00:57 +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 {
|
|
|
|
font-family: monospace; }
|
|
|
|
|
|
|
|
.reveal pre code {
|
|
|
|
display: block;
|
|
|
|
padding: 5px;
|
|
|
|
overflow: auto;
|
|
|
|
max-height: 400px;
|
|
|
|
word-wrap: normal;
|
|
|
|
background: #3F3F3F;
|
|
|
|
color: #DCDCDC; }
|
|
|
|
|
|
|
|
.reveal table {
|
|
|
|
margin: auto;
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0; }
|
|
|
|
|
|
|
|
.reveal table th {
|
|
|
|
font-weight: bold; }
|
|
|
|
|
2014-10-04 09:00:57 +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; }
|
|
|
|
|
|
|
|
.reveal table tr:last-child td {
|
|
|
|
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-09-22 17:54:45 +02:00
|
|
|
/*********************************************
|
|
|
|
* LINKS
|
|
|
|
*********************************************/
|
2014-02-17 11:55:38 +01:00
|
|
|
.reveal a {
|
2014-10-04 09:00:57 +02:00
|
|
|
color: #a23;
|
2013-09-22 17:54:45 +02:00
|
|
|
text-decoration: none;
|
2014-10-04 09:00:57 +02:00
|
|
|
-webkit-transition: color 0.15s ease;
|
|
|
|
-moz-transition: color 0.15s ease;
|
|
|
|
transition: color 0.15s ease; }
|
2013-09-22 17:54:45 +02:00
|
|
|
|
2014-02-17 11:55:38 +01:00
|
|
|
.reveal a:hover {
|
2014-10-04 09:00:57 +02:00
|
|
|
color: #dd5567;
|
2013-09-22 17:54:45 +02:00
|
|
|
text-shadow: none;
|
|
|
|
border: none; }
|
|
|
|
|
|
|
|
.reveal .roll span:after {
|
|
|
|
color: #fff;
|
2014-10-04 09:00:57 +02:00
|
|
|
background: #6a1521; }
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* IMAGES
|
|
|
|
*********************************************/
|
|
|
|
.reveal section img {
|
|
|
|
margin: 15px 0px;
|
|
|
|
background: rgba(255, 255, 255, 0.12);
|
2014-10-04 09:00:57 +02:00
|
|
|
border: 4px solid #eee;
|
2014-02-17 11:55:38 +01:00
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
|
|
|
|
|
|
|
|
.reveal a img {
|
2014-10-04 09:00:57 +02:00
|
|
|
-webkit-transition: all 0.15s linear;
|
|
|
|
-moz-transition: all 0.15s linear;
|
|
|
|
transition: all 0.15s linear; }
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
.reveal a:hover img {
|
|
|
|
background: rgba(255, 255, 255, 0.2);
|
2014-10-04 09:00:57 +02:00
|
|
|
border-color: #a23;
|
2013-09-22 17:54:45 +02:00
|
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
|
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* NAVIGATION CONTROLS
|
|
|
|
*********************************************/
|
2014-10-04 09:00:57 +02:00
|
|
|
.reveal .controls div.navigate-left, .reveal .controls div.navigate-left.enabled {
|
|
|
|
border-right-color: #a23; }
|
2013-09-22 17:54:45 +02:00
|
|
|
|
2014-10-04 09:00:57 +02:00
|
|
|
.reveal .controls div.navigate-right, .reveal .controls div.navigate-right.enabled {
|
|
|
|
border-left-color: #a23; }
|
2013-09-22 17:54:45 +02:00
|
|
|
|
2014-10-04 09:00:57 +02:00
|
|
|
.reveal .controls div.navigate-up, .reveal .controls div.navigate-up.enabled {
|
|
|
|
border-bottom-color: #a23; }
|
2013-09-22 17:54:45 +02:00
|
|
|
|
2014-10-04 09:00:57 +02:00
|
|
|
.reveal .controls div.navigate-down, .reveal .controls div.navigate-down.enabled {
|
|
|
|
border-top-color: #a23; }
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
.reveal .controls div.navigate-left.enabled:hover {
|
2014-10-04 09:00:57 +02:00
|
|
|
border-right-color: #dd5567; }
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
.reveal .controls div.navigate-right.enabled:hover {
|
2014-10-04 09:00:57 +02:00
|
|
|
border-left-color: #dd5567; }
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
.reveal .controls div.navigate-up.enabled:hover {
|
2014-10-04 09:00:57 +02:00
|
|
|
border-bottom-color: #dd5567; }
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
.reveal .controls div.navigate-down.enabled:hover {
|
2014-10-04 09:00:57 +02:00
|
|
|
border-top-color: #dd5567; }
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* PROGRESS BAR
|
|
|
|
*********************************************/
|
|
|
|
.reveal .progress {
|
|
|
|
background: rgba(0, 0, 0, 0.2); }
|
|
|
|
|
|
|
|
.reveal .progress span {
|
2014-10-04 09:00:57 +02:00
|
|
|
background: #a23;
|
2013-09-22 17:54:45 +02:00
|
|
|
-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); }
|
|
|
|
|
2013-11-27 17:00:21 +01:00
|
|
|
/*********************************************
|
|
|
|
* SLIDE NUMBER
|
|
|
|
*********************************************/
|
|
|
|
.reveal .slide-number {
|
2014-10-04 09:00:57 +02:00
|
|
|
color: #a23; }
|
2013-11-27 17:00:21 +01:00
|
|
|
|
2013-09-22 17:54:45 +02:00
|
|
|
.reveal p {
|
|
|
|
font-weight: 300;
|
2014-10-04 09:00:57 +02:00
|
|
|
text-shadow: 1px 1px #222; }
|
|
|
|
|
|
|
|
.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
|
2013-09-22 17:54:45 +02:00
|
|
|
font-weight: 700; }
|
|
|
|
|
2014-10-04 09:00:57 +02:00
|
|
|
.reveal a, .reveal a:hover {
|
2013-09-22 17:54:45 +02:00
|
|
|
text-shadow: 2px 2px 2px #000; }
|
|
|
|
|
2014-10-04 09:00:57 +02:00
|
|
|
.reveal small a, .reveal small a:hover {
|
2013-09-22 17:54:45 +02:00
|
|
|
text-shadow: 1px 1px 1px #000; }
|
|
|
|
|
|
|
|
.reveal p code {
|
|
|
|
background-color: #23241f;
|
|
|
|
display: inline-block;
|
|
|
|
border-radius: 7px; }
|
|
|
|
|
|
|
|
.reveal small code {
|
|
|
|
vertical-align: baseline; }
|