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.
|
|
|
|
*
|
|
|
|
*/
|
2015-10-06 19:40:06 +02:00
|
|
|
@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);
|
2020-06-05 10:02:49 +02:00
|
|
|
section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {
|
2021-05-19 21:48:42 +02:00
|
|
|
color: #222;
|
|
|
|
}
|
2020-06-05 10:02:49 +02:00
|
|
|
|
2013-09-22 17:54:45 +02:00
|
|
|
/*********************************************
|
|
|
|
* GLOBAL STYLES
|
|
|
|
*********************************************/
|
2019-10-29 13:23:59 +01:00
|
|
|
:root {
|
2021-06-04 13:40:40 +02:00
|
|
|
--r-background-color: #222;
|
|
|
|
--r-main-font: Ubuntu, sans-serif;
|
|
|
|
--r-main-font-size: 40px;
|
|
|
|
--r-main-color: #eee;
|
|
|
|
--r-block-margin: 20px;
|
|
|
|
--r-heading-margin: 0 0 20px 0;
|
|
|
|
--r-heading-font: Ubuntu, sans-serif;
|
|
|
|
--r-heading-color: #eee;
|
|
|
|
--r-heading-line-height: 1.2;
|
|
|
|
--r-heading-letter-spacing: normal;
|
|
|
|
--r-heading-text-transform: uppercase;
|
|
|
|
--r-heading-text-shadow: 2px 2px 2px #222;
|
|
|
|
--r-heading-font-weight: normal;
|
|
|
|
--r-heading1-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);
|
|
|
|
--r-heading1-size: 3.77em;
|
|
|
|
--r-heading2-size: 2.11em;
|
|
|
|
--r-heading3-size: 1.55em;
|
|
|
|
--r-heading4-size: 1em;
|
|
|
|
--r-code-font: monospace;
|
|
|
|
--r-link-color: #a23;
|
|
|
|
--r-link-color-dark: #6a1520;
|
|
|
|
--r-link-color-hover: #dd5566;
|
|
|
|
--r-selection-background-color: #a23;
|
|
|
|
--r-selection-color: #fff;
|
2021-05-19 21:48:42 +02:00
|
|
|
}
|
2019-10-29 13:23:59 +01:00
|
|
|
|
2020-04-06 13:49:39 +02:00
|
|
|
.reveal-viewport {
|
2014-10-04 09:00:57 +02:00
|
|
|
background: #222;
|
2021-06-04 13:40:40 +02:00
|
|
|
background-color: var(--r-background-color);
|
2021-05-19 21:48:42 +02:00
|
|
|
}
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
.reveal {
|
2021-06-04 13:40:40 +02:00
|
|
|
font-family: var(--r-main-font);
|
|
|
|
font-size: var(--r-main-font-size);
|
2013-11-08 14:11:35 +01:00
|
|
|
font-weight: normal;
|
2021-06-04 13:40:40 +02:00
|
|
|
color: var(--r-main-color);
|
2021-05-19 21:48:42 +02:00
|
|
|
}
|
2013-09-22 17:54:45 +02:00
|
|
|
|
2020-05-11 11:28:36 +02:00
|
|
|
.reveal ::selection {
|
2021-06-04 13:40:40 +02:00
|
|
|
color: var(--r-selection-color);
|
|
|
|
background: var(--r-selection-background-color);
|
2021-05-19 21:48:42 +02:00
|
|
|
text-shadow: none;
|
|
|
|
}
|
2013-09-22 17:54:45 +02:00
|
|
|
|
2020-05-11 11:28:36 +02:00
|
|
|
.reveal ::-moz-selection {
|
2021-06-04 13:40:40 +02:00
|
|
|
color: var(--r-selection-color);
|
|
|
|
background: var(--r-selection-background-color);
|
2021-05-19 21:48:42 +02:00
|
|
|
text-shadow: none;
|
|
|
|
}
|
2016-04-27 20:50:03 +02:00
|
|
|
|
2017-12-04 14:03:16 +01:00
|
|
|
.reveal .slides section,
|
|
|
|
.reveal .slides section > section {
|
2014-09-28 12:14:48 +02:00
|
|
|
line-height: 1.3;
|
2021-05-19 21:48:42 +02:00
|
|
|
font-weight: inherit;
|
|
|
|
}
|
2014-06-11 12:48:19 +02:00
|
|
|
|
2013-09-22 17:54:45 +02:00
|
|
|
/*********************************************
|
|
|
|
* HEADERS
|
|
|
|
*********************************************/
|
2015-10-06 19:40:06 +02:00
|
|
|
.reveal h1,
|
|
|
|
.reveal h2,
|
|
|
|
.reveal h3,
|
|
|
|
.reveal h4,
|
|
|
|
.reveal h5,
|
|
|
|
.reveal h6 {
|
2021-06-04 13:40:40 +02:00
|
|
|
margin: var(--r-heading-margin);
|
|
|
|
color: var(--r-heading-color);
|
|
|
|
font-family: var(--r-heading-font);
|
|
|
|
font-weight: var(--r-heading-font-weight);
|
|
|
|
line-height: var(--r-heading-line-height);
|
|
|
|
letter-spacing: var(--r-heading-letter-spacing);
|
|
|
|
text-transform: var(--r-heading-text-transform);
|
|
|
|
text-shadow: var(--r-heading-text-shadow);
|
2021-05-19 21:48:42 +02:00
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
2014-06-11 12:48:19 +02:00
|
|
|
|
|
|
|
.reveal h1 {
|
2021-06-04 13:40:40 +02:00
|
|
|
font-size: var(--r-heading1-size);
|
2021-05-19 21:48:42 +02:00
|
|
|
}
|
2014-06-11 12:48:19 +02:00
|
|
|
|
|
|
|
.reveal h2 {
|
2021-06-04 13:40:40 +02:00
|
|
|
font-size: var(--r-heading2-size);
|
2021-05-19 21:48:42 +02:00
|
|
|
}
|
2014-06-11 12:48:19 +02:00
|
|
|
|
|
|
|
.reveal h3 {
|
2021-06-04 13:40:40 +02:00
|
|
|
font-size: var(--r-heading3-size);
|
2021-05-19 21:48:42 +02:00
|
|
|
}
|
2014-06-11 12:48:19 +02:00
|
|
|
|
|
|
|
.reveal h4 {
|
2021-06-04 13:40:40 +02:00
|
|
|
font-size: var(--r-heading4-size);
|
2021-05-19 21:48:42 +02:00
|
|
|
}
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
.reveal h1 {
|
2021-06-04 13:40:40 +02:00
|
|
|
text-shadow: var(--r-heading1-text-shadow);
|
2021-05-19 21:48:42 +02:00
|
|
|
}
|
2013-09-22 17:54:45 +02:00
|
|
|
|
2014-05-26 11:25:47 +02:00
|
|
|
/*********************************************
|
|
|
|
* OTHER
|
|
|
|
*********************************************/
|
|
|
|
.reveal p {
|
2021-06-04 13:40:40 +02:00
|
|
|
margin: var(--r-block-margin) 0;
|
2021-05-19 21:48:42 +02:00
|
|
|
line-height: 1.3;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
2020-06-05 13:17:43 +02:00
|
|
|
/* Remove trailing margins after titles */
|
|
|
|
.reveal h1:last-child,
|
|
|
|
.reveal h2:last-child,
|
|
|
|
.reveal h3:last-child,
|
|
|
|
.reveal h4:last-child,
|
|
|
|
.reveal h5:last-child,
|
|
|
|
.reveal h6:last-child {
|
2021-05-19 21:48:42 +02:00
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2020-06-05 13:17:43 +02:00
|
|
|
|
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%;
|
2021-05-19 21:48:42 +02:00
|
|
|
max-height: 95%;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
2015-10-06 19:40:06 +02:00
|
|
|
.reveal strong,
|
|
|
|
.reveal b {
|
2021-05-19 21:48:42 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal em {
|
2021-05-19 21:48:42 +02:00
|
|
|
font-style: italic;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
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;
|
2021-05-19 21:48:42 +02:00
|
|
|
margin: 0 0 0 1em;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal ol {
|
2021-05-19 21:48:42 +02:00
|
|
|
list-style-type: decimal;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal ul {
|
2021-05-19 21:48:42 +02:00
|
|
|
list-style-type: disc;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal ul ul {
|
2021-05-19 21:48:42 +02:00
|
|
|
list-style-type: square;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal ul ul ul {
|
2021-05-19 21:48:42 +02:00
|
|
|
list-style-type: circle;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
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;
|
2021-05-19 21:48:42 +02:00
|
|
|
margin-left: 40px;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal dt {
|
2021-05-19 21:48:42 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal dd {
|
2021-05-19 21:48:42 +02:00
|
|
|
margin-left: 40px;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal blockquote {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
width: 70%;
|
2021-06-04 13:40:40 +02:00
|
|
|
margin: var(--r-block-margin) auto;
|
2014-06-11 12:32:39 +02:00
|
|
|
padding: 5px;
|
|
|
|
font-style: italic;
|
|
|
|
background: rgba(255, 255, 255, 0.05);
|
2021-05-19 21:48:42 +02:00
|
|
|
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
2015-10-06 19:40:06 +02:00
|
|
|
.reveal blockquote p:first-child,
|
|
|
|
.reveal blockquote p:last-child {
|
2021-05-19 21:48:42 +02:00
|
|
|
display: inline-block;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal q {
|
2021-05-19 21:48:42 +02:00
|
|
|
font-style: italic;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal pre {
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
width: 90%;
|
2021-06-04 13:40:40 +02:00
|
|
|
margin: var(--r-block-margin) auto;
|
2014-06-11 12:32:39 +02:00
|
|
|
text-align: left;
|
|
|
|
font-size: 0.55em;
|
2021-06-04 13:40:40 +02:00
|
|
|
font-family: var(--r-code-font);
|
2014-06-11 12:32:39 +02:00
|
|
|
line-height: 1.2em;
|
|
|
|
word-wrap: break-word;
|
2021-05-19 21:48:42 +02:00
|
|
|
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal code {
|
2021-06-04 13:40:40 +02:00
|
|
|
font-family: var(--r-code-font);
|
2021-02-04 14:17:27 +01:00
|
|
|
text-transform: none;
|
2021-05-19 21:48:42 +02:00
|
|
|
tab-size: 2;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal pre code {
|
|
|
|
display: block;
|
|
|
|
padding: 5px;
|
|
|
|
overflow: auto;
|
|
|
|
max-height: 400px;
|
2021-05-19 21:48:42 +02:00
|
|
|
word-wrap: normal;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
2021-05-21 09:13:40 +02:00
|
|
|
.reveal .code-wrapper {
|
|
|
|
white-space: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.reveal .code-wrapper code {
|
|
|
|
white-space: pre;
|
|
|
|
}
|
|
|
|
|
2014-06-11 12:32:39 +02:00
|
|
|
.reveal table {
|
|
|
|
margin: auto;
|
|
|
|
border-collapse: collapse;
|
2021-05-19 21:48:42 +02:00
|
|
|
border-spacing: 0;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal table th {
|
2021-05-19 21:48:42 +02:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
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;
|
2021-05-19 21:48:42 +02:00
|
|
|
border-bottom: 1px solid;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
2021-05-19 21:48:42 +02:00
|
|
|
.reveal table th[align=center],
|
|
|
|
.reveal table td[align=center] {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2015-02-28 19:15:14 +01:00
|
|
|
|
2021-05-19 21:48:42 +02:00
|
|
|
.reveal table th[align=right],
|
|
|
|
.reveal table td[align=right] {
|
|
|
|
text-align: right;
|
|
|
|
}
|
2015-02-28 19:15:14 +01:00
|
|
|
|
2016-01-11 10:17:02 +01:00
|
|
|
.reveal table tbody tr:last-child th,
|
|
|
|
.reveal table tbody tr:last-child td {
|
2021-05-19 21:48:42 +02:00
|
|
|
border-bottom: none;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal sup {
|
2018-04-24 14:56:03 +02:00
|
|
|
vertical-align: super;
|
2021-05-19 21:48:42 +02:00
|
|
|
font-size: smaller;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal sub {
|
2018-04-24 14:56:03 +02:00
|
|
|
vertical-align: sub;
|
2021-05-19 21:48:42 +02:00
|
|
|
font-size: smaller;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal small {
|
|
|
|
display: inline-block;
|
|
|
|
font-size: 0.6em;
|
|
|
|
line-height: 1.2em;
|
2021-05-19 21:48:42 +02:00
|
|
|
vertical-align: top;
|
|
|
|
}
|
2014-06-11 12:32:39 +02:00
|
|
|
|
|
|
|
.reveal small * {
|
2021-05-19 21:48:42 +02:00
|
|
|
vertical-align: top;
|
|
|
|
}
|
2014-05-26 11:25:47 +02:00
|
|
|
|
2020-05-14 12:39:45 +02:00
|
|
|
.reveal img {
|
2021-06-04 13:40:40 +02:00
|
|
|
margin: var(--r-block-margin) 0;
|
2021-05-19 21:48:42 +02:00
|
|
|
}
|
2020-05-14 12:39:45 +02:00
|
|
|
|
2013-09-22 17:54:45 +02:00
|
|
|
/*********************************************
|
|
|
|
* LINKS
|
|
|
|
*********************************************/
|
2014-02-17 11:55:38 +01:00
|
|
|
.reveal a {
|
2021-06-04 13:40:40 +02:00
|
|
|
color: var(--r-link-color);
|
2013-09-22 17:54:45 +02:00
|
|
|
text-decoration: none;
|
2021-05-19 21:48:42 +02:00
|
|
|
transition: color 0.15s ease;
|
|
|
|
}
|
2013-09-22 17:54:45 +02:00
|
|
|
|
2014-02-17 11:55:38 +01:00
|
|
|
.reveal a:hover {
|
2021-06-04 13:40:40 +02:00
|
|
|
color: var(--r-link-color-hover);
|
2013-09-22 17:54:45 +02:00
|
|
|
text-shadow: none;
|
2021-05-19 21:48:42 +02:00
|
|
|
border: none;
|
|
|
|
}
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
.reveal .roll span:after {
|
|
|
|
color: #fff;
|
2021-06-04 13:40:40 +02:00
|
|
|
background: var(--r-link-color-dark);
|
2021-05-19 21:48:42 +02:00
|
|
|
}
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
/*********************************************
|
2020-05-14 12:39:45 +02:00
|
|
|
* Frame helper
|
2013-09-22 17:54:45 +02:00
|
|
|
*********************************************/
|
2020-05-14 12:39:45 +02:00
|
|
|
.reveal .r-frame {
|
2021-06-04 13:40:40 +02:00
|
|
|
border: 4px solid var(--r-main-color);
|
2021-05-19 21:48:42 +02:00
|
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
2014-02-17 11:55:38 +01:00
|
|
|
|
2020-05-14 12:39:45 +02:00
|
|
|
.reveal a .r-frame {
|
2021-05-19 21:48:42 +02:00
|
|
|
transition: all 0.15s linear;
|
|
|
|
}
|
2013-09-22 17:54:45 +02:00
|
|
|
|
2020-05-14 12:39:45 +02:00
|
|
|
.reveal a:hover .r-frame {
|
2021-06-04 13:40:40 +02:00
|
|
|
border-color: var(--r-link-color);
|
2021-05-19 21:48:42 +02:00
|
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
|
|
|
|
}
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
/*********************************************
|
|
|
|
* NAVIGATION CONTROLS
|
|
|
|
*********************************************/
|
2016-06-28 12:34:23 +02:00
|
|
|
.reveal .controls {
|
2021-06-04 13:40:40 +02:00
|
|
|
color: var(--r-link-color);
|
2021-05-19 21:48:42 +02:00
|
|
|
}
|
2016-04-20 13:45:03 +02:00
|
|
|
|
2013-09-22 17:54:45 +02:00
|
|
|
/*********************************************
|
|
|
|
* PROGRESS BAR
|
|
|
|
*********************************************/
|
|
|
|
.reveal .progress {
|
2017-05-18 09:58:25 +02:00
|
|
|
background: rgba(0, 0, 0, 0.2);
|
2021-06-04 13:40:40 +02:00
|
|
|
color: var(--r-link-color);
|
2021-05-19 21:48:42 +02:00
|
|
|
}
|
2013-09-22 17:54:45 +02:00
|
|
|
|
2018-04-24 14:56:03 +02:00
|
|
|
/*********************************************
|
|
|
|
* PRINT BACKGROUND
|
|
|
|
*********************************************/
|
|
|
|
@media print {
|
|
|
|
.backgrounds {
|
2021-06-04 13:40:40 +02:00
|
|
|
background-color: var(--r-background-color);
|
2021-05-19 21:48:42 +02:00
|
|
|
}
|
|
|
|
}
|
2013-09-22 17:54:45 +02:00
|
|
|
.reveal p {
|
|
|
|
font-weight: 300;
|
2021-05-19 21:48:42 +02:00
|
|
|
text-shadow: 1px 1px #222;
|
|
|
|
}
|
2014-10-04 09:00:57 +02:00
|
|
|
|
2020-06-05 10:02:49 +02:00
|
|
|
section.has-light-background p, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4 {
|
2021-05-19 21:48:42 +02:00
|
|
|
text-shadow: none;
|
|
|
|
}
|
2020-06-05 10:02:49 +02:00
|
|
|
|
2015-10-06 19:40:06 +02:00
|
|
|
.reveal h1,
|
|
|
|
.reveal h2,
|
|
|
|
.reveal h3,
|
|
|
|
.reveal h4,
|
|
|
|
.reveal h5,
|
|
|
|
.reveal h6 {
|
2021-05-19 21:48:42 +02:00
|
|
|
font-weight: 700;
|
|
|
|
}
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
.reveal p code {
|
|
|
|
background-color: #23241f;
|
|
|
|
display: inline-block;
|
2021-05-19 21:48:42 +02:00
|
|
|
border-radius: 7px;
|
|
|
|
}
|
2013-09-22 17:54:45 +02:00
|
|
|
|
|
|
|
.reveal small code {
|
2021-05-19 21:48:42 +02:00
|
|
|
vertical-align: baseline;
|
|
|
|
}
|