WIP3
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
/**
|
||||
* Some GoKEV-specific styling
|
||||
*/
|
||||
|
||||
div.transbox {
|
||||
background-color: #000000;
|
||||
opacity: 0.7;
|
||||
/*
|
||||
max-height: 500px;
|
||||
max-width: 450;
|
||||
*/
|
||||
margin: 5%;
|
||||
text-align: center;
|
||||
filter: alpha(opacity=60); /* For IE8 and earlier */
|
||||
border: 2px solid white;
|
||||
|
||||
}
|
||||
|
||||
div.transbox p {
|
||||
margin: 5%;
|
||||
font-weight: bold;
|
||||
color: #FFFFFF;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
div.transbox h1 {
|
||||
display: block;
|
||||
font-size: 2.8em;
|
||||
text-align: center;
|
||||
margin-top: .5em;
|
||||
margin-bottom: .3em;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
font-weight: bold;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
div.transbox h2 {
|
||||
display: block;
|
||||
font-size: 2.8em;
|
||||
text-align: center;
|
||||
margin-top: -1em;
|
||||
margin-bottom: .3em;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
font-weight: bold;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
@@ -0,0 +1,600 @@
|
||||
/**
|
||||
* An ANSIBLE theme for reveal.js presentations, similar
|
||||
* to the simple theme.
|
||||
*/
|
||||
@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
|
||||
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
|
||||
|
||||
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
|
||||
|
||||
/*********************************************
|
||||
* GLOBAL STYLES
|
||||
*********************************************/
|
||||
|
||||
*{
|
||||
outline: none;
|
||||
}
|
||||
|
||||
body {
|
||||
background: #fff;
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
mark{
|
||||
background-color: yellow;
|
||||
color: black;
|
||||
}
|
||||
|
||||
mark span.hljs-number{
|
||||
color: #286669;
|
||||
}
|
||||
|
||||
mark span.hljs-symbol,
|
||||
mark span.hljs-string{
|
||||
color: #af2e2e;
|
||||
}
|
||||
|
||||
.reveal {
|
||||
font-family: "Open Sans", sans-serif;
|
||||
font-size: 28px;
|
||||
font-weight: normal;
|
||||
color: #555;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.reveal .slides{
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
::selection {
|
||||
color: #fff;
|
||||
background: rgba(0, 0, 0, 0.99);
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.reveal .slides > section,
|
||||
.reveal .slides > section > section {
|
||||
line-height: 1.3;
|
||||
font-weight: inherit;
|
||||
}
|
||||
|
||||
|
||||
.text-center{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.text-small{
|
||||
font-size: 70% !important;
|
||||
}
|
||||
|
||||
/*********************************************
|
||||
* HEADERS
|
||||
*********************************************/
|
||||
.reveal h1,
|
||||
.reveal h2,
|
||||
.reveal h3,
|
||||
.reveal h4,
|
||||
.reveal h5,
|
||||
.reveal h6 {
|
||||
margin: 0 0 20px 0;
|
||||
color: #cc0000;
|
||||
font-family: "Open Sans", Impact, sans-serif;
|
||||
font-weight: bold;
|
||||
letter-spacing: normal;
|
||||
text-transform: none;
|
||||
text-shadow: none;
|
||||
margin-bottom: 0.6em;
|
||||
word-wrap: break-word; }
|
||||
|
||||
.reveal h1 {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.cover .reveal h1{
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.reveal h2 {
|
||||
font-size: 1.35em; }
|
||||
|
||||
.reveal h3 {
|
||||
font-size: 1.2em;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.reveal h4 {
|
||||
font-size: 1em;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.reveal h1 {
|
||||
text-shadow: none; }
|
||||
|
||||
/*********************************************
|
||||
* OTHER
|
||||
*********************************************/
|
||||
.reveal p {
|
||||
margin: 20px 0 0.5em;
|
||||
line-height: 1.3; }
|
||||
|
||||
/* Ensure certain elements are never larger than the slide itself */
|
||||
.reveal img,
|
||||
.reveal video,
|
||||
.reveal iframe {
|
||||
max-width: 95%;
|
||||
max-height: 95%; }
|
||||
|
||||
.reveal strong,
|
||||
.reveal b {
|
||||
font-weight: bold; }
|
||||
|
||||
.reveal em {
|
||||
font-style: italic; }
|
||||
|
||||
.reveal ol,
|
||||
.reveal dl,
|
||||
.reveal ul {
|
||||
/*display: inline-block;*/
|
||||
text-align: left;
|
||||
margin: 0 0 0 1em; }
|
||||
|
||||
.reveal li{
|
||||
margin: 0 0 0.3em;
|
||||
}
|
||||
|
||||
.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; }
|
||||
|
||||
.reveal ul ul,
|
||||
.reveal ul ol,
|
||||
.reveal ol ol,
|
||||
.reveal ol ul {
|
||||
display: block;
|
||||
margin-left: 40px; }
|
||||
|
||||
.reveal dt {
|
||||
font-weight: bold; }
|
||||
|
||||
.reveal dd {
|
||||
margin-left: 40px; }
|
||||
|
||||
.reveal q,
|
||||
.reveal blockquote {
|
||||
quotes: none; }
|
||||
|
||||
.reveal blockquote {
|
||||
display: block;
|
||||
position: relative;
|
||||
width: 70%;
|
||||
margin: 20px auto;
|
||||
padding: 5px;
|
||||
font-style: italic;
|
||||
background: rgba(255, 255, 255, 0.05);
|
||||
/*box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);*/
|
||||
}
|
||||
|
||||
.reveal blockquote p:first-child,
|
||||
.reveal blockquote p:last-child {
|
||||
display: inline-block; }
|
||||
|
||||
.reveal q {
|
||||
font-style: italic; }
|
||||
|
||||
.reveal pre,
|
||||
.reveal pre[class*=language-] {
|
||||
display: block;
|
||||
position: relative;
|
||||
margin: 10px auto;
|
||||
text-align: left;
|
||||
font-size: 0.55em;
|
||||
font-family: monospace;
|
||||
line-height: 1em;
|
||||
word-wrap: break-word;
|
||||
box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.reveal code {
|
||||
font-family: monospace; }
|
||||
|
||||
.reveal pre code {
|
||||
display: block;
|
||||
padding: 5px;
|
||||
overflow: auto;
|
||||
max-height: 55vh;
|
||||
word-wrap: normal;
|
||||
}
|
||||
|
||||
.reveal table {
|
||||
margin: auto;
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0; }
|
||||
|
||||
.reveal table th {
|
||||
font-weight: bold; }
|
||||
|
||||
.reveal table th,
|
||||
.reveal table td {
|
||||
text-align: left;
|
||||
padding: 0.2em 0.5em 0.2em 0.5em;
|
||||
border-bottom: 1px solid; }
|
||||
|
||||
.reveal table th[align="center"],
|
||||
.reveal table td[align="center"] {
|
||||
text-align: center; }
|
||||
|
||||
.reveal table th[align="right"],
|
||||
.reveal table td[align="right"] {
|
||||
text-align: right; }
|
||||
|
||||
.reveal table tbody tr:last-child th,
|
||||
.reveal table tbody 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; }
|
||||
|
||||
/*********************************************
|
||||
* LINKS
|
||||
*********************************************/
|
||||
.reveal a {
|
||||
color: #00008B;
|
||||
text-decoration: none;
|
||||
-webkit-transition: color .15s ease;
|
||||
-moz-transition: color .15s ease;
|
||||
transition: color .15s ease; }
|
||||
|
||||
.reveal a:hover {
|
||||
color: #0000f1;
|
||||
text-shadow: none;
|
||||
border: none; }
|
||||
|
||||
.reveal .roll span:after {
|
||||
color: #fff;
|
||||
background: #00003f; }
|
||||
|
||||
/*********************************************
|
||||
* IMAGES
|
||||
*********************************************/
|
||||
.reveal section img {
|
||||
margin: 15px 0px;
|
||||
background: rgba(255, 255, 255, 0.12);
|
||||
max-height: 500px;
|
||||
}
|
||||
|
||||
.reveal section img.plain {
|
||||
border: 0;
|
||||
box-shadow: none; }
|
||||
|
||||
.reveal a img {
|
||||
-webkit-transition: all .15s linear;
|
||||
-moz-transition: all .15s linear;
|
||||
transition: all .15s linear; }
|
||||
|
||||
.reveal a:hover img {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
border-color: #00008B;
|
||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
|
||||
|
||||
/*********************************************
|
||||
* NAVIGATION CONTROLS
|
||||
*********************************************/
|
||||
|
||||
.reveal .controls {
|
||||
bottom: auto;
|
||||
top: 10px;
|
||||
}
|
||||
|
||||
|
||||
.reveal .controls .navigate-left,
|
||||
.reveal .controls .navigate-left.enabled {
|
||||
border-right-color: #00008B; }
|
||||
|
||||
.reveal .controls .navigate-right,
|
||||
.reveal .controls .navigate-right.enabled {
|
||||
border-left-color: #00008B; }
|
||||
|
||||
.reveal .controls .navigate-up,
|
||||
.reveal .controls .navigate-up.enabled {
|
||||
border-bottom-color: #00008B; }
|
||||
|
||||
.reveal .controls .navigate-down,
|
||||
.reveal .controls .navigate-down.enabled {
|
||||
border-top-color: #00008B; }
|
||||
|
||||
.reveal .controls .navigate-left.enabled:hover {
|
||||
border-right-color: #0000f1; }
|
||||
|
||||
.reveal .controls .navigate-right.enabled:hover {
|
||||
border-left-color: #0000f1; }
|
||||
|
||||
.reveal .controls .navigate-up.enabled:hover {
|
||||
border-bottom-color: #0000f1; }
|
||||
|
||||
.reveal .controls .navigate-down.enabled:hover {
|
||||
border-top-color: #0000f1; }
|
||||
|
||||
/*********************************************
|
||||
* PROGRESS BAR
|
||||
*********************************************/
|
||||
.reveal .progress {
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.reveal .progress span {
|
||||
background: #00008B;
|
||||
-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);
|
||||
}
|
||||
|
||||
|
||||
/*********************************************
|
||||
* CUSTOM STYLES
|
||||
*
|
||||
*
|
||||
* colors:
|
||||
*
|
||||
* Pool - #5bbdbf;
|
||||
* Mango - #ff5850;
|
||||
*********************************************/
|
||||
.reveal section .ans-logo img{
|
||||
box-shadow: none;
|
||||
border: none;
|
||||
margin: 0px;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.cover div.ans-logo{
|
||||
display: block;
|
||||
}
|
||||
|
||||
div.ans-mark{
|
||||
position: absolute;
|
||||
width: 6vw; /*vertical-width*/
|
||||
bottom: 0.5em;
|
||||
right: 1em;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
div.ans-mark .circle{
|
||||
fill:#CC0000;
|
||||
}
|
||||
|
||||
.cover div.ans-mark .circle,
|
||||
.title.alt div.ans-mark .circle{
|
||||
fill:#000;
|
||||
}
|
||||
|
||||
svg .a-mark{
|
||||
fill:#FFFFFF;
|
||||
}
|
||||
|
||||
.reveal {
|
||||
box-sizing: border-box;
|
||||
transition: all 300ms ease-in-out;
|
||||
}
|
||||
|
||||
.reveal p,
|
||||
.reveal li{
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.reveal p.fullwidth,
|
||||
.reveal .col p,
|
||||
.reveal .col li,
|
||||
.reveal aside p{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.reveal ul,
|
||||
.reveal ol{
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
||||
.slide-background.present{
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.cover .slide-background.present,
|
||||
.title.alt .slide-background.present{
|
||||
background-color: #cc0000;
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
.lab.alt .slide-background.present{
|
||||
background-color: #A9A9A9 ;
|
||||
display: block !important;
|
||||
}
|
||||
|
||||
|
||||
.cover .present,
|
||||
.cover .present h1,
|
||||
.cover .present h2,
|
||||
.cover .present h3,
|
||||
.cover .present h4,
|
||||
.cover .present h5,
|
||||
.cover .present h6,
|
||||
.cover .present p,
|
||||
.cover .present li{
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.title .reveal h1,
|
||||
.title .reveal h2,
|
||||
.title .reveal h3,
|
||||
.title .reveal h4{
|
||||
color: #cc0000;
|
||||
}
|
||||
|
||||
|
||||
.title.alt .reveal h1,
|
||||
.title.alt .reveal h2,
|
||||
.title.alt .reveal h3,
|
||||
.title.alt .reveal h4,
|
||||
.title.alt .reveal p{
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.columns{
|
||||
display: flex;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.reveal .columns > *{
|
||||
flex-basis: 31%;
|
||||
margin-right: 2.333%;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.reveal .progress span {
|
||||
background: #ff5850;
|
||||
}
|
||||
|
||||
.monospace{
|
||||
font-family: courier, monospace !important;
|
||||
}
|
||||
|
||||
|
||||
/*********************************************
|
||||
* CONTROLS
|
||||
*********************************************/
|
||||
|
||||
.reveal .controls .navigate-left, .reveal .controls .navigate-left.enabled{
|
||||
border-right-color: #ccc;
|
||||
}
|
||||
.reveal .controls .navigate-left.enabled:hover {
|
||||
border-right-color: #999;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.reveal .controls .navigate-right, .reveal .controls .navigate-right.enabled{
|
||||
border-left-color: #ccc;
|
||||
}
|
||||
.reveal .controls .navigate-right.enabled:hover {
|
||||
border-left-color: #999;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.reveal .controls .navigate-down, .reveal .controls .navigate-down.enabled {
|
||||
border-top-color: #ccc;
|
||||
}
|
||||
.reveal .controls .navigate-down.enabled:hover {
|
||||
border-top-color: #999;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.reveal .controls .navigate-up, .reveal .controls .navigate-up.enabled {
|
||||
border-bottom-color: #ccc;
|
||||
}
|
||||
|
||||
.reveal .controls .navigate-up.enabled:hover {
|
||||
border-bottom-color: #999;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.reveal .controls button {
|
||||
opacity: 0.1;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*********************************************
|
||||
* PRINT
|
||||
*********************************************/
|
||||
|
||||
@media print{
|
||||
/*@page {size: landscape}*/
|
||||
|
||||
.ans-logo{
|
||||
padding: 20px !important;
|
||||
background: #c00;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.reveal,
|
||||
.reveal h1,
|
||||
.reveal h2,
|
||||
.reveal h3,
|
||||
.reveal h4,
|
||||
.reveal h5,
|
||||
.reveal h6,
|
||||
.reveal p,
|
||||
.reveal ul,
|
||||
.reveal ol,
|
||||
.reveal li,
|
||||
.reveal blockquote{
|
||||
font-family: "Open Sans", sans-serif !important;
|
||||
color: #000 !important;
|
||||
}
|
||||
|
||||
.reveal blockquote{
|
||||
font-size: 20px !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.reveal p,
|
||||
.reveal li{
|
||||
font-size: 20px !important;
|
||||
}
|
||||
|
||||
.reveal img{
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
.reveal .columns .col {
|
||||
max-width: 50%;
|
||||
}
|
||||
|
||||
.reveal pre code{
|
||||
max-height: none !important;
|
||||
}
|
||||
|
||||
.reveal section aside.notes {
|
||||
display: block;
|
||||
border-top: 1px solid black;
|
||||
margin-top: 60px;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.reveal section aside.notes *{
|
||||
font-size: 14px !important;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
div.ans-mark{
|
||||
position: fixed;
|
||||
width: 6vw; /*vertical-width*/
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
@media print and (orientation:landscape) {
|
||||
.reveal section aside.notes {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
*/
|
||||
@@ -0,0 +1,3 @@
|
||||
<?php
|
||||
|
||||
header("location:/");
|
||||
@@ -0,0 +1,203 @@
|
||||
/* Default Print Stylesheet Template
|
||||
by Rob Glazebrook of CSSnewbie.com
|
||||
Last Updated: June 4, 2008
|
||||
|
||||
Feel free (nay, compelled) to edit, append, and
|
||||
manipulate this file as you see fit. */
|
||||
|
||||
|
||||
@media print {
|
||||
|
||||
/* SECTION 1: Set default width, margin, float, and
|
||||
background. This prevents elements from extending
|
||||
beyond the edge of the printed page, and prevents
|
||||
unnecessary background images from printing */
|
||||
html {
|
||||
background: #fff;
|
||||
width: auto;
|
||||
height: auto;
|
||||
overflow: visible;
|
||||
}
|
||||
body {
|
||||
background: #fff;
|
||||
font-size: 20pt;
|
||||
width: auto;
|
||||
height: auto;
|
||||
border: 0;
|
||||
margin: 0 5%;
|
||||
padding: 0;
|
||||
overflow: visible;
|
||||
float: none !important;
|
||||
}
|
||||
|
||||
/* SECTION 2: Remove any elements not needed in print.
|
||||
This would include navigation, ads, sidebars, etc. */
|
||||
.nestedarrow,
|
||||
.controls,
|
||||
.fork-reveal,
|
||||
.share-reveal,
|
||||
.state-background,
|
||||
.reveal .progress,
|
||||
.reveal .backgrounds,
|
||||
.reveal .slide-number {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* SECTION 3: Set body font face, size, and color.
|
||||
Consider using a serif font for readability. */
|
||||
body, p, td, li, div {
|
||||
font-size: 20pt!important;
|
||||
font-family: Georgia, "Times New Roman", Times, serif !important;
|
||||
color: #000;
|
||||
}
|
||||
|
||||
/* SECTION 4: Set heading font face, sizes, and color.
|
||||
Differentiate your headings from your body text.
|
||||
Perhaps use a large sans-serif for distinction. */
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
color: #000!important;
|
||||
height: auto;
|
||||
line-height: normal;
|
||||
font-family: Georgia, "Times New Roman", Times, serif !important;
|
||||
text-shadow: 0 0 0 #000 !important;
|
||||
text-align: left;
|
||||
letter-spacing: normal;
|
||||
}
|
||||
/* Need to reduce the size of the fonts for printing */
|
||||
h1 { font-size: 28pt !important; }
|
||||
h2 { font-size: 24pt !important; }
|
||||
h3 { font-size: 22pt !important; }
|
||||
h4 { font-size: 22pt !important; font-variant: small-caps; }
|
||||
h5 { font-size: 21pt !important; }
|
||||
h6 { font-size: 20pt !important; font-style: italic; }
|
||||
|
||||
/* SECTION 5: Make hyperlinks more usable.
|
||||
Ensure links are underlined, and consider appending
|
||||
the URL to the end of the link for usability. */
|
||||
a:link,
|
||||
a:visited {
|
||||
color: #000 !important;
|
||||
font-weight: bold;
|
||||
text-decoration: underline;
|
||||
}
|
||||
/*
|
||||
.reveal a:link:after,
|
||||
.reveal a:visited:after {
|
||||
content: " (" attr(href) ") ";
|
||||
color: #222 !important;
|
||||
font-size: 90%;
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
/* SECTION 6: more reveal.js specific additions by @skypanther */
|
||||
ul, ol, div, p {
|
||||
visibility: visible;
|
||||
position: static;
|
||||
width: auto;
|
||||
height: auto;
|
||||
display: block;
|
||||
overflow: visible;
|
||||
margin: 0;
|
||||
text-align: left !important;
|
||||
}
|
||||
.reveal pre,
|
||||
.reveal table {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
.reveal pre code {
|
||||
padding: 20px;
|
||||
border: 1px solid #ddd;
|
||||
}
|
||||
.reveal blockquote {
|
||||
margin: 20px 0;
|
||||
}
|
||||
.reveal .slides {
|
||||
position: static !important;
|
||||
width: auto !important;
|
||||
height: auto !important;
|
||||
|
||||
left: 0 !important;
|
||||
top: 0 !important;
|
||||
margin-left: 0 !important;
|
||||
margin-top: 0 !important;
|
||||
padding: 0 !important;
|
||||
zoom: 1 !important;
|
||||
|
||||
overflow: visible !important;
|
||||
display: block !important;
|
||||
|
||||
text-align: left !important;
|
||||
-webkit-perspective: none;
|
||||
-moz-perspective: none;
|
||||
-ms-perspective: none;
|
||||
perspective: none;
|
||||
|
||||
-webkit-perspective-origin: 50% 50%;
|
||||
-moz-perspective-origin: 50% 50%;
|
||||
-ms-perspective-origin: 50% 50%;
|
||||
perspective-origin: 50% 50%;
|
||||
}
|
||||
.reveal .slides section {
|
||||
visibility: visible !important;
|
||||
position: static !important;
|
||||
width: auto !important;
|
||||
height: auto !important;
|
||||
display: block !important;
|
||||
overflow: visible !important;
|
||||
|
||||
left: 0 !important;
|
||||
top: 0 !important;
|
||||
margin-left: 0 !important;
|
||||
margin-top: 0 !important;
|
||||
padding: 60px 20px !important;
|
||||
z-index: auto !important;
|
||||
|
||||
opacity: 1 !important;
|
||||
|
||||
page-break-after: always !important;
|
||||
|
||||
-webkit-transform-style: flat !important;
|
||||
-moz-transform-style: flat !important;
|
||||
-ms-transform-style: flat !important;
|
||||
transform-style: flat !important;
|
||||
|
||||
-webkit-transform: none !important;
|
||||
-moz-transform: none !important;
|
||||
-ms-transform: none !important;
|
||||
transform: none !important;
|
||||
|
||||
-webkit-transition: none !important;
|
||||
-moz-transition: none !important;
|
||||
-ms-transition: none !important;
|
||||
transition: none !important;
|
||||
}
|
||||
.reveal .slides section.stack {
|
||||
padding: 0 !important;
|
||||
}
|
||||
.reveal section:last-of-type {
|
||||
page-break-after: avoid !important;
|
||||
}
|
||||
.reveal section .fragment {
|
||||
opacity: 1 !important;
|
||||
visibility: visible !important;
|
||||
|
||||
-webkit-transform: none !important;
|
||||
-moz-transform: none !important;
|
||||
-ms-transform: none !important;
|
||||
transform: none !important;
|
||||
}
|
||||
.reveal section img {
|
||||
display: block;
|
||||
margin: 15px 0px;
|
||||
background: rgba(255,255,255,1);
|
||||
border: 1px solid #666;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.reveal section small {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,171 @@
|
||||
/**
|
||||
* This stylesheet is used to print reveal.js
|
||||
* presentations to PDF.
|
||||
*
|
||||
* https://github.com/hakimel/reveal.js#pdf-export
|
||||
*/
|
||||
|
||||
* {
|
||||
-webkit-print-color-adjust: exact;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0 auto !important;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
float: none !important;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
html {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/* Remove any elements not needed in print. */
|
||||
.nestedarrow,
|
||||
.reveal .controls,
|
||||
.reveal .progress,
|
||||
.reveal .playback,
|
||||
.reveal.overview,
|
||||
.fork-reveal,
|
||||
.share-reveal,
|
||||
.state-background {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
text-shadow: 0 0 0 #000 !important;
|
||||
}
|
||||
|
||||
.reveal pre code {
|
||||
overflow: hidden !important;
|
||||
font-family: Courier, 'Courier New', monospace !important;
|
||||
}
|
||||
|
||||
ul, ol, div, p {
|
||||
visibility: visible;
|
||||
position: static;
|
||||
width: auto;
|
||||
height: auto;
|
||||
display: block;
|
||||
overflow: visible;
|
||||
margin: auto;
|
||||
}
|
||||
.reveal {
|
||||
width: auto !important;
|
||||
height: auto !important;
|
||||
overflow: hidden !important;
|
||||
}
|
||||
.reveal .slides {
|
||||
position: static;
|
||||
width: 100% !important;
|
||||
height: auto !important;
|
||||
zoom: 1 !important;
|
||||
|
||||
left: auto;
|
||||
top: auto;
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
|
||||
overflow: visible;
|
||||
display: block;
|
||||
|
||||
-webkit-perspective: none;
|
||||
-moz-perspective: none;
|
||||
-ms-perspective: none;
|
||||
perspective: none;
|
||||
|
||||
-webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */
|
||||
-moz-perspective-origin: 50% 50%;
|
||||
-ms-perspective-origin: 50% 50%;
|
||||
perspective-origin: 50% 50%;
|
||||
}
|
||||
|
||||
.reveal .slides .pdf-page {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.reveal .slides section {
|
||||
page-break-after: always !important;
|
||||
|
||||
visibility: visible !important;
|
||||
display: block !important;
|
||||
position: relative !important;
|
||||
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
box-sizing: border-box !important;
|
||||
min-height: 1px;
|
||||
|
||||
opacity: 1 !important;
|
||||
|
||||
-webkit-transform-style: flat !important;
|
||||
-moz-transform-style: flat !important;
|
||||
-ms-transform-style: flat !important;
|
||||
transform-style: flat !important;
|
||||
|
||||
-webkit-transform: none !important;
|
||||
-moz-transform: none !important;
|
||||
-ms-transform: none !important;
|
||||
transform: none !important;
|
||||
}
|
||||
|
||||
.reveal section.stack {
|
||||
margin: 0 !important;
|
||||
padding: 0 !important;
|
||||
page-break-after: avoid !important;
|
||||
height: auto !important;
|
||||
min-height: auto !important;
|
||||
}
|
||||
|
||||
.reveal img {
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.reveal .roll {
|
||||
overflow: visible;
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
/* Slide backgrounds are placed inside of their slide when exporting to PDF */
|
||||
.reveal .slide-background {
|
||||
display: block !important;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: auto !important;
|
||||
}
|
||||
|
||||
/* Display slide speaker notes when 'showNotes' is enabled */
|
||||
.reveal .speaker-notes-pdf {
|
||||
display: block;
|
||||
width: 100%;
|
||||
max-height: none;
|
||||
top: auto;
|
||||
right: auto;
|
||||
bottom: auto;
|
||||
left: auto;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
/* Layout option which makes notes appear on a separate page */
|
||||
.reveal .speaker-notes-pdf[data-layout="separate-page"] {
|
||||
position: relative;
|
||||
color: inherit;
|
||||
background-color: transparent;
|
||||
padding: 20px;
|
||||
page-break-after: always;
|
||||
}
|
||||
|
||||
/* Display slide numbers when 'slideNumber' is enabled */
|
||||
.reveal .slide-number-pdf {
|
||||
display: block;
|
||||
position: absolute;
|
||||
font-size: 14px;
|
||||
}
|
||||
1
roles/lightbulb-ansiblered-deck/files/deck-ansible/css/dormant/prism.min.css
vendored
Normal file
1
roles/lightbulb-ansiblered-deck/files/deck-ansible/css/dormant/prism.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
||||
code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#a67f59;background:hsla(0,0%,100%,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.function{color:#DD4A68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}/*# sourceMappingURL=prism.min.css.map */
|
||||
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
|
||||
Zenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>
|
||||
based on dark.css by Ivan Sagalaev
|
||||
|
||||
*/
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
padding: 0.5em;
|
||||
background: #3f3f3f;
|
||||
color: #dcdcdc;
|
||||
}
|
||||
|
||||
.hljs-keyword,
|
||||
.hljs-selector-tag,
|
||||
.hljs-tag {
|
||||
color: #e3ceab;
|
||||
}
|
||||
|
||||
.hljs-template-tag {
|
||||
color: #dcdcdc;
|
||||
}
|
||||
|
||||
.hljs-number {
|
||||
color: #8cd0d3;
|
||||
}
|
||||
|
||||
.hljs-variable,
|
||||
.hljs-template-variable,
|
||||
.hljs-attribute {
|
||||
color: #efdcbc;
|
||||
}
|
||||
|
||||
.hljs-literal {
|
||||
color: #efefaf;
|
||||
}
|
||||
|
||||
.hljs-subst {
|
||||
color: #8f8f8f;
|
||||
}
|
||||
|
||||
.hljs-title,
|
||||
.hljs-name,
|
||||
.hljs-selector-id,
|
||||
.hljs-selector-class,
|
||||
.hljs-section,
|
||||
.hljs-type {
|
||||
color: #efef8f;
|
||||
}
|
||||
|
||||
.hljs-symbol,
|
||||
.hljs-bullet,
|
||||
.hljs-link {
|
||||
color: #dca3a3;
|
||||
}
|
||||
|
||||
.hljs-deletion,
|
||||
.hljs-string,
|
||||
.hljs-built_in,
|
||||
.hljs-builtin-name {
|
||||
color: #cc9393;
|
||||
}
|
||||
|
||||
.hljs-addition,
|
||||
.hljs-comment,
|
||||
.hljs-quote,
|
||||
.hljs-meta {
|
||||
color: #7f9f7f;
|
||||
}
|
||||
|
||||
|
||||
.hljs-emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
@@ -0,0 +1,110 @@
|
||||
* { margin: 0; padding: 0; }
|
||||
.terminal {
|
||||
border-radius: 5px 5px 0 0;
|
||||
position: relative;
|
||||
}
|
||||
.terminal .top {
|
||||
background: #E8E6E8;
|
||||
color: black;
|
||||
padding: 5px;
|
||||
border-radius: 3px 3px 0 0;
|
||||
}
|
||||
.terminal .btns {
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
left: 5px;
|
||||
}
|
||||
|
||||
.terminal .circle {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
display: inline-block;
|
||||
border-radius: 15px;
|
||||
margin-left: 2px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.red { background: #EC6A5F; border-color: #D04E42; }
|
||||
.green { background: #64CC57; border-color: #4EA73B; }
|
||||
.yellow{ background: #F5C04F; border-color: #D6A13D; }
|
||||
.clear{clear: both;}
|
||||
|
||||
.title{
|
||||
text-align: center;
|
||||
font-size: 8px;
|
||||
|
||||
}
|
||||
|
||||
.terminal .title {
|
||||
color: #000000;
|
||||
padding: 0px;
|
||||
font-family: verdana;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.terminal .bodys {
|
||||
background: black;
|
||||
color: #7AFB4C;
|
||||
padding: 15px;
|
||||
overflow: auto;
|
||||
font-family: monospace;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.terminal .bodysw {
|
||||
background: black;
|
||||
color: #FFFFFF;
|
||||
padding: 15px;
|
||||
overflow: auto;
|
||||
font-family: monospace;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
|
||||
.terminal .bodym {
|
||||
background: black;
|
||||
color: #7AFB4C;
|
||||
padding: 15px;
|
||||
overflow: auto;
|
||||
font-family: monospace;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.terminal .bodymw {
|
||||
background: black;
|
||||
color: #FFFFFF;
|
||||
padding: 15px;
|
||||
overflow: auto;
|
||||
font-family: monospace;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.terminal .bodyl {
|
||||
background: black;
|
||||
color: #7AFB4C;
|
||||
padding: 15px;
|
||||
overflow: auto;
|
||||
font-family: monospace;
|
||||
font-size: 36px;
|
||||
}
|
||||
|
||||
.terminal .bodylw {
|
||||
background: black;
|
||||
color: #FFFFFF;
|
||||
padding: 15px;
|
||||
overflow: auto;
|
||||
font-family: monospace;
|
||||
font-size: 36px;
|
||||
}
|
||||
|
||||
.space {
|
||||
background: black;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.shadow {
|
||||
box-shadow: 0px 0px 10px rgba(0,0,0,.4)
|
||||
}
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
<?php
|
||||
|
||||
header("location:/");
|
||||
1365
roles/lightbulb-ansiblered-deck/files/deck-ansible/css/reveal.css
Normal file
1365
roles/lightbulb-ansiblered-deck/files/deck-ansible/css/reveal.css
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,12 @@
|
||||
https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/css/reveal.css
|
||||
https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/css/print/pdf.css
|
||||
https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/css/print/paper.css
|
||||
https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/lib/css/zenburn.css
|
||||
https://cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/themes/prism.min.css
|
||||
https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/lib/js/head.min.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/js/reveal.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/plugin/markdown/marked.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/plugin/markdown/markdown.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/prism.min.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/prism/1.6.0/components/prism-yaml.min.js
|
||||
https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.4.1/plugin/highlight/highlight.js
|
||||
Reference in New Issue
Block a user