diff --git a/opengisch-about-us/_assets/slides/stylesheets/base-theme.css b/opengisch-about-us/_assets/slides/stylesheets/base-theme.css deleted file mode 100644 index 78fdfa9..0000000 --- a/opengisch-about-us/_assets/slides/stylesheets/base-theme.css +++ /dev/null @@ -1,58 +0,0 @@ -/* base-theme.css */ -/* @theme base-theme */ - -@import "base-white-theme.css"; - -:root { - --opengisch-green: hsl(88, 67%, 48%); - --opengisch-blue: #2880cc; - --opengisch-dark: #313131; - --opengisch-light: #c2c2c2; - - --r-main-font: "futura-pt", Helvetica, Arial, sans-serif; - --r-heading-font: "futura-pt", Helvetica, Arial, sans-serif; -} - -/* assign the r-heading size to h5 because it's not done by current reveal.js theme */ -h5 { - font-size: var(--r-heading5-size); -} - -/* color classes used for texts */ - -.blue { - color: var(--opengisch-blue) !important; -} - -.green { - color: var(--opengisch-green) !important; -} - -.light { - color: var(--opengisch-light) !important; -} - -.dark { - color: var(--opengisch-dark) !important; -} - -/* opengisch logo */ - -body:after { - content: url(./logo_white.png); - position: fixed; - bottom: -6em; - right: -6em; - z-index: -1; -} - -/* classes used for multiple columns */ - -.container { - display: flex; -} - - -.col { - flex: 1; -} \ No newline at end of file diff --git a/opengisch-about-us/_assets/slides/stylesheets/base-white-theme.css b/opengisch-about-us/_assets/slides/stylesheets/base-white-theme.css deleted file mode 100644 index d072838..0000000 --- a/opengisch-about-us/_assets/slides/stylesheets/base-white-theme.css +++ /dev/null @@ -1,364 +0,0 @@ -/** - * White theme for reveal.js. This is the opposite of the 'black' theme. - * - * By Hakim El Hattab, http://hakim.se - */ -@import url(./fonts/source-sans-pro/source-sans-pro.css); - -section.has-dark-background, -section.has-dark-background h1, -section.has-dark-background h2, -section.has-dark-background h3, -section.has-dark-background h4, -section.has-dark-background h5, -section.has-dark-background h6 { - color: #fff; -} - -/********************************************* - * GLOBAL STYLES - ********************************************/ -:root { - --r-background-color: #fff; - --r-main-font: Source Sans Pro, Helvetica, sans-serif; - --r-main-font-size: 2em; - --r-main-color: #222; - --r-block-margin: 20px; - --r-heading-margin: 0 0 20px 0; - --r-heading-font: Source Sans Pro, Helvetica, sans-serif; - --r-heading-color: #222; - --r-heading-line-height: 1.2; - --r-heading-letter-spacing: normal; - --r-heading-text-transform: uppercase; - --r-heading-text-shadow: none; - --r-heading-font-weight: 600; - --r-heading1-text-shadow: none; - --r-heading1-size: 2.5em; - --r-heading2-size: 1.6em; - --r-heading3-size: 1.3em; - --r-heading4-size: 1em; - --r-code-font: monospace; - --r-link-color: #2a76dd; - --r-link-color-dark: #1a53a1; - --r-link-color-hover: #6ca0e8; - --r-selection-background-color: #98bdef; - --r-selection-color: #fff; -} - -.reveal-viewport { - background: #fff; - background-color: var(--r-background-color); -} - -.reveal { - font-family: var(--r-main-font); - font-size: var(--r-main-font-size); - font-weight: normal; - color: var(--r-main-color); -} - -.reveal ::selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal ::-moz-selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal .slides section, -.reveal .slides section>section { - line-height: 1.3; - font-weight: inherit; -} - -/********************************************* - * HEADERS - *********************************************/ -.reveal h1, -.reveal h2, -.reveal h3, -.reveal h4, -.reveal h5, -.reveal h6 { - 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); - word-wrap: break-word; -} - -.reveal h1 { - font-size: var(--r-heading1-size); -} - -.reveal h2 { - font-size: var(--r-heading2-size); -} - -.reveal h3 { - font-size: var(--r-heading3-size); -} - -.reveal h4 { - font-size: var(--r-heading4-size); -} - -.reveal h1 { - text-shadow: var(--r-heading1-text-shadow); -} - -/********************************************* - * OTHER - *********************************************/ -.reveal p { - margin: var(--r-block-margin) 0; - line-height: 1.3; -} - -/* 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 { - margin-bottom: 0; -} - -/* 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 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 blockquote { - display: block; - position: relative; - width: 70%; - margin: var(--r-block-margin) 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 { - display: block; - position: relative; - width: 90%; - margin: var(--r-block-margin) auto; - text-align: left; - font-size: 0.55em; - font-family: var(--r-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: var(--r-code-font); - text-transform: none; - tab-size: 2; -} - -.reveal pre code { - display: block; - padding: 5px; - overflow: auto; - max-height: 400px; - word-wrap: normal; -} - -.reveal .code-wrapper { - white-space: normal; -} - -.reveal .code-wrapper code { - white-space: pre; -} - -.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; - font-size: smaller; -} - -.reveal sub { - vertical-align: sub; - font-size: smaller; -} - -.reveal small { - display: inline-block; - font-size: 0.6em; - line-height: 1.2em; - vertical-align: top; -} - -.reveal small * { - vertical-align: top; -} - -.reveal img { - margin: var(--r-block-margin) 0; -} - -/********************************************* - * LINKS - *********************************************/ -.reveal a { - color: var(--r-link-color); - text-decoration: none; - transition: color 0.15s ease; -} - -.reveal a:hover { - color: var(--r-link-color-hover); - text-shadow: none; - border: none; -} - -.reveal .roll span:after { - color: #fff; - background: var(--r-link-color-dark); -} - -/********************************************* - * Frame helper - *********************************************/ -.reveal .r-frame { - border: 4px solid var(--r-main-color); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); -} - -.reveal a .r-frame { - transition: all 0.15s linear; -} - -.reveal a:hover .r-frame { - border-color: var(--r-link-color); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); -} - -/********************************************* - * NAVIGATION CONTROLS - *********************************************/ -.reveal .controls { - color: var(--r-link-color); -} - -/********************************************* - * PROGRESS BAR - *********************************************/ -.reveal .progress { - background: rgba(0, 0, 0, 0.2); - color: var(--r-link-color); -} - -/********************************************* - * PRINT BACKGROUND - *********************************************/ -@media print { - .backgrounds { - background-color: var(--r-background-color); - } -} \ No newline at end of file diff --git a/opengisch-about-us/_assets/slides/stylesheets/opengisch-bright.css b/opengisch-about-us/_assets/slides/stylesheets/opengisch-bright.css deleted file mode 100644 index 90ee124..0000000 --- a/opengisch-about-us/_assets/slides/stylesheets/opengisch-bright.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-bright.css */ -/* @theme opengisch-bright*/ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-green); -} \ No newline at end of file diff --git a/opengisch-about-us/_assets/slides/stylesheets/opengisch-dark.css b/opengisch-about-us/_assets/slides/stylesheets/opengisch-dark.css deleted file mode 100644 index 46d6256..0000000 --- a/opengisch-about-us/_assets/slides/stylesheets/opengisch-dark.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-dark.css */ -/* @theme opengisch-dark */ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-black); -} diff --git a/opengisch-about-us/_assets/slides/stylesheets/pitch-theme.css b/opengisch-about-us/_assets/slides/stylesheets/pitch-theme.css deleted file mode 100644 index 248a68f..0000000 --- a/opengisch-about-us/_assets/slides/stylesheets/pitch-theme.css +++ /dev/null @@ -1,26 +0,0 @@ -/* pitch-theme.css */ -/* @theme pitch-theme*/ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-green); - --r-heading1-size: 200px; - --r-heading2-size: 150px; - --r-heading3-size: 100px; - --r-heading4-size: 75px; - --r-heading5-size: 60px; - --r-heading6-size: 25px; -} - - -h1, h2, h3, h4, h5, h6 { - color: var(--opengisch-light) !important; - -webkit-text-stroke: 3px var(--opengisch-blue); - text-align: left !important; -} - -p { - color: var(--opengisch-dark) !important; - text-align: left !important; -} diff --git a/opengisch-about-us/_assets/slides/stylesheets/softteaching-theme.css b/opengisch-about-us/_assets/slides/stylesheets/softteaching-theme.css deleted file mode 100644 index b6c38d2..0000000 --- a/opengisch-about-us/_assets/slides/stylesheets/softteaching-theme.css +++ /dev/null @@ -1,49 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); - --opengisch-softgreen: #b2e07e; -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-softgreen) !important; - text-align: left !important; -} - -h4,h5,h6{ - text-transform: none !important; -} - -code { - color: rgba(255, 255, 255, 0.87) !important; - background-color: rgba(0, 0, 0) !important; - align-self: left !important; -} -pre { - margin: 0 !important; - font-size: 1em !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} -li { - margin-top: 0.5em !important; -} \ No newline at end of file diff --git a/opengisch-about-us/intro-short.html b/opengisch-about-us/intro-short.html index 861f811..1a2111f 100644 --- a/opengisch-about-us/intro-short.html +++ b/opengisch-about-us/intro-short.html @@ -11,12 +11,6 @@ - - - - - -
@@ -99,7 +93,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"About Us","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"About Us"}, queryOptions); diff --git a/opengisch-about-us/intro.html b/opengisch-about-us/intro.html index accdea6..3398d89 100644 --- a/opengisch-about-us/intro.html +++ b/opengisch-about-us/intro.html @@ -11,12 +11,6 @@ - - - - - -
@@ -119,7 +113,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"About Us","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"About Us"}, queryOptions); diff --git a/opengisch-team/_assets/slides/stylesheets/base-theme.css b/opengisch-team/_assets/slides/stylesheets/base-theme.css deleted file mode 100644 index 78fdfa9..0000000 --- a/opengisch-team/_assets/slides/stylesheets/base-theme.css +++ /dev/null @@ -1,58 +0,0 @@ -/* base-theme.css */ -/* @theme base-theme */ - -@import "base-white-theme.css"; - -:root { - --opengisch-green: hsl(88, 67%, 48%); - --opengisch-blue: #2880cc; - --opengisch-dark: #313131; - --opengisch-light: #c2c2c2; - - --r-main-font: "futura-pt", Helvetica, Arial, sans-serif; - --r-heading-font: "futura-pt", Helvetica, Arial, sans-serif; -} - -/* assign the r-heading size to h5 because it's not done by current reveal.js theme */ -h5 { - font-size: var(--r-heading5-size); -} - -/* color classes used for texts */ - -.blue { - color: var(--opengisch-blue) !important; -} - -.green { - color: var(--opengisch-green) !important; -} - -.light { - color: var(--opengisch-light) !important; -} - -.dark { - color: var(--opengisch-dark) !important; -} - -/* opengisch logo */ - -body:after { - content: url(./logo_white.png); - position: fixed; - bottom: -6em; - right: -6em; - z-index: -1; -} - -/* classes used for multiple columns */ - -.container { - display: flex; -} - - -.col { - flex: 1; -} \ No newline at end of file diff --git a/opengisch-team/_assets/slides/stylesheets/base-white-theme.css b/opengisch-team/_assets/slides/stylesheets/base-white-theme.css deleted file mode 100644 index d072838..0000000 --- a/opengisch-team/_assets/slides/stylesheets/base-white-theme.css +++ /dev/null @@ -1,364 +0,0 @@ -/** - * White theme for reveal.js. This is the opposite of the 'black' theme. - * - * By Hakim El Hattab, http://hakim.se - */ -@import url(./fonts/source-sans-pro/source-sans-pro.css); - -section.has-dark-background, -section.has-dark-background h1, -section.has-dark-background h2, -section.has-dark-background h3, -section.has-dark-background h4, -section.has-dark-background h5, -section.has-dark-background h6 { - color: #fff; -} - -/********************************************* - * GLOBAL STYLES - ********************************************/ -:root { - --r-background-color: #fff; - --r-main-font: Source Sans Pro, Helvetica, sans-serif; - --r-main-font-size: 2em; - --r-main-color: #222; - --r-block-margin: 20px; - --r-heading-margin: 0 0 20px 0; - --r-heading-font: Source Sans Pro, Helvetica, sans-serif; - --r-heading-color: #222; - --r-heading-line-height: 1.2; - --r-heading-letter-spacing: normal; - --r-heading-text-transform: uppercase; - --r-heading-text-shadow: none; - --r-heading-font-weight: 600; - --r-heading1-text-shadow: none; - --r-heading1-size: 2.5em; - --r-heading2-size: 1.6em; - --r-heading3-size: 1.3em; - --r-heading4-size: 1em; - --r-code-font: monospace; - --r-link-color: #2a76dd; - --r-link-color-dark: #1a53a1; - --r-link-color-hover: #6ca0e8; - --r-selection-background-color: #98bdef; - --r-selection-color: #fff; -} - -.reveal-viewport { - background: #fff; - background-color: var(--r-background-color); -} - -.reveal { - font-family: var(--r-main-font); - font-size: var(--r-main-font-size); - font-weight: normal; - color: var(--r-main-color); -} - -.reveal ::selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal ::-moz-selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal .slides section, -.reveal .slides section>section { - line-height: 1.3; - font-weight: inherit; -} - -/********************************************* - * HEADERS - *********************************************/ -.reveal h1, -.reveal h2, -.reveal h3, -.reveal h4, -.reveal h5, -.reveal h6 { - 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); - word-wrap: break-word; -} - -.reveal h1 { - font-size: var(--r-heading1-size); -} - -.reveal h2 { - font-size: var(--r-heading2-size); -} - -.reveal h3 { - font-size: var(--r-heading3-size); -} - -.reveal h4 { - font-size: var(--r-heading4-size); -} - -.reveal h1 { - text-shadow: var(--r-heading1-text-shadow); -} - -/********************************************* - * OTHER - *********************************************/ -.reveal p { - margin: var(--r-block-margin) 0; - line-height: 1.3; -} - -/* 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 { - margin-bottom: 0; -} - -/* 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 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 blockquote { - display: block; - position: relative; - width: 70%; - margin: var(--r-block-margin) 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 { - display: block; - position: relative; - width: 90%; - margin: var(--r-block-margin) auto; - text-align: left; - font-size: 0.55em; - font-family: var(--r-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: var(--r-code-font); - text-transform: none; - tab-size: 2; -} - -.reveal pre code { - display: block; - padding: 5px; - overflow: auto; - max-height: 400px; - word-wrap: normal; -} - -.reveal .code-wrapper { - white-space: normal; -} - -.reveal .code-wrapper code { - white-space: pre; -} - -.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; - font-size: smaller; -} - -.reveal sub { - vertical-align: sub; - font-size: smaller; -} - -.reveal small { - display: inline-block; - font-size: 0.6em; - line-height: 1.2em; - vertical-align: top; -} - -.reveal small * { - vertical-align: top; -} - -.reveal img { - margin: var(--r-block-margin) 0; -} - -/********************************************* - * LINKS - *********************************************/ -.reveal a { - color: var(--r-link-color); - text-decoration: none; - transition: color 0.15s ease; -} - -.reveal a:hover { - color: var(--r-link-color-hover); - text-shadow: none; - border: none; -} - -.reveal .roll span:after { - color: #fff; - background: var(--r-link-color-dark); -} - -/********************************************* - * Frame helper - *********************************************/ -.reveal .r-frame { - border: 4px solid var(--r-main-color); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); -} - -.reveal a .r-frame { - transition: all 0.15s linear; -} - -.reveal a:hover .r-frame { - border-color: var(--r-link-color); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); -} - -/********************************************* - * NAVIGATION CONTROLS - *********************************************/ -.reveal .controls { - color: var(--r-link-color); -} - -/********************************************* - * PROGRESS BAR - *********************************************/ -.reveal .progress { - background: rgba(0, 0, 0, 0.2); - color: var(--r-link-color); -} - -/********************************************* - * PRINT BACKGROUND - *********************************************/ -@media print { - .backgrounds { - background-color: var(--r-background-color); - } -} \ No newline at end of file diff --git a/opengisch-team/_assets/slides/stylesheets/opengisch-bright.css b/opengisch-team/_assets/slides/stylesheets/opengisch-bright.css deleted file mode 100644 index 90ee124..0000000 --- a/opengisch-team/_assets/slides/stylesheets/opengisch-bright.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-bright.css */ -/* @theme opengisch-bright*/ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-green); -} \ No newline at end of file diff --git a/opengisch-team/_assets/slides/stylesheets/opengisch-dark.css b/opengisch-team/_assets/slides/stylesheets/opengisch-dark.css deleted file mode 100644 index 46d6256..0000000 --- a/opengisch-team/_assets/slides/stylesheets/opengisch-dark.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-dark.css */ -/* @theme opengisch-dark */ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-black); -} diff --git a/opengisch-team/_assets/slides/stylesheets/pitch-theme.css b/opengisch-team/_assets/slides/stylesheets/pitch-theme.css deleted file mode 100644 index 248a68f..0000000 --- a/opengisch-team/_assets/slides/stylesheets/pitch-theme.css +++ /dev/null @@ -1,26 +0,0 @@ -/* pitch-theme.css */ -/* @theme pitch-theme*/ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-green); - --r-heading1-size: 200px; - --r-heading2-size: 150px; - --r-heading3-size: 100px; - --r-heading4-size: 75px; - --r-heading5-size: 60px; - --r-heading6-size: 25px; -} - - -h1, h2, h3, h4, h5, h6 { - color: var(--opengisch-light) !important; - -webkit-text-stroke: 3px var(--opengisch-blue); - text-align: left !important; -} - -p { - color: var(--opengisch-dark) !important; - text-align: left !important; -} diff --git a/opengisch-team/_assets/slides/stylesheets/softteaching-theme.css b/opengisch-team/_assets/slides/stylesheets/softteaching-theme.css deleted file mode 100644 index b6c38d2..0000000 --- a/opengisch-team/_assets/slides/stylesheets/softteaching-theme.css +++ /dev/null @@ -1,49 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); - --opengisch-softgreen: #b2e07e; -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-softgreen) !important; - text-align: left !important; -} - -h4,h5,h6{ - text-transform: none !important; -} - -code { - color: rgba(255, 255, 255, 0.87) !important; - background-color: rgba(0, 0, 0) !important; - align-self: left !important; -} -pre { - margin: 0 !important; - font-size: 1em !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} -li { - margin-top: 0.5em !important; -} \ No newline at end of file diff --git a/opengisch-team/anna-randegger.html b/opengisch-team/anna-randegger.html index f5792b2..42d0ec3 100644 --- a/opengisch-team/anna-randegger.html +++ b/opengisch-team/anna-randegger.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/ben-koch.html b/opengisch-team/ben-koch.html index 1f06b35..3e9836e 100644 --- a/opengisch-team/ben-koch.html +++ b/opengisch-team/ben-koch.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/chantal-widmer.html b/opengisch-team/chantal-widmer.html index 2cb3434..9bc9dc7 100644 --- a/opengisch-team/chantal-widmer.html +++ b/opengisch-team/chantal-widmer.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/clemens-rudert.html b/opengisch-team/clemens-rudert.html index 52af2bd..45b2611 100644 --- a/opengisch-team/clemens-rudert.html +++ b/opengisch-team/clemens-rudert.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/damiano-lombardi.html b/opengisch-team/damiano-lombardi.html index 7d0caf1..7151683 100644 --- a/opengisch-team/damiano-lombardi.html +++ b/opengisch-team/damiano-lombardi.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/david-signer.html b/opengisch-team/david-signer.html index b651658..09b0a27 100644 --- a/opengisch-team/david-signer.html +++ b/opengisch-team/david-signer.html @@ -11,12 +11,6 @@ - - - - - -
@@ -92,7 +86,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/denis-rouzaud.html b/opengisch-team/denis-rouzaud.html index 6c921da..edc1042 100644 --- a/opengisch-team/denis-rouzaud.html +++ b/opengisch-team/denis-rouzaud.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/didier-dupertuis.html b/opengisch-team/didier-dupertuis.html index f24e06c..3d5bb98 100644 --- a/opengisch-team/didier-dupertuis.html +++ b/opengisch-team/didier-dupertuis.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/fabian-binder.html b/opengisch-team/fabian-binder.html index 41ec94c..df20f02 100644 --- a/opengisch-team/fabian-binder.html +++ b/opengisch-team/fabian-binder.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/german-carrillo.html b/opengisch-team/german-carrillo.html index dcc5176..d2dcd06 100644 --- a/opengisch-team/german-carrillo.html +++ b/opengisch-team/german-carrillo.html @@ -11,12 +11,6 @@ - - - - - -
@@ -92,7 +86,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/isabel-kiefer.html b/opengisch-team/isabel-kiefer.html index 6de8154..3a92129 100644 --- a/opengisch-team/isabel-kiefer.html +++ b/opengisch-team/isabel-kiefer.html @@ -11,12 +11,6 @@ - - - - - -
@@ -91,7 +85,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/ivan-ivanov.html b/opengisch-team/ivan-ivanov.html index 30f1a2a..fba886f 100644 --- a/opengisch-team/ivan-ivanov.html +++ b/opengisch-team/ivan-ivanov.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/johnny-sequeira.html b/opengisch-team/johnny-sequeira.html index dd0f4e9..07438c7 100644 --- a/opengisch-team/johnny-sequeira.html +++ b/opengisch-team/johnny-sequeira.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/linda-indra-camathias.html b/opengisch-team/linda-indra-camathias.html index a7259b2..9cd6f7d 100644 --- a/opengisch-team/linda-indra-camathias.html +++ b/opengisch-team/linda-indra-camathias.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/lucie-nicolier.html b/opengisch-team/lucie-nicolier.html index b2114b8..8e0e770 100644 --- a/opengisch-team/lucie-nicolier.html +++ b/opengisch-team/lucie-nicolier.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/marco-bernasocchi.html b/opengisch-team/marco-bernasocchi.html index e3071ed..b1c099c 100644 --- a/opengisch-team/marco-bernasocchi.html +++ b/opengisch-team/marco-bernasocchi.html @@ -11,12 +11,6 @@ - - - - - -
@@ -91,7 +85,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/mathieu-pellerin.html b/opengisch-team/mathieu-pellerin.html index d3b0a12..0c863f0 100644 --- a/opengisch-team/mathieu-pellerin.html +++ b/opengisch-team/mathieu-pellerin.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/matthias-kuhn.html b/opengisch-team/matthias-kuhn.html index 0e65886..208a3cb 100644 --- a/opengisch-team/matthias-kuhn.html +++ b/opengisch-team/matthias-kuhn.html @@ -11,12 +11,6 @@ - - - - - -
@@ -92,7 +86,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/michael-schmuki.html b/opengisch-team/michael-schmuki.html index 2dd8290..6fff7af 100644 --- a/opengisch-team/michael-schmuki.html +++ b/opengisch-team/michael-schmuki.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/mirjam-nufer.html b/opengisch-team/mirjam-nufer.html index eac8982..26e8601 100644 --- a/opengisch-team/mirjam-nufer.html +++ b/opengisch-team/mirjam-nufer.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/opengisch-team/zsanett-medvei.html b/opengisch-team/zsanett-medvei.html index bcfd49e..997f879 100644 --- a/opengisch-team/zsanett-medvei.html +++ b/opengisch-team/zsanett-medvei.html @@ -11,12 +11,6 @@ - - - - - -
@@ -85,7 +79,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Team"}, queryOptions); diff --git a/talk-interlis-presentation/_assets/slides/stylesheets/base-theme.css b/talk-interlis-presentation/_assets/slides/stylesheets/base-theme.css deleted file mode 100644 index f7f9f3a..0000000 --- a/talk-interlis-presentation/_assets/slides/stylesheets/base-theme.css +++ /dev/null @@ -1,58 +0,0 @@ -/* base-theme.css */ -/* @theme base-theme */ - -@import "base-white-theme.css"; - -:root { - --opengisch-green: hsl(88, 67%, 48%); - --opengisch-blue: #2880cc; - --opengisch-dark: #313131; - --opengisch-light: #c2c2c2; - - --r-main-font: "futura-pt", Helvetica, Arial, sans-serif; - --r-heading-font: "futura-pt", Helvetica, Arial, sans-serif; -} - -/* assign the r-heading size to h5 because it's not done by current reveal.js theme */ -h5 { - font-size: var(--r-heading5-size); -} - -/* color classes used for texts */ - -.blue { - color: var(--opengisch-blue) !important; -} - -.green { - color: var(--opengisch-green) !important; -} - -.light { - color: var(--opengisch-light) !important; -} - -.dark { - color: var(--opengisch-dark) !important; -} - -/* opengisch logo */ - -body:after { - content: url(./logo_white.png); - position: fixed; - bottom: -6em; - right: -6em; - z-index: -1; -} - -/* classes used for multiple columns */ - -.container { - display: flex; -} - - -.col { - flex: 1; -} \ No newline at end of file diff --git a/talk-interlis-presentation/_assets/slides/stylesheets/base-white-theme.css b/talk-interlis-presentation/_assets/slides/stylesheets/base-white-theme.css deleted file mode 100644 index d072838..0000000 --- a/talk-interlis-presentation/_assets/slides/stylesheets/base-white-theme.css +++ /dev/null @@ -1,364 +0,0 @@ -/** - * White theme for reveal.js. This is the opposite of the 'black' theme. - * - * By Hakim El Hattab, http://hakim.se - */ -@import url(./fonts/source-sans-pro/source-sans-pro.css); - -section.has-dark-background, -section.has-dark-background h1, -section.has-dark-background h2, -section.has-dark-background h3, -section.has-dark-background h4, -section.has-dark-background h5, -section.has-dark-background h6 { - color: #fff; -} - -/********************************************* - * GLOBAL STYLES - ********************************************/ -:root { - --r-background-color: #fff; - --r-main-font: Source Sans Pro, Helvetica, sans-serif; - --r-main-font-size: 2em; - --r-main-color: #222; - --r-block-margin: 20px; - --r-heading-margin: 0 0 20px 0; - --r-heading-font: Source Sans Pro, Helvetica, sans-serif; - --r-heading-color: #222; - --r-heading-line-height: 1.2; - --r-heading-letter-spacing: normal; - --r-heading-text-transform: uppercase; - --r-heading-text-shadow: none; - --r-heading-font-weight: 600; - --r-heading1-text-shadow: none; - --r-heading1-size: 2.5em; - --r-heading2-size: 1.6em; - --r-heading3-size: 1.3em; - --r-heading4-size: 1em; - --r-code-font: monospace; - --r-link-color: #2a76dd; - --r-link-color-dark: #1a53a1; - --r-link-color-hover: #6ca0e8; - --r-selection-background-color: #98bdef; - --r-selection-color: #fff; -} - -.reveal-viewport { - background: #fff; - background-color: var(--r-background-color); -} - -.reveal { - font-family: var(--r-main-font); - font-size: var(--r-main-font-size); - font-weight: normal; - color: var(--r-main-color); -} - -.reveal ::selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal ::-moz-selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal .slides section, -.reveal .slides section>section { - line-height: 1.3; - font-weight: inherit; -} - -/********************************************* - * HEADERS - *********************************************/ -.reveal h1, -.reveal h2, -.reveal h3, -.reveal h4, -.reveal h5, -.reveal h6 { - 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); - word-wrap: break-word; -} - -.reveal h1 { - font-size: var(--r-heading1-size); -} - -.reveal h2 { - font-size: var(--r-heading2-size); -} - -.reveal h3 { - font-size: var(--r-heading3-size); -} - -.reveal h4 { - font-size: var(--r-heading4-size); -} - -.reveal h1 { - text-shadow: var(--r-heading1-text-shadow); -} - -/********************************************* - * OTHER - *********************************************/ -.reveal p { - margin: var(--r-block-margin) 0; - line-height: 1.3; -} - -/* 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 { - margin-bottom: 0; -} - -/* 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 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 blockquote { - display: block; - position: relative; - width: 70%; - margin: var(--r-block-margin) 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 { - display: block; - position: relative; - width: 90%; - margin: var(--r-block-margin) auto; - text-align: left; - font-size: 0.55em; - font-family: var(--r-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: var(--r-code-font); - text-transform: none; - tab-size: 2; -} - -.reveal pre code { - display: block; - padding: 5px; - overflow: auto; - max-height: 400px; - word-wrap: normal; -} - -.reveal .code-wrapper { - white-space: normal; -} - -.reveal .code-wrapper code { - white-space: pre; -} - -.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; - font-size: smaller; -} - -.reveal sub { - vertical-align: sub; - font-size: smaller; -} - -.reveal small { - display: inline-block; - font-size: 0.6em; - line-height: 1.2em; - vertical-align: top; -} - -.reveal small * { - vertical-align: top; -} - -.reveal img { - margin: var(--r-block-margin) 0; -} - -/********************************************* - * LINKS - *********************************************/ -.reveal a { - color: var(--r-link-color); - text-decoration: none; - transition: color 0.15s ease; -} - -.reveal a:hover { - color: var(--r-link-color-hover); - text-shadow: none; - border: none; -} - -.reveal .roll span:after { - color: #fff; - background: var(--r-link-color-dark); -} - -/********************************************* - * Frame helper - *********************************************/ -.reveal .r-frame { - border: 4px solid var(--r-main-color); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); -} - -.reveal a .r-frame { - transition: all 0.15s linear; -} - -.reveal a:hover .r-frame { - border-color: var(--r-link-color); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); -} - -/********************************************* - * NAVIGATION CONTROLS - *********************************************/ -.reveal .controls { - color: var(--r-link-color); -} - -/********************************************* - * PROGRESS BAR - *********************************************/ -.reveal .progress { - background: rgba(0, 0, 0, 0.2); - color: var(--r-link-color); -} - -/********************************************* - * PRINT BACKGROUND - *********************************************/ -@media print { - .backgrounds { - background-color: var(--r-background-color); - } -} \ No newline at end of file diff --git a/talk-interlis-presentation/_assets/slides/stylesheets/opengisch-bright.css b/talk-interlis-presentation/_assets/slides/stylesheets/opengisch-bright.css deleted file mode 100644 index 90ee124..0000000 --- a/talk-interlis-presentation/_assets/slides/stylesheets/opengisch-bright.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-bright.css */ -/* @theme opengisch-bright*/ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-green); -} \ No newline at end of file diff --git a/talk-interlis-presentation/_assets/slides/stylesheets/opengisch-dark.css b/talk-interlis-presentation/_assets/slides/stylesheets/opengisch-dark.css deleted file mode 100644 index 46d6256..0000000 --- a/talk-interlis-presentation/_assets/slides/stylesheets/opengisch-dark.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-dark.css */ -/* @theme opengisch-dark */ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-black); -} diff --git a/talk-interlis-presentation/_assets/slides/stylesheets/pitch-theme.css b/talk-interlis-presentation/_assets/slides/stylesheets/pitch-theme.css deleted file mode 100644 index 248a68f..0000000 --- a/talk-interlis-presentation/_assets/slides/stylesheets/pitch-theme.css +++ /dev/null @@ -1,26 +0,0 @@ -/* pitch-theme.css */ -/* @theme pitch-theme*/ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-green); - --r-heading1-size: 200px; - --r-heading2-size: 150px; - --r-heading3-size: 100px; - --r-heading4-size: 75px; - --r-heading5-size: 60px; - --r-heading6-size: 25px; -} - - -h1, h2, h3, h4, h5, h6 { - color: var(--opengisch-light) !important; - -webkit-text-stroke: 3px var(--opengisch-blue); - text-align: left !important; -} - -p { - color: var(--opengisch-dark) !important; - text-align: left !important; -} diff --git a/talk-interlis-presentation/_assets/slides/stylesheets/softteaching-theme.css b/talk-interlis-presentation/_assets/slides/stylesheets/softteaching-theme.css deleted file mode 100644 index af1011e..0000000 --- a/talk-interlis-presentation/_assets/slides/stylesheets/softteaching-theme.css +++ /dev/null @@ -1,47 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); - --opengisch-softgreen: #b2e07e; -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-softgreen) !important; - text-align: left !important; -} - -h4,h5,h6{ - text-transform: none !important; -} - -code { - color: rgba(255, 255, 255, 0.87) !important; - font-size: 1.7em !important; - line-height: 1.2em !important; - background-color: rgba(0, 0, 0, 0.726) !important; - align-self: left !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} -li { - margin-top: 0.5em !important; -} \ No newline at end of file diff --git a/talk-interlis-presentation/_assets/slides/stylesheets/teaching-theme.css b/talk-interlis-presentation/_assets/slides/stylesheets/teaching-theme.css deleted file mode 100644 index 9c32989..0000000 --- a/talk-interlis-presentation/_assets/slides/stylesheets/teaching-theme.css +++ /dev/null @@ -1,32 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-green) !important; - -webkit-text-stroke: 2px var(--opengisch-light); - text-align: left !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} \ No newline at end of file diff --git a/talk-interlis-presentation/interlis-in-fifteen.html b/talk-interlis-presentation/interlis-in-fifteen.html index 986afa0..e3fdf41 100644 --- a/talk-interlis-presentation/interlis-in-fifteen.html +++ b/talk-interlis-presentation/interlis-in-fifteen.html @@ -11,13 +11,6 @@ - - - - - - -
@@ -730,7 +723,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Interlis Presentation","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css,slides/stylesheets/teaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Interlis Presentation"}, queryOptions); diff --git a/talk-interlis-presentation/modelbaker-intro-en.html b/talk-interlis-presentation/modelbaker-intro-en.html index b92c179..5bb05ff 100644 --- a/talk-interlis-presentation/modelbaker-intro-en.html +++ b/talk-interlis-presentation/modelbaker-intro-en.html @@ -11,13 +11,6 @@ - - - - - - -
@@ -253,7 +246,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Interlis Presentation","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css,slides/stylesheets/teaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Interlis Presentation"}, queryOptions); diff --git a/talk-modelbaker-pitch/_assets/slides/stylesheets/base-theme.css b/talk-modelbaker-pitch/_assets/slides/stylesheets/base-theme.css deleted file mode 100644 index f7f9f3a..0000000 --- a/talk-modelbaker-pitch/_assets/slides/stylesheets/base-theme.css +++ /dev/null @@ -1,58 +0,0 @@ -/* base-theme.css */ -/* @theme base-theme */ - -@import "base-white-theme.css"; - -:root { - --opengisch-green: hsl(88, 67%, 48%); - --opengisch-blue: #2880cc; - --opengisch-dark: #313131; - --opengisch-light: #c2c2c2; - - --r-main-font: "futura-pt", Helvetica, Arial, sans-serif; - --r-heading-font: "futura-pt", Helvetica, Arial, sans-serif; -} - -/* assign the r-heading size to h5 because it's not done by current reveal.js theme */ -h5 { - font-size: var(--r-heading5-size); -} - -/* color classes used for texts */ - -.blue { - color: var(--opengisch-blue) !important; -} - -.green { - color: var(--opengisch-green) !important; -} - -.light { - color: var(--opengisch-light) !important; -} - -.dark { - color: var(--opengisch-dark) !important; -} - -/* opengisch logo */ - -body:after { - content: url(./logo_white.png); - position: fixed; - bottom: -6em; - right: -6em; - z-index: -1; -} - -/* classes used for multiple columns */ - -.container { - display: flex; -} - - -.col { - flex: 1; -} \ No newline at end of file diff --git a/talk-modelbaker-pitch/_assets/slides/stylesheets/base-white-theme.css b/talk-modelbaker-pitch/_assets/slides/stylesheets/base-white-theme.css deleted file mode 100644 index d072838..0000000 --- a/talk-modelbaker-pitch/_assets/slides/stylesheets/base-white-theme.css +++ /dev/null @@ -1,364 +0,0 @@ -/** - * White theme for reveal.js. This is the opposite of the 'black' theme. - * - * By Hakim El Hattab, http://hakim.se - */ -@import url(./fonts/source-sans-pro/source-sans-pro.css); - -section.has-dark-background, -section.has-dark-background h1, -section.has-dark-background h2, -section.has-dark-background h3, -section.has-dark-background h4, -section.has-dark-background h5, -section.has-dark-background h6 { - color: #fff; -} - -/********************************************* - * GLOBAL STYLES - ********************************************/ -:root { - --r-background-color: #fff; - --r-main-font: Source Sans Pro, Helvetica, sans-serif; - --r-main-font-size: 2em; - --r-main-color: #222; - --r-block-margin: 20px; - --r-heading-margin: 0 0 20px 0; - --r-heading-font: Source Sans Pro, Helvetica, sans-serif; - --r-heading-color: #222; - --r-heading-line-height: 1.2; - --r-heading-letter-spacing: normal; - --r-heading-text-transform: uppercase; - --r-heading-text-shadow: none; - --r-heading-font-weight: 600; - --r-heading1-text-shadow: none; - --r-heading1-size: 2.5em; - --r-heading2-size: 1.6em; - --r-heading3-size: 1.3em; - --r-heading4-size: 1em; - --r-code-font: monospace; - --r-link-color: #2a76dd; - --r-link-color-dark: #1a53a1; - --r-link-color-hover: #6ca0e8; - --r-selection-background-color: #98bdef; - --r-selection-color: #fff; -} - -.reveal-viewport { - background: #fff; - background-color: var(--r-background-color); -} - -.reveal { - font-family: var(--r-main-font); - font-size: var(--r-main-font-size); - font-weight: normal; - color: var(--r-main-color); -} - -.reveal ::selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal ::-moz-selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal .slides section, -.reveal .slides section>section { - line-height: 1.3; - font-weight: inherit; -} - -/********************************************* - * HEADERS - *********************************************/ -.reveal h1, -.reveal h2, -.reveal h3, -.reveal h4, -.reveal h5, -.reveal h6 { - 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); - word-wrap: break-word; -} - -.reveal h1 { - font-size: var(--r-heading1-size); -} - -.reveal h2 { - font-size: var(--r-heading2-size); -} - -.reveal h3 { - font-size: var(--r-heading3-size); -} - -.reveal h4 { - font-size: var(--r-heading4-size); -} - -.reveal h1 { - text-shadow: var(--r-heading1-text-shadow); -} - -/********************************************* - * OTHER - *********************************************/ -.reveal p { - margin: var(--r-block-margin) 0; - line-height: 1.3; -} - -/* 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 { - margin-bottom: 0; -} - -/* 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 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 blockquote { - display: block; - position: relative; - width: 70%; - margin: var(--r-block-margin) 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 { - display: block; - position: relative; - width: 90%; - margin: var(--r-block-margin) auto; - text-align: left; - font-size: 0.55em; - font-family: var(--r-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: var(--r-code-font); - text-transform: none; - tab-size: 2; -} - -.reveal pre code { - display: block; - padding: 5px; - overflow: auto; - max-height: 400px; - word-wrap: normal; -} - -.reveal .code-wrapper { - white-space: normal; -} - -.reveal .code-wrapper code { - white-space: pre; -} - -.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; - font-size: smaller; -} - -.reveal sub { - vertical-align: sub; - font-size: smaller; -} - -.reveal small { - display: inline-block; - font-size: 0.6em; - line-height: 1.2em; - vertical-align: top; -} - -.reveal small * { - vertical-align: top; -} - -.reveal img { - margin: var(--r-block-margin) 0; -} - -/********************************************* - * LINKS - *********************************************/ -.reveal a { - color: var(--r-link-color); - text-decoration: none; - transition: color 0.15s ease; -} - -.reveal a:hover { - color: var(--r-link-color-hover); - text-shadow: none; - border: none; -} - -.reveal .roll span:after { - color: #fff; - background: var(--r-link-color-dark); -} - -/********************************************* - * Frame helper - *********************************************/ -.reveal .r-frame { - border: 4px solid var(--r-main-color); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); -} - -.reveal a .r-frame { - transition: all 0.15s linear; -} - -.reveal a:hover .r-frame { - border-color: var(--r-link-color); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); -} - -/********************************************* - * NAVIGATION CONTROLS - *********************************************/ -.reveal .controls { - color: var(--r-link-color); -} - -/********************************************* - * PROGRESS BAR - *********************************************/ -.reveal .progress { - background: rgba(0, 0, 0, 0.2); - color: var(--r-link-color); -} - -/********************************************* - * PRINT BACKGROUND - *********************************************/ -@media print { - .backgrounds { - background-color: var(--r-background-color); - } -} \ No newline at end of file diff --git a/talk-modelbaker-pitch/_assets/slides/stylesheets/opengisch-bright.css b/talk-modelbaker-pitch/_assets/slides/stylesheets/opengisch-bright.css deleted file mode 100644 index 90ee124..0000000 --- a/talk-modelbaker-pitch/_assets/slides/stylesheets/opengisch-bright.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-bright.css */ -/* @theme opengisch-bright*/ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-green); -} \ No newline at end of file diff --git a/talk-modelbaker-pitch/_assets/slides/stylesheets/opengisch-dark.css b/talk-modelbaker-pitch/_assets/slides/stylesheets/opengisch-dark.css deleted file mode 100644 index 46d6256..0000000 --- a/talk-modelbaker-pitch/_assets/slides/stylesheets/opengisch-dark.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-dark.css */ -/* @theme opengisch-dark */ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-black); -} diff --git a/talk-modelbaker-pitch/_assets/slides/stylesheets/pitch-theme.css b/talk-modelbaker-pitch/_assets/slides/stylesheets/pitch-theme.css deleted file mode 100644 index 248a68f..0000000 --- a/talk-modelbaker-pitch/_assets/slides/stylesheets/pitch-theme.css +++ /dev/null @@ -1,26 +0,0 @@ -/* pitch-theme.css */ -/* @theme pitch-theme*/ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-green); - --r-heading1-size: 200px; - --r-heading2-size: 150px; - --r-heading3-size: 100px; - --r-heading4-size: 75px; - --r-heading5-size: 60px; - --r-heading6-size: 25px; -} - - -h1, h2, h3, h4, h5, h6 { - color: var(--opengisch-light) !important; - -webkit-text-stroke: 3px var(--opengisch-blue); - text-align: left !important; -} - -p { - color: var(--opengisch-dark) !important; - text-align: left !important; -} diff --git a/talk-modelbaker-pitch/_assets/slides/stylesheets/softteaching-theme.css b/talk-modelbaker-pitch/_assets/slides/stylesheets/softteaching-theme.css deleted file mode 100644 index af1011e..0000000 --- a/talk-modelbaker-pitch/_assets/slides/stylesheets/softteaching-theme.css +++ /dev/null @@ -1,47 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); - --opengisch-softgreen: #b2e07e; -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-softgreen) !important; - text-align: left !important; -} - -h4,h5,h6{ - text-transform: none !important; -} - -code { - color: rgba(255, 255, 255, 0.87) !important; - font-size: 1.7em !important; - line-height: 1.2em !important; - background-color: rgba(0, 0, 0, 0.726) !important; - align-self: left !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} -li { - margin-top: 0.5em !important; -} \ No newline at end of file diff --git a/talk-modelbaker-pitch/_assets/slides/stylesheets/teaching-theme.css b/talk-modelbaker-pitch/_assets/slides/stylesheets/teaching-theme.css deleted file mode 100644 index 9c32989..0000000 --- a/talk-modelbaker-pitch/_assets/slides/stylesheets/teaching-theme.css +++ /dev/null @@ -1,32 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-green) !important; - -webkit-text-stroke: 2px var(--opengisch-light); - text-align: left !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} \ No newline at end of file diff --git a/talk-modelbaker-pitch/modelbaker-pitch-de.html b/talk-modelbaker-pitch/modelbaker-pitch-de.html index 88b8365..eaa385c 100644 --- a/talk-modelbaker-pitch/modelbaker-pitch-de.html +++ b/talk-modelbaker-pitch/modelbaker-pitch-de.html @@ -11,13 +11,6 @@ - - - - - - -
@@ -166,7 +159,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Modelbaker Pitch","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css,slides/stylesheets/teaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Modelbaker Pitch"}, queryOptions); diff --git a/talk-modelbaker-pitch/modelbaker-pitch-en.html b/talk-modelbaker-pitch/modelbaker-pitch-en.html index 2ef65ca..f61c176 100644 --- a/talk-modelbaker-pitch/modelbaker-pitch-en.html +++ b/talk-modelbaker-pitch/modelbaker-pitch-en.html @@ -11,13 +11,6 @@ - - - - - - -
@@ -159,7 +152,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Modelbaker Pitch","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css,slides/stylesheets/teaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Modelbaker Pitch"}, queryOptions); diff --git a/talk-qfield/_assets/slides/stylesheets/logo_white.png b/talk-qfield/_assets/slides/stylesheets/logo_white.png deleted file mode 100644 index d3c082d..0000000 Binary files a/talk-qfield/_assets/slides/stylesheets/logo_white.png and /dev/null differ diff --git a/talk-qfield/_assets/slides/stylesheets/qfield-base-theme.css b/talk-qfield/_assets/slides/stylesheets/qfield-base-theme.css deleted file mode 100644 index 94800c2..0000000 --- a/talk-qfield/_assets/slides/stylesheets/qfield-base-theme.css +++ /dev/null @@ -1,77 +0,0 @@ -/* base-theme.css */ -/* @theme base-theme */ - -@import "qfield-base-white-theme.css"; -@import url(https://use.typekit.net/kve4lwn.css); - -:root { - --opengisch-green: hsl(88, 67%, 48%); - --opengisch-blue: #2880cc; - --opengisch-dark: #313131; - --opengisch-light: #ffffff; - - --r-main-font: "futura-pt", Helvetica, Arial, sans-serif; - --r-heading-font: "futura-pt", Helvetica, Arial, sans-serif; -} - -/* assign the r-heading size to h5 because it's not done by current reveal.js theme */ -h5 { - font-size: var(--r-heading5-size); -} - -/* color classes used for texts */ - -.blue { - color: var(--opengisch-blue) !important; -} - -.green { - color: var(--opengisch-green) !important; -} - -.light { - color: var(--opengisch-light) !important; -} - -.dark { - color: var(--opengisch-dark) !important; -} - -/* opengisch logo */ - -body:after { - content: url(./logo_white.png); - position: fixed; - bottom: -6em; - right: -6em; - z-index: -1; -} - -/* classes used for multiple columns */ - -.container { - display: flex; -} - - -.col { - flex: 1; -} - -.reveal h1, -.reveal h2, -.reveal h3, -.reveal h4, -.reveal h5, -.reveal h6 { - text-transform: none; - font-family: "futura-pt", 'Helvetica'; -} - -/* Ensure certain elements are never larger than the slide itself */ -.reveal img, -.reveal video, -.reveal iframe { - max-width: 100%; - max-height: 100%; -} \ No newline at end of file diff --git a/talk-qfield/_assets/slides/stylesheets/qfield-base-white-theme.css b/talk-qfield/_assets/slides/stylesheets/qfield-base-white-theme.css deleted file mode 100644 index d072838..0000000 --- a/talk-qfield/_assets/slides/stylesheets/qfield-base-white-theme.css +++ /dev/null @@ -1,364 +0,0 @@ -/** - * White theme for reveal.js. This is the opposite of the 'black' theme. - * - * By Hakim El Hattab, http://hakim.se - */ -@import url(./fonts/source-sans-pro/source-sans-pro.css); - -section.has-dark-background, -section.has-dark-background h1, -section.has-dark-background h2, -section.has-dark-background h3, -section.has-dark-background h4, -section.has-dark-background h5, -section.has-dark-background h6 { - color: #fff; -} - -/********************************************* - * GLOBAL STYLES - ********************************************/ -:root { - --r-background-color: #fff; - --r-main-font: Source Sans Pro, Helvetica, sans-serif; - --r-main-font-size: 2em; - --r-main-color: #222; - --r-block-margin: 20px; - --r-heading-margin: 0 0 20px 0; - --r-heading-font: Source Sans Pro, Helvetica, sans-serif; - --r-heading-color: #222; - --r-heading-line-height: 1.2; - --r-heading-letter-spacing: normal; - --r-heading-text-transform: uppercase; - --r-heading-text-shadow: none; - --r-heading-font-weight: 600; - --r-heading1-text-shadow: none; - --r-heading1-size: 2.5em; - --r-heading2-size: 1.6em; - --r-heading3-size: 1.3em; - --r-heading4-size: 1em; - --r-code-font: monospace; - --r-link-color: #2a76dd; - --r-link-color-dark: #1a53a1; - --r-link-color-hover: #6ca0e8; - --r-selection-background-color: #98bdef; - --r-selection-color: #fff; -} - -.reveal-viewport { - background: #fff; - background-color: var(--r-background-color); -} - -.reveal { - font-family: var(--r-main-font); - font-size: var(--r-main-font-size); - font-weight: normal; - color: var(--r-main-color); -} - -.reveal ::selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal ::-moz-selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal .slides section, -.reveal .slides section>section { - line-height: 1.3; - font-weight: inherit; -} - -/********************************************* - * HEADERS - *********************************************/ -.reveal h1, -.reveal h2, -.reveal h3, -.reveal h4, -.reveal h5, -.reveal h6 { - 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); - word-wrap: break-word; -} - -.reveal h1 { - font-size: var(--r-heading1-size); -} - -.reveal h2 { - font-size: var(--r-heading2-size); -} - -.reveal h3 { - font-size: var(--r-heading3-size); -} - -.reveal h4 { - font-size: var(--r-heading4-size); -} - -.reveal h1 { - text-shadow: var(--r-heading1-text-shadow); -} - -/********************************************* - * OTHER - *********************************************/ -.reveal p { - margin: var(--r-block-margin) 0; - line-height: 1.3; -} - -/* 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 { - margin-bottom: 0; -} - -/* 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 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 blockquote { - display: block; - position: relative; - width: 70%; - margin: var(--r-block-margin) 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 { - display: block; - position: relative; - width: 90%; - margin: var(--r-block-margin) auto; - text-align: left; - font-size: 0.55em; - font-family: var(--r-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: var(--r-code-font); - text-transform: none; - tab-size: 2; -} - -.reveal pre code { - display: block; - padding: 5px; - overflow: auto; - max-height: 400px; - word-wrap: normal; -} - -.reveal .code-wrapper { - white-space: normal; -} - -.reveal .code-wrapper code { - white-space: pre; -} - -.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; - font-size: smaller; -} - -.reveal sub { - vertical-align: sub; - font-size: smaller; -} - -.reveal small { - display: inline-block; - font-size: 0.6em; - line-height: 1.2em; - vertical-align: top; -} - -.reveal small * { - vertical-align: top; -} - -.reveal img { - margin: var(--r-block-margin) 0; -} - -/********************************************* - * LINKS - *********************************************/ -.reveal a { - color: var(--r-link-color); - text-decoration: none; - transition: color 0.15s ease; -} - -.reveal a:hover { - color: var(--r-link-color-hover); - text-shadow: none; - border: none; -} - -.reveal .roll span:after { - color: #fff; - background: var(--r-link-color-dark); -} - -/********************************************* - * Frame helper - *********************************************/ -.reveal .r-frame { - border: 4px solid var(--r-main-color); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); -} - -.reveal a .r-frame { - transition: all 0.15s linear; -} - -.reveal a:hover .r-frame { - border-color: var(--r-link-color); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); -} - -/********************************************* - * NAVIGATION CONTROLS - *********************************************/ -.reveal .controls { - color: var(--r-link-color); -} - -/********************************************* - * PROGRESS BAR - *********************************************/ -.reveal .progress { - background: rgba(0, 0, 0, 0.2); - color: var(--r-link-color); -} - -/********************************************* - * PRINT BACKGROUND - *********************************************/ -@media print { - .backgrounds { - background-color: var(--r-background-color); - } -} \ No newline at end of file diff --git a/talk-qfield/_assets/slides/stylesheets/qfield-theme.css b/talk-qfield/_assets/slides/stylesheets/qfield-theme.css deleted file mode 100644 index 33ec9ef..0000000 --- a/talk-qfield/_assets/slides/stylesheets/qfield-theme.css +++ /dev/null @@ -1,40 +0,0 @@ -/* qfield-theme.css */ -/* @theme qfield-theme*/ - -@import 'qfield-base-theme.css'; - -:root { - --r-background-color: var(--opengisch-green); - --r-heading1-size: 200px; - --r-heading2-size: 150px; - --r-heading3-size: 100px; - --r-heading4-size: 75px; - --r-heading5-size: 60px; - --r-heading6-size: 25px; -} - - -h1, h2 { - color: var(--opengisch-light) !important; - -webkit-text-stroke: 3px var(--opengisch-green); - text-align: left !important; -} - -h3, h4, h5, h6 { - color: var(--opengisch-light) !important; - /* -webkit-text-stroke: 2px var(--opengisch-green); */ - text-align: left !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} -li { - margin-top: 0.5em !important; -} - diff --git a/talk-qfield/features.html b/talk-qfield/features.html index bb8f52e..1ed3358 100644 --- a/talk-qfield/features.html +++ b/talk-qfield/features.html @@ -11,10 +11,6 @@ - - - -
@@ -285,7 +281,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qfield","css":"slides/stylesheets/logo_white.png,slides/stylesheets/qfield-base-theme.css,slides/stylesheets/qfield-base-white-theme.css,slides/stylesheets/qfield-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qfield"}, queryOptions); diff --git a/talk-qfield/fieldwork.html b/talk-qfield/fieldwork.html index 26e32d4..6f880bf 100644 --- a/talk-qfield/fieldwork.html +++ b/talk-qfield/fieldwork.html @@ -11,10 +11,6 @@ - - - -
@@ -82,7 +78,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qfield","css":"slides/stylesheets/logo_white.png,slides/stylesheets/qfield-base-theme.css,slides/stylesheets/qfield-base-white-theme.css,slides/stylesheets/qfield-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qfield"}, queryOptions); diff --git a/talk-qfield/qfield.html b/talk-qfield/qfield.html index 6c9d357..5002ae5 100644 --- a/talk-qfield/qfield.html +++ b/talk-qfield/qfield.html @@ -11,10 +11,6 @@ - - - -
@@ -369,7 +365,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qfield","css":"slides/stylesheets/logo_white.png,slides/stylesheets/qfield-base-theme.css,slides/stylesheets/qfield-base-white-theme.css,slides/stylesheets/qfield-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qfield"}, queryOptions); diff --git a/talk-qfield/tonga.html b/talk-qfield/tonga.html index 22059b1..ee3696f 100644 --- a/talk-qfield/tonga.html +++ b/talk-qfield/tonga.html @@ -11,10 +11,6 @@ - - - -
@@ -82,7 +78,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qfield","css":"slides/stylesheets/logo_white.png,slides/stylesheets/qfield-base-theme.css,slides/stylesheets/qfield-base-white-theme.css,slides/stylesheets/qfield-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qfield"}, queryOptions); diff --git a/talk-qfieldcloud/_assets/slides/stylesheets/base-theme.css b/talk-qfieldcloud/_assets/slides/stylesheets/base-theme.css deleted file mode 100644 index 78fdfa9..0000000 --- a/talk-qfieldcloud/_assets/slides/stylesheets/base-theme.css +++ /dev/null @@ -1,58 +0,0 @@ -/* base-theme.css */ -/* @theme base-theme */ - -@import "base-white-theme.css"; - -:root { - --opengisch-green: hsl(88, 67%, 48%); - --opengisch-blue: #2880cc; - --opengisch-dark: #313131; - --opengisch-light: #c2c2c2; - - --r-main-font: "futura-pt", Helvetica, Arial, sans-serif; - --r-heading-font: "futura-pt", Helvetica, Arial, sans-serif; -} - -/* assign the r-heading size to h5 because it's not done by current reveal.js theme */ -h5 { - font-size: var(--r-heading5-size); -} - -/* color classes used for texts */ - -.blue { - color: var(--opengisch-blue) !important; -} - -.green { - color: var(--opengisch-green) !important; -} - -.light { - color: var(--opengisch-light) !important; -} - -.dark { - color: var(--opengisch-dark) !important; -} - -/* opengisch logo */ - -body:after { - content: url(./logo_white.png); - position: fixed; - bottom: -6em; - right: -6em; - z-index: -1; -} - -/* classes used for multiple columns */ - -.container { - display: flex; -} - - -.col { - flex: 1; -} \ No newline at end of file diff --git a/talk-qfieldcloud/_assets/slides/stylesheets/base-white-theme.css b/talk-qfieldcloud/_assets/slides/stylesheets/base-white-theme.css deleted file mode 100644 index d072838..0000000 --- a/talk-qfieldcloud/_assets/slides/stylesheets/base-white-theme.css +++ /dev/null @@ -1,364 +0,0 @@ -/** - * White theme for reveal.js. This is the opposite of the 'black' theme. - * - * By Hakim El Hattab, http://hakim.se - */ -@import url(./fonts/source-sans-pro/source-sans-pro.css); - -section.has-dark-background, -section.has-dark-background h1, -section.has-dark-background h2, -section.has-dark-background h3, -section.has-dark-background h4, -section.has-dark-background h5, -section.has-dark-background h6 { - color: #fff; -} - -/********************************************* - * GLOBAL STYLES - ********************************************/ -:root { - --r-background-color: #fff; - --r-main-font: Source Sans Pro, Helvetica, sans-serif; - --r-main-font-size: 2em; - --r-main-color: #222; - --r-block-margin: 20px; - --r-heading-margin: 0 0 20px 0; - --r-heading-font: Source Sans Pro, Helvetica, sans-serif; - --r-heading-color: #222; - --r-heading-line-height: 1.2; - --r-heading-letter-spacing: normal; - --r-heading-text-transform: uppercase; - --r-heading-text-shadow: none; - --r-heading-font-weight: 600; - --r-heading1-text-shadow: none; - --r-heading1-size: 2.5em; - --r-heading2-size: 1.6em; - --r-heading3-size: 1.3em; - --r-heading4-size: 1em; - --r-code-font: monospace; - --r-link-color: #2a76dd; - --r-link-color-dark: #1a53a1; - --r-link-color-hover: #6ca0e8; - --r-selection-background-color: #98bdef; - --r-selection-color: #fff; -} - -.reveal-viewport { - background: #fff; - background-color: var(--r-background-color); -} - -.reveal { - font-family: var(--r-main-font); - font-size: var(--r-main-font-size); - font-weight: normal; - color: var(--r-main-color); -} - -.reveal ::selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal ::-moz-selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal .slides section, -.reveal .slides section>section { - line-height: 1.3; - font-weight: inherit; -} - -/********************************************* - * HEADERS - *********************************************/ -.reveal h1, -.reveal h2, -.reveal h3, -.reveal h4, -.reveal h5, -.reveal h6 { - 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); - word-wrap: break-word; -} - -.reveal h1 { - font-size: var(--r-heading1-size); -} - -.reveal h2 { - font-size: var(--r-heading2-size); -} - -.reveal h3 { - font-size: var(--r-heading3-size); -} - -.reveal h4 { - font-size: var(--r-heading4-size); -} - -.reveal h1 { - text-shadow: var(--r-heading1-text-shadow); -} - -/********************************************* - * OTHER - *********************************************/ -.reveal p { - margin: var(--r-block-margin) 0; - line-height: 1.3; -} - -/* 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 { - margin-bottom: 0; -} - -/* 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 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 blockquote { - display: block; - position: relative; - width: 70%; - margin: var(--r-block-margin) 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 { - display: block; - position: relative; - width: 90%; - margin: var(--r-block-margin) auto; - text-align: left; - font-size: 0.55em; - font-family: var(--r-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: var(--r-code-font); - text-transform: none; - tab-size: 2; -} - -.reveal pre code { - display: block; - padding: 5px; - overflow: auto; - max-height: 400px; - word-wrap: normal; -} - -.reveal .code-wrapper { - white-space: normal; -} - -.reveal .code-wrapper code { - white-space: pre; -} - -.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; - font-size: smaller; -} - -.reveal sub { - vertical-align: sub; - font-size: smaller; -} - -.reveal small { - display: inline-block; - font-size: 0.6em; - line-height: 1.2em; - vertical-align: top; -} - -.reveal small * { - vertical-align: top; -} - -.reveal img { - margin: var(--r-block-margin) 0; -} - -/********************************************* - * LINKS - *********************************************/ -.reveal a { - color: var(--r-link-color); - text-decoration: none; - transition: color 0.15s ease; -} - -.reveal a:hover { - color: var(--r-link-color-hover); - text-shadow: none; - border: none; -} - -.reveal .roll span:after { - color: #fff; - background: var(--r-link-color-dark); -} - -/********************************************* - * Frame helper - *********************************************/ -.reveal .r-frame { - border: 4px solid var(--r-main-color); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); -} - -.reveal a .r-frame { - transition: all 0.15s linear; -} - -.reveal a:hover .r-frame { - border-color: var(--r-link-color); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); -} - -/********************************************* - * NAVIGATION CONTROLS - *********************************************/ -.reveal .controls { - color: var(--r-link-color); -} - -/********************************************* - * PROGRESS BAR - *********************************************/ -.reveal .progress { - background: rgba(0, 0, 0, 0.2); - color: var(--r-link-color); -} - -/********************************************* - * PRINT BACKGROUND - *********************************************/ -@media print { - .backgrounds { - background-color: var(--r-background-color); - } -} \ No newline at end of file diff --git a/talk-qfieldcloud/_assets/slides/stylesheets/opengisch-bright.css b/talk-qfieldcloud/_assets/slides/stylesheets/opengisch-bright.css deleted file mode 100644 index 90ee124..0000000 --- a/talk-qfieldcloud/_assets/slides/stylesheets/opengisch-bright.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-bright.css */ -/* @theme opengisch-bright*/ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-green); -} \ No newline at end of file diff --git a/talk-qfieldcloud/_assets/slides/stylesheets/opengisch-dark.css b/talk-qfieldcloud/_assets/slides/stylesheets/opengisch-dark.css deleted file mode 100644 index 46d6256..0000000 --- a/talk-qfieldcloud/_assets/slides/stylesheets/opengisch-dark.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-dark.css */ -/* @theme opengisch-dark */ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-black); -} diff --git a/talk-qfieldcloud/_assets/slides/stylesheets/pitch-theme.css b/talk-qfieldcloud/_assets/slides/stylesheets/pitch-theme.css deleted file mode 100644 index 248a68f..0000000 --- a/talk-qfieldcloud/_assets/slides/stylesheets/pitch-theme.css +++ /dev/null @@ -1,26 +0,0 @@ -/* pitch-theme.css */ -/* @theme pitch-theme*/ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-green); - --r-heading1-size: 200px; - --r-heading2-size: 150px; - --r-heading3-size: 100px; - --r-heading4-size: 75px; - --r-heading5-size: 60px; - --r-heading6-size: 25px; -} - - -h1, h2, h3, h4, h5, h6 { - color: var(--opengisch-light) !important; - -webkit-text-stroke: 3px var(--opengisch-blue); - text-align: left !important; -} - -p { - color: var(--opengisch-dark) !important; - text-align: left !important; -} diff --git a/talk-qfieldcloud/_assets/slides/stylesheets/softteaching-theme.css b/talk-qfieldcloud/_assets/slides/stylesheets/softteaching-theme.css deleted file mode 100644 index b6c38d2..0000000 --- a/talk-qfieldcloud/_assets/slides/stylesheets/softteaching-theme.css +++ /dev/null @@ -1,49 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); - --opengisch-softgreen: #b2e07e; -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-softgreen) !important; - text-align: left !important; -} - -h4,h5,h6{ - text-transform: none !important; -} - -code { - color: rgba(255, 255, 255, 0.87) !important; - background-color: rgba(0, 0, 0) !important; - align-self: left !important; -} -pre { - margin: 0 !important; - font-size: 1em !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} -li { - margin-top: 0.5em !important; -} \ No newline at end of file diff --git a/talk-qfieldcloud/_assets/slides/stylesheets/teaching-theme.css b/talk-qfieldcloud/_assets/slides/stylesheets/teaching-theme.css deleted file mode 100644 index 9c32989..0000000 --- a/talk-qfieldcloud/_assets/slides/stylesheets/teaching-theme.css +++ /dev/null @@ -1,32 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-green) !important; - -webkit-text-stroke: 2px var(--opengisch-light); - text-align: left !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} \ No newline at end of file diff --git a/talk-qfieldcloud/qfield-and-qfieldcloud.html b/talk-qfieldcloud/qfield-and-qfieldcloud.html index ebc5542..819edec 100644 --- a/talk-qfieldcloud/qfield-and-qfieldcloud.html +++ b/talk-qfieldcloud/qfield-and-qfieldcloud.html @@ -11,13 +11,6 @@ - - - - - - -
@@ -184,7 +177,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qfieldcloud","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css,slides/stylesheets/teaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qfieldcloud"}, queryOptions); diff --git a/talk-qgis-modeler/_assets/slides/stylesheets/base-theme.css b/talk-qgis-modeler/_assets/slides/stylesheets/base-theme.css deleted file mode 100644 index f7f9f3a..0000000 --- a/talk-qgis-modeler/_assets/slides/stylesheets/base-theme.css +++ /dev/null @@ -1,58 +0,0 @@ -/* base-theme.css */ -/* @theme base-theme */ - -@import "base-white-theme.css"; - -:root { - --opengisch-green: hsl(88, 67%, 48%); - --opengisch-blue: #2880cc; - --opengisch-dark: #313131; - --opengisch-light: #c2c2c2; - - --r-main-font: "futura-pt", Helvetica, Arial, sans-serif; - --r-heading-font: "futura-pt", Helvetica, Arial, sans-serif; -} - -/* assign the r-heading size to h5 because it's not done by current reveal.js theme */ -h5 { - font-size: var(--r-heading5-size); -} - -/* color classes used for texts */ - -.blue { - color: var(--opengisch-blue) !important; -} - -.green { - color: var(--opengisch-green) !important; -} - -.light { - color: var(--opengisch-light) !important; -} - -.dark { - color: var(--opengisch-dark) !important; -} - -/* opengisch logo */ - -body:after { - content: url(./logo_white.png); - position: fixed; - bottom: -6em; - right: -6em; - z-index: -1; -} - -/* classes used for multiple columns */ - -.container { - display: flex; -} - - -.col { - flex: 1; -} \ No newline at end of file diff --git a/talk-qgis-modeler/_assets/slides/stylesheets/base-white-theme.css b/talk-qgis-modeler/_assets/slides/stylesheets/base-white-theme.css deleted file mode 100644 index d072838..0000000 --- a/talk-qgis-modeler/_assets/slides/stylesheets/base-white-theme.css +++ /dev/null @@ -1,364 +0,0 @@ -/** - * White theme for reveal.js. This is the opposite of the 'black' theme. - * - * By Hakim El Hattab, http://hakim.se - */ -@import url(./fonts/source-sans-pro/source-sans-pro.css); - -section.has-dark-background, -section.has-dark-background h1, -section.has-dark-background h2, -section.has-dark-background h3, -section.has-dark-background h4, -section.has-dark-background h5, -section.has-dark-background h6 { - color: #fff; -} - -/********************************************* - * GLOBAL STYLES - ********************************************/ -:root { - --r-background-color: #fff; - --r-main-font: Source Sans Pro, Helvetica, sans-serif; - --r-main-font-size: 2em; - --r-main-color: #222; - --r-block-margin: 20px; - --r-heading-margin: 0 0 20px 0; - --r-heading-font: Source Sans Pro, Helvetica, sans-serif; - --r-heading-color: #222; - --r-heading-line-height: 1.2; - --r-heading-letter-spacing: normal; - --r-heading-text-transform: uppercase; - --r-heading-text-shadow: none; - --r-heading-font-weight: 600; - --r-heading1-text-shadow: none; - --r-heading1-size: 2.5em; - --r-heading2-size: 1.6em; - --r-heading3-size: 1.3em; - --r-heading4-size: 1em; - --r-code-font: monospace; - --r-link-color: #2a76dd; - --r-link-color-dark: #1a53a1; - --r-link-color-hover: #6ca0e8; - --r-selection-background-color: #98bdef; - --r-selection-color: #fff; -} - -.reveal-viewport { - background: #fff; - background-color: var(--r-background-color); -} - -.reveal { - font-family: var(--r-main-font); - font-size: var(--r-main-font-size); - font-weight: normal; - color: var(--r-main-color); -} - -.reveal ::selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal ::-moz-selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal .slides section, -.reveal .slides section>section { - line-height: 1.3; - font-weight: inherit; -} - -/********************************************* - * HEADERS - *********************************************/ -.reveal h1, -.reveal h2, -.reveal h3, -.reveal h4, -.reveal h5, -.reveal h6 { - 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); - word-wrap: break-word; -} - -.reveal h1 { - font-size: var(--r-heading1-size); -} - -.reveal h2 { - font-size: var(--r-heading2-size); -} - -.reveal h3 { - font-size: var(--r-heading3-size); -} - -.reveal h4 { - font-size: var(--r-heading4-size); -} - -.reveal h1 { - text-shadow: var(--r-heading1-text-shadow); -} - -/********************************************* - * OTHER - *********************************************/ -.reveal p { - margin: var(--r-block-margin) 0; - line-height: 1.3; -} - -/* 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 { - margin-bottom: 0; -} - -/* 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 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 blockquote { - display: block; - position: relative; - width: 70%; - margin: var(--r-block-margin) 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 { - display: block; - position: relative; - width: 90%; - margin: var(--r-block-margin) auto; - text-align: left; - font-size: 0.55em; - font-family: var(--r-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: var(--r-code-font); - text-transform: none; - tab-size: 2; -} - -.reveal pre code { - display: block; - padding: 5px; - overflow: auto; - max-height: 400px; - word-wrap: normal; -} - -.reveal .code-wrapper { - white-space: normal; -} - -.reveal .code-wrapper code { - white-space: pre; -} - -.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; - font-size: smaller; -} - -.reveal sub { - vertical-align: sub; - font-size: smaller; -} - -.reveal small { - display: inline-block; - font-size: 0.6em; - line-height: 1.2em; - vertical-align: top; -} - -.reveal small * { - vertical-align: top; -} - -.reveal img { - margin: var(--r-block-margin) 0; -} - -/********************************************* - * LINKS - *********************************************/ -.reveal a { - color: var(--r-link-color); - text-decoration: none; - transition: color 0.15s ease; -} - -.reveal a:hover { - color: var(--r-link-color-hover); - text-shadow: none; - border: none; -} - -.reveal .roll span:after { - color: #fff; - background: var(--r-link-color-dark); -} - -/********************************************* - * Frame helper - *********************************************/ -.reveal .r-frame { - border: 4px solid var(--r-main-color); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); -} - -.reveal a .r-frame { - transition: all 0.15s linear; -} - -.reveal a:hover .r-frame { - border-color: var(--r-link-color); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); -} - -/********************************************* - * NAVIGATION CONTROLS - *********************************************/ -.reveal .controls { - color: var(--r-link-color); -} - -/********************************************* - * PROGRESS BAR - *********************************************/ -.reveal .progress { - background: rgba(0, 0, 0, 0.2); - color: var(--r-link-color); -} - -/********************************************* - * PRINT BACKGROUND - *********************************************/ -@media print { - .backgrounds { - background-color: var(--r-background-color); - } -} \ No newline at end of file diff --git a/talk-qgis-modeler/_assets/slides/stylesheets/logo_white.png b/talk-qgis-modeler/_assets/slides/stylesheets/logo_white.png deleted file mode 100644 index 643002c..0000000 Binary files a/talk-qgis-modeler/_assets/slides/stylesheets/logo_white.png and /dev/null differ diff --git a/talk-qgis-modeler/_assets/slides/stylesheets/opengisch-bright.css b/talk-qgis-modeler/_assets/slides/stylesheets/opengisch-bright.css deleted file mode 100644 index 90ee124..0000000 --- a/talk-qgis-modeler/_assets/slides/stylesheets/opengisch-bright.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-bright.css */ -/* @theme opengisch-bright*/ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-green); -} \ No newline at end of file diff --git a/talk-qgis-modeler/_assets/slides/stylesheets/opengisch-dark.css b/talk-qgis-modeler/_assets/slides/stylesheets/opengisch-dark.css deleted file mode 100644 index 46d6256..0000000 --- a/talk-qgis-modeler/_assets/slides/stylesheets/opengisch-dark.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-dark.css */ -/* @theme opengisch-dark */ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-black); -} diff --git a/talk-qgis-modeler/_assets/slides/stylesheets/pitch-theme.css b/talk-qgis-modeler/_assets/slides/stylesheets/pitch-theme.css deleted file mode 100644 index 248a68f..0000000 --- a/talk-qgis-modeler/_assets/slides/stylesheets/pitch-theme.css +++ /dev/null @@ -1,26 +0,0 @@ -/* pitch-theme.css */ -/* @theme pitch-theme*/ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-green); - --r-heading1-size: 200px; - --r-heading2-size: 150px; - --r-heading3-size: 100px; - --r-heading4-size: 75px; - --r-heading5-size: 60px; - --r-heading6-size: 25px; -} - - -h1, h2, h3, h4, h5, h6 { - color: var(--opengisch-light) !important; - -webkit-text-stroke: 3px var(--opengisch-blue); - text-align: left !important; -} - -p { - color: var(--opengisch-dark) !important; - text-align: left !important; -} diff --git a/talk-qgis-modeler/_assets/slides/stylesheets/softteaching-theme.css b/talk-qgis-modeler/_assets/slides/stylesheets/softteaching-theme.css deleted file mode 100644 index b6c38d2..0000000 --- a/talk-qgis-modeler/_assets/slides/stylesheets/softteaching-theme.css +++ /dev/null @@ -1,49 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); - --opengisch-softgreen: #b2e07e; -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-softgreen) !important; - text-align: left !important; -} - -h4,h5,h6{ - text-transform: none !important; -} - -code { - color: rgba(255, 255, 255, 0.87) !important; - background-color: rgba(0, 0, 0) !important; - align-self: left !important; -} -pre { - margin: 0 !important; - font-size: 1em !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} -li { - margin-top: 0.5em !important; -} \ No newline at end of file diff --git a/talk-qgis-modeler/_assets/slides/stylesheets/teaching-theme.css b/talk-qgis-modeler/_assets/slides/stylesheets/teaching-theme.css deleted file mode 100644 index 9c32989..0000000 --- a/talk-qgis-modeler/_assets/slides/stylesheets/teaching-theme.css +++ /dev/null @@ -1,32 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-green) !important; - -webkit-text-stroke: 2px var(--opengisch-light); - text-align: left !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} \ No newline at end of file diff --git a/talk-qgis-modeler/presentation_modeleur.html b/talk-qgis-modeler/presentation_modeleur.html index c89a295..cdf3b8d 100644 --- a/talk-qgis-modeler/presentation_modeleur.html +++ b/talk-qgis-modeler/presentation_modeleur.html @@ -11,14 +11,6 @@ - - - - - - - -
@@ -334,7 +326,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qgis Modeler","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/logo_white.png,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css,slides/stylesheets/teaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qgis Modeler"}, queryOptions); diff --git a/talk-qgis-modeler/presentation_qgis_modeler.html b/talk-qgis-modeler/presentation_qgis_modeler.html index 90d908d..2f7204c 100644 --- a/talk-qgis-modeler/presentation_qgis_modeler.html +++ b/talk-qgis-modeler/presentation_qgis_modeler.html @@ -11,14 +11,6 @@ - - - - - - - -
@@ -467,7 +459,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qgis Modeler","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/logo_white.png,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css,slides/stylesheets/teaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qgis Modeler"}, queryOptions); diff --git a/teaching-qgis-advanced/_assets/slides/stylesheets/base-theme.css b/teaching-qgis-advanced/_assets/slides/stylesheets/base-theme.css deleted file mode 100644 index f7f9f3a..0000000 --- a/teaching-qgis-advanced/_assets/slides/stylesheets/base-theme.css +++ /dev/null @@ -1,58 +0,0 @@ -/* base-theme.css */ -/* @theme base-theme */ - -@import "base-white-theme.css"; - -:root { - --opengisch-green: hsl(88, 67%, 48%); - --opengisch-blue: #2880cc; - --opengisch-dark: #313131; - --opengisch-light: #c2c2c2; - - --r-main-font: "futura-pt", Helvetica, Arial, sans-serif; - --r-heading-font: "futura-pt", Helvetica, Arial, sans-serif; -} - -/* assign the r-heading size to h5 because it's not done by current reveal.js theme */ -h5 { - font-size: var(--r-heading5-size); -} - -/* color classes used for texts */ - -.blue { - color: var(--opengisch-blue) !important; -} - -.green { - color: var(--opengisch-green) !important; -} - -.light { - color: var(--opengisch-light) !important; -} - -.dark { - color: var(--opengisch-dark) !important; -} - -/* opengisch logo */ - -body:after { - content: url(./logo_white.png); - position: fixed; - bottom: -6em; - right: -6em; - z-index: -1; -} - -/* classes used for multiple columns */ - -.container { - display: flex; -} - - -.col { - flex: 1; -} \ No newline at end of file diff --git a/teaching-qgis-advanced/_assets/slides/stylesheets/base-white-theme.css b/teaching-qgis-advanced/_assets/slides/stylesheets/base-white-theme.css deleted file mode 100644 index d072838..0000000 --- a/teaching-qgis-advanced/_assets/slides/stylesheets/base-white-theme.css +++ /dev/null @@ -1,364 +0,0 @@ -/** - * White theme for reveal.js. This is the opposite of the 'black' theme. - * - * By Hakim El Hattab, http://hakim.se - */ -@import url(./fonts/source-sans-pro/source-sans-pro.css); - -section.has-dark-background, -section.has-dark-background h1, -section.has-dark-background h2, -section.has-dark-background h3, -section.has-dark-background h4, -section.has-dark-background h5, -section.has-dark-background h6 { - color: #fff; -} - -/********************************************* - * GLOBAL STYLES - ********************************************/ -:root { - --r-background-color: #fff; - --r-main-font: Source Sans Pro, Helvetica, sans-serif; - --r-main-font-size: 2em; - --r-main-color: #222; - --r-block-margin: 20px; - --r-heading-margin: 0 0 20px 0; - --r-heading-font: Source Sans Pro, Helvetica, sans-serif; - --r-heading-color: #222; - --r-heading-line-height: 1.2; - --r-heading-letter-spacing: normal; - --r-heading-text-transform: uppercase; - --r-heading-text-shadow: none; - --r-heading-font-weight: 600; - --r-heading1-text-shadow: none; - --r-heading1-size: 2.5em; - --r-heading2-size: 1.6em; - --r-heading3-size: 1.3em; - --r-heading4-size: 1em; - --r-code-font: monospace; - --r-link-color: #2a76dd; - --r-link-color-dark: #1a53a1; - --r-link-color-hover: #6ca0e8; - --r-selection-background-color: #98bdef; - --r-selection-color: #fff; -} - -.reveal-viewport { - background: #fff; - background-color: var(--r-background-color); -} - -.reveal { - font-family: var(--r-main-font); - font-size: var(--r-main-font-size); - font-weight: normal; - color: var(--r-main-color); -} - -.reveal ::selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal ::-moz-selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal .slides section, -.reveal .slides section>section { - line-height: 1.3; - font-weight: inherit; -} - -/********************************************* - * HEADERS - *********************************************/ -.reveal h1, -.reveal h2, -.reveal h3, -.reveal h4, -.reveal h5, -.reveal h6 { - 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); - word-wrap: break-word; -} - -.reveal h1 { - font-size: var(--r-heading1-size); -} - -.reveal h2 { - font-size: var(--r-heading2-size); -} - -.reveal h3 { - font-size: var(--r-heading3-size); -} - -.reveal h4 { - font-size: var(--r-heading4-size); -} - -.reveal h1 { - text-shadow: var(--r-heading1-text-shadow); -} - -/********************************************* - * OTHER - *********************************************/ -.reveal p { - margin: var(--r-block-margin) 0; - line-height: 1.3; -} - -/* 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 { - margin-bottom: 0; -} - -/* 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 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 blockquote { - display: block; - position: relative; - width: 70%; - margin: var(--r-block-margin) 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 { - display: block; - position: relative; - width: 90%; - margin: var(--r-block-margin) auto; - text-align: left; - font-size: 0.55em; - font-family: var(--r-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: var(--r-code-font); - text-transform: none; - tab-size: 2; -} - -.reveal pre code { - display: block; - padding: 5px; - overflow: auto; - max-height: 400px; - word-wrap: normal; -} - -.reveal .code-wrapper { - white-space: normal; -} - -.reveal .code-wrapper code { - white-space: pre; -} - -.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; - font-size: smaller; -} - -.reveal sub { - vertical-align: sub; - font-size: smaller; -} - -.reveal small { - display: inline-block; - font-size: 0.6em; - line-height: 1.2em; - vertical-align: top; -} - -.reveal small * { - vertical-align: top; -} - -.reveal img { - margin: var(--r-block-margin) 0; -} - -/********************************************* - * LINKS - *********************************************/ -.reveal a { - color: var(--r-link-color); - text-decoration: none; - transition: color 0.15s ease; -} - -.reveal a:hover { - color: var(--r-link-color-hover); - text-shadow: none; - border: none; -} - -.reveal .roll span:after { - color: #fff; - background: var(--r-link-color-dark); -} - -/********************************************* - * Frame helper - *********************************************/ -.reveal .r-frame { - border: 4px solid var(--r-main-color); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); -} - -.reveal a .r-frame { - transition: all 0.15s linear; -} - -.reveal a:hover .r-frame { - border-color: var(--r-link-color); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); -} - -/********************************************* - * NAVIGATION CONTROLS - *********************************************/ -.reveal .controls { - color: var(--r-link-color); -} - -/********************************************* - * PROGRESS BAR - *********************************************/ -.reveal .progress { - background: rgba(0, 0, 0, 0.2); - color: var(--r-link-color); -} - -/********************************************* - * PRINT BACKGROUND - *********************************************/ -@media print { - .backgrounds { - background-color: var(--r-background-color); - } -} \ No newline at end of file diff --git a/teaching-qgis-advanced/_assets/slides/stylesheets/logo_white.png b/teaching-qgis-advanced/_assets/slides/stylesheets/logo_white.png deleted file mode 100644 index 643002c..0000000 Binary files a/teaching-qgis-advanced/_assets/slides/stylesheets/logo_white.png and /dev/null differ diff --git a/teaching-qgis-advanced/_assets/slides/stylesheets/opengisch-bright.css b/teaching-qgis-advanced/_assets/slides/stylesheets/opengisch-bright.css deleted file mode 100644 index 90ee124..0000000 --- a/teaching-qgis-advanced/_assets/slides/stylesheets/opengisch-bright.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-bright.css */ -/* @theme opengisch-bright*/ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-green); -} \ No newline at end of file diff --git a/teaching-qgis-advanced/_assets/slides/stylesheets/opengisch-dark.css b/teaching-qgis-advanced/_assets/slides/stylesheets/opengisch-dark.css deleted file mode 100644 index 46d6256..0000000 --- a/teaching-qgis-advanced/_assets/slides/stylesheets/opengisch-dark.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-dark.css */ -/* @theme opengisch-dark */ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-black); -} diff --git a/teaching-qgis-advanced/_assets/slides/stylesheets/pitch-theme.css b/teaching-qgis-advanced/_assets/slides/stylesheets/pitch-theme.css deleted file mode 100644 index 248a68f..0000000 --- a/teaching-qgis-advanced/_assets/slides/stylesheets/pitch-theme.css +++ /dev/null @@ -1,26 +0,0 @@ -/* pitch-theme.css */ -/* @theme pitch-theme*/ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-green); - --r-heading1-size: 200px; - --r-heading2-size: 150px; - --r-heading3-size: 100px; - --r-heading4-size: 75px; - --r-heading5-size: 60px; - --r-heading6-size: 25px; -} - - -h1, h2, h3, h4, h5, h6 { - color: var(--opengisch-light) !important; - -webkit-text-stroke: 3px var(--opengisch-blue); - text-align: left !important; -} - -p { - color: var(--opengisch-dark) !important; - text-align: left !important; -} diff --git a/teaching-qgis-advanced/_assets/slides/stylesheets/softteaching-theme.css b/teaching-qgis-advanced/_assets/slides/stylesheets/softteaching-theme.css deleted file mode 100644 index b6c38d2..0000000 --- a/teaching-qgis-advanced/_assets/slides/stylesheets/softteaching-theme.css +++ /dev/null @@ -1,49 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); - --opengisch-softgreen: #b2e07e; -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-softgreen) !important; - text-align: left !important; -} - -h4,h5,h6{ - text-transform: none !important; -} - -code { - color: rgba(255, 255, 255, 0.87) !important; - background-color: rgba(0, 0, 0) !important; - align-self: left !important; -} -pre { - margin: 0 !important; - font-size: 1em !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} -li { - margin-top: 0.5em !important; -} \ No newline at end of file diff --git a/teaching-qgis-advanced/_assets/slides/stylesheets/teaching-theme.css b/teaching-qgis-advanced/_assets/slides/stylesheets/teaching-theme.css deleted file mode 100644 index 9c32989..0000000 --- a/teaching-qgis-advanced/_assets/slides/stylesheets/teaching-theme.css +++ /dev/null @@ -1,32 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-green) !important; - -webkit-text-stroke: 2px var(--opengisch-light); - text-align: left !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} \ No newline at end of file diff --git a/teaching-qgis-advanced/qgis-advanced-fr.html b/teaching-qgis-advanced/qgis-advanced-fr.html index ea018fa..8efcbb1 100644 --- a/teaching-qgis-advanced/qgis-advanced-fr.html +++ b/teaching-qgis-advanced/qgis-advanced-fr.html @@ -11,14 +11,6 @@ - - - - - - - -
@@ -190,7 +182,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qgis Advanced","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/logo_white.png,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css,slides/stylesheets/teaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qgis Advanced"}, queryOptions); diff --git a/teaching-qgis-advanced/qgis-advanced-fr_day2.html b/teaching-qgis-advanced/qgis-advanced-fr_day2.html index ae47639..b7a2917 100644 --- a/teaching-qgis-advanced/qgis-advanced-fr_day2.html +++ b/teaching-qgis-advanced/qgis-advanced-fr_day2.html @@ -11,14 +11,6 @@ - - - - - - - -
@@ -95,7 +87,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qgis Advanced","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/logo_white.png,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css,slides/stylesheets/teaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qgis Advanced"}, queryOptions); diff --git a/teaching-qgis-basic/_assets/slides/stylesheets/base-theme.css b/teaching-qgis-basic/_assets/slides/stylesheets/base-theme.css deleted file mode 100644 index f7f9f3a..0000000 --- a/teaching-qgis-basic/_assets/slides/stylesheets/base-theme.css +++ /dev/null @@ -1,58 +0,0 @@ -/* base-theme.css */ -/* @theme base-theme */ - -@import "base-white-theme.css"; - -:root { - --opengisch-green: hsl(88, 67%, 48%); - --opengisch-blue: #2880cc; - --opengisch-dark: #313131; - --opengisch-light: #c2c2c2; - - --r-main-font: "futura-pt", Helvetica, Arial, sans-serif; - --r-heading-font: "futura-pt", Helvetica, Arial, sans-serif; -} - -/* assign the r-heading size to h5 because it's not done by current reveal.js theme */ -h5 { - font-size: var(--r-heading5-size); -} - -/* color classes used for texts */ - -.blue { - color: var(--opengisch-blue) !important; -} - -.green { - color: var(--opengisch-green) !important; -} - -.light { - color: var(--opengisch-light) !important; -} - -.dark { - color: var(--opengisch-dark) !important; -} - -/* opengisch logo */ - -body:after { - content: url(./logo_white.png); - position: fixed; - bottom: -6em; - right: -6em; - z-index: -1; -} - -/* classes used for multiple columns */ - -.container { - display: flex; -} - - -.col { - flex: 1; -} \ No newline at end of file diff --git a/teaching-qgis-basic/_assets/slides/stylesheets/base-white-theme.css b/teaching-qgis-basic/_assets/slides/stylesheets/base-white-theme.css deleted file mode 100644 index d072838..0000000 --- a/teaching-qgis-basic/_assets/slides/stylesheets/base-white-theme.css +++ /dev/null @@ -1,364 +0,0 @@ -/** - * White theme for reveal.js. This is the opposite of the 'black' theme. - * - * By Hakim El Hattab, http://hakim.se - */ -@import url(./fonts/source-sans-pro/source-sans-pro.css); - -section.has-dark-background, -section.has-dark-background h1, -section.has-dark-background h2, -section.has-dark-background h3, -section.has-dark-background h4, -section.has-dark-background h5, -section.has-dark-background h6 { - color: #fff; -} - -/********************************************* - * GLOBAL STYLES - ********************************************/ -:root { - --r-background-color: #fff; - --r-main-font: Source Sans Pro, Helvetica, sans-serif; - --r-main-font-size: 2em; - --r-main-color: #222; - --r-block-margin: 20px; - --r-heading-margin: 0 0 20px 0; - --r-heading-font: Source Sans Pro, Helvetica, sans-serif; - --r-heading-color: #222; - --r-heading-line-height: 1.2; - --r-heading-letter-spacing: normal; - --r-heading-text-transform: uppercase; - --r-heading-text-shadow: none; - --r-heading-font-weight: 600; - --r-heading1-text-shadow: none; - --r-heading1-size: 2.5em; - --r-heading2-size: 1.6em; - --r-heading3-size: 1.3em; - --r-heading4-size: 1em; - --r-code-font: monospace; - --r-link-color: #2a76dd; - --r-link-color-dark: #1a53a1; - --r-link-color-hover: #6ca0e8; - --r-selection-background-color: #98bdef; - --r-selection-color: #fff; -} - -.reveal-viewport { - background: #fff; - background-color: var(--r-background-color); -} - -.reveal { - font-family: var(--r-main-font); - font-size: var(--r-main-font-size); - font-weight: normal; - color: var(--r-main-color); -} - -.reveal ::selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal ::-moz-selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal .slides section, -.reveal .slides section>section { - line-height: 1.3; - font-weight: inherit; -} - -/********************************************* - * HEADERS - *********************************************/ -.reveal h1, -.reveal h2, -.reveal h3, -.reveal h4, -.reveal h5, -.reveal h6 { - 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); - word-wrap: break-word; -} - -.reveal h1 { - font-size: var(--r-heading1-size); -} - -.reveal h2 { - font-size: var(--r-heading2-size); -} - -.reveal h3 { - font-size: var(--r-heading3-size); -} - -.reveal h4 { - font-size: var(--r-heading4-size); -} - -.reveal h1 { - text-shadow: var(--r-heading1-text-shadow); -} - -/********************************************* - * OTHER - *********************************************/ -.reveal p { - margin: var(--r-block-margin) 0; - line-height: 1.3; -} - -/* 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 { - margin-bottom: 0; -} - -/* 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 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 blockquote { - display: block; - position: relative; - width: 70%; - margin: var(--r-block-margin) 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 { - display: block; - position: relative; - width: 90%; - margin: var(--r-block-margin) auto; - text-align: left; - font-size: 0.55em; - font-family: var(--r-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: var(--r-code-font); - text-transform: none; - tab-size: 2; -} - -.reveal pre code { - display: block; - padding: 5px; - overflow: auto; - max-height: 400px; - word-wrap: normal; -} - -.reveal .code-wrapper { - white-space: normal; -} - -.reveal .code-wrapper code { - white-space: pre; -} - -.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; - font-size: smaller; -} - -.reveal sub { - vertical-align: sub; - font-size: smaller; -} - -.reveal small { - display: inline-block; - font-size: 0.6em; - line-height: 1.2em; - vertical-align: top; -} - -.reveal small * { - vertical-align: top; -} - -.reveal img { - margin: var(--r-block-margin) 0; -} - -/********************************************* - * LINKS - *********************************************/ -.reveal a { - color: var(--r-link-color); - text-decoration: none; - transition: color 0.15s ease; -} - -.reveal a:hover { - color: var(--r-link-color-hover); - text-shadow: none; - border: none; -} - -.reveal .roll span:after { - color: #fff; - background: var(--r-link-color-dark); -} - -/********************************************* - * Frame helper - *********************************************/ -.reveal .r-frame { - border: 4px solid var(--r-main-color); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); -} - -.reveal a .r-frame { - transition: all 0.15s linear; -} - -.reveal a:hover .r-frame { - border-color: var(--r-link-color); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); -} - -/********************************************* - * NAVIGATION CONTROLS - *********************************************/ -.reveal .controls { - color: var(--r-link-color); -} - -/********************************************* - * PROGRESS BAR - *********************************************/ -.reveal .progress { - background: rgba(0, 0, 0, 0.2); - color: var(--r-link-color); -} - -/********************************************* - * PRINT BACKGROUND - *********************************************/ -@media print { - .backgrounds { - background-color: var(--r-background-color); - } -} \ No newline at end of file diff --git a/teaching-qgis-basic/_assets/slides/stylesheets/logo_white.png b/teaching-qgis-basic/_assets/slides/stylesheets/logo_white.png deleted file mode 100644 index d3c082d..0000000 Binary files a/teaching-qgis-basic/_assets/slides/stylesheets/logo_white.png and /dev/null differ diff --git a/teaching-qgis-basic/_assets/slides/stylesheets/opengisch-bright.css b/teaching-qgis-basic/_assets/slides/stylesheets/opengisch-bright.css deleted file mode 100644 index 90ee124..0000000 --- a/teaching-qgis-basic/_assets/slides/stylesheets/opengisch-bright.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-bright.css */ -/* @theme opengisch-bright*/ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-green); -} \ No newline at end of file diff --git a/teaching-qgis-basic/_assets/slides/stylesheets/opengisch-dark.css b/teaching-qgis-basic/_assets/slides/stylesheets/opengisch-dark.css deleted file mode 100644 index 46d6256..0000000 --- a/teaching-qgis-basic/_assets/slides/stylesheets/opengisch-dark.css +++ /dev/null @@ -1,9 +0,0 @@ -/* opengisch-dark.css */ -/* @theme opengisch-dark */ - -@import 'base-theme.css'; - -section { - /* Override default background */ - background: var(--opengisch-black); -} diff --git a/teaching-qgis-basic/_assets/slides/stylesheets/pitch-theme.css b/teaching-qgis-basic/_assets/slides/stylesheets/pitch-theme.css deleted file mode 100644 index 248a68f..0000000 --- a/teaching-qgis-basic/_assets/slides/stylesheets/pitch-theme.css +++ /dev/null @@ -1,26 +0,0 @@ -/* pitch-theme.css */ -/* @theme pitch-theme*/ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-green); - --r-heading1-size: 200px; - --r-heading2-size: 150px; - --r-heading3-size: 100px; - --r-heading4-size: 75px; - --r-heading5-size: 60px; - --r-heading6-size: 25px; -} - - -h1, h2, h3, h4, h5, h6 { - color: var(--opengisch-light) !important; - -webkit-text-stroke: 3px var(--opengisch-blue); - text-align: left !important; -} - -p { - color: var(--opengisch-dark) !important; - text-align: left !important; -} diff --git a/teaching-qgis-basic/_assets/slides/stylesheets/softteaching-theme.css b/teaching-qgis-basic/_assets/slides/stylesheets/softteaching-theme.css deleted file mode 100644 index b6c38d2..0000000 --- a/teaching-qgis-basic/_assets/slides/stylesheets/softteaching-theme.css +++ /dev/null @@ -1,49 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); - --opengisch-softgreen: #b2e07e; -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-softgreen) !important; - text-align: left !important; -} - -h4,h5,h6{ - text-transform: none !important; -} - -code { - color: rgba(255, 255, 255, 0.87) !important; - background-color: rgba(0, 0, 0) !important; - align-self: left !important; -} -pre { - margin: 0 !important; - font-size: 1em !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} -li { - margin-top: 0.5em !important; -} \ No newline at end of file diff --git a/teaching-qgis-basic/_assets/slides/stylesheets/teaching-theme.css b/teaching-qgis-basic/_assets/slides/stylesheets/teaching-theme.css deleted file mode 100644 index 9c32989..0000000 --- a/teaching-qgis-basic/_assets/slides/stylesheets/teaching-theme.css +++ /dev/null @@ -1,32 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-green) !important; - -webkit-text-stroke: 2px var(--opengisch-light); - text-align: left !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} \ No newline at end of file diff --git a/teaching-qgis-basic/qgis-basic-de.html b/teaching-qgis-basic/qgis-basic-de.html index 688c1d6..c0f4398 100644 --- a/teaching-qgis-basic/qgis-basic-de.html +++ b/teaching-qgis-basic/qgis-basic-de.html @@ -11,14 +11,6 @@ - - - - - - - -
@@ -309,7 +301,7 @@

opengis.ch/blog

// options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qgis Basic","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/logo_white.png,slides/stylesheets/opengisch-bright.css,slides/stylesheets/opengisch-dark.css,slides/stylesheets/pitch-theme.css,slides/stylesheets/softteaching-theme.css,slides/stylesheets/teaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qgis Basic"}, queryOptions); diff --git a/teaching-qgis-model-designer/_assets/slides/stylesheets/base-theme.css b/teaching-qgis-model-designer/_assets/slides/stylesheets/base-theme.css deleted file mode 100644 index 78fdfa9..0000000 --- a/teaching-qgis-model-designer/_assets/slides/stylesheets/base-theme.css +++ /dev/null @@ -1,58 +0,0 @@ -/* base-theme.css */ -/* @theme base-theme */ - -@import "base-white-theme.css"; - -:root { - --opengisch-green: hsl(88, 67%, 48%); - --opengisch-blue: #2880cc; - --opengisch-dark: #313131; - --opengisch-light: #c2c2c2; - - --r-main-font: "futura-pt", Helvetica, Arial, sans-serif; - --r-heading-font: "futura-pt", Helvetica, Arial, sans-serif; -} - -/* assign the r-heading size to h5 because it's not done by current reveal.js theme */ -h5 { - font-size: var(--r-heading5-size); -} - -/* color classes used for texts */ - -.blue { - color: var(--opengisch-blue) !important; -} - -.green { - color: var(--opengisch-green) !important; -} - -.light { - color: var(--opengisch-light) !important; -} - -.dark { - color: var(--opengisch-dark) !important; -} - -/* opengisch logo */ - -body:after { - content: url(./logo_white.png); - position: fixed; - bottom: -6em; - right: -6em; - z-index: -1; -} - -/* classes used for multiple columns */ - -.container { - display: flex; -} - - -.col { - flex: 1; -} \ No newline at end of file diff --git a/teaching-qgis-model-designer/_assets/slides/stylesheets/base-white-theme.css b/teaching-qgis-model-designer/_assets/slides/stylesheets/base-white-theme.css deleted file mode 100644 index d072838..0000000 --- a/teaching-qgis-model-designer/_assets/slides/stylesheets/base-white-theme.css +++ /dev/null @@ -1,364 +0,0 @@ -/** - * White theme for reveal.js. This is the opposite of the 'black' theme. - * - * By Hakim El Hattab, http://hakim.se - */ -@import url(./fonts/source-sans-pro/source-sans-pro.css); - -section.has-dark-background, -section.has-dark-background h1, -section.has-dark-background h2, -section.has-dark-background h3, -section.has-dark-background h4, -section.has-dark-background h5, -section.has-dark-background h6 { - color: #fff; -} - -/********************************************* - * GLOBAL STYLES - ********************************************/ -:root { - --r-background-color: #fff; - --r-main-font: Source Sans Pro, Helvetica, sans-serif; - --r-main-font-size: 2em; - --r-main-color: #222; - --r-block-margin: 20px; - --r-heading-margin: 0 0 20px 0; - --r-heading-font: Source Sans Pro, Helvetica, sans-serif; - --r-heading-color: #222; - --r-heading-line-height: 1.2; - --r-heading-letter-spacing: normal; - --r-heading-text-transform: uppercase; - --r-heading-text-shadow: none; - --r-heading-font-weight: 600; - --r-heading1-text-shadow: none; - --r-heading1-size: 2.5em; - --r-heading2-size: 1.6em; - --r-heading3-size: 1.3em; - --r-heading4-size: 1em; - --r-code-font: monospace; - --r-link-color: #2a76dd; - --r-link-color-dark: #1a53a1; - --r-link-color-hover: #6ca0e8; - --r-selection-background-color: #98bdef; - --r-selection-color: #fff; -} - -.reveal-viewport { - background: #fff; - background-color: var(--r-background-color); -} - -.reveal { - font-family: var(--r-main-font); - font-size: var(--r-main-font-size); - font-weight: normal; - color: var(--r-main-color); -} - -.reveal ::selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal ::-moz-selection { - color: var(--r-selection-color); - background: var(--r-selection-background-color); - text-shadow: none; -} - -.reveal .slides section, -.reveal .slides section>section { - line-height: 1.3; - font-weight: inherit; -} - -/********************************************* - * HEADERS - *********************************************/ -.reveal h1, -.reveal h2, -.reveal h3, -.reveal h4, -.reveal h5, -.reveal h6 { - 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); - word-wrap: break-word; -} - -.reveal h1 { - font-size: var(--r-heading1-size); -} - -.reveal h2 { - font-size: var(--r-heading2-size); -} - -.reveal h3 { - font-size: var(--r-heading3-size); -} - -.reveal h4 { - font-size: var(--r-heading4-size); -} - -.reveal h1 { - text-shadow: var(--r-heading1-text-shadow); -} - -/********************************************* - * OTHER - *********************************************/ -.reveal p { - margin: var(--r-block-margin) 0; - line-height: 1.3; -} - -/* 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 { - margin-bottom: 0; -} - -/* 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 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 blockquote { - display: block; - position: relative; - width: 70%; - margin: var(--r-block-margin) 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 { - display: block; - position: relative; - width: 90%; - margin: var(--r-block-margin) auto; - text-align: left; - font-size: 0.55em; - font-family: var(--r-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: var(--r-code-font); - text-transform: none; - tab-size: 2; -} - -.reveal pre code { - display: block; - padding: 5px; - overflow: auto; - max-height: 400px; - word-wrap: normal; -} - -.reveal .code-wrapper { - white-space: normal; -} - -.reveal .code-wrapper code { - white-space: pre; -} - -.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; - font-size: smaller; -} - -.reveal sub { - vertical-align: sub; - font-size: smaller; -} - -.reveal small { - display: inline-block; - font-size: 0.6em; - line-height: 1.2em; - vertical-align: top; -} - -.reveal small * { - vertical-align: top; -} - -.reveal img { - margin: var(--r-block-margin) 0; -} - -/********************************************* - * LINKS - *********************************************/ -.reveal a { - color: var(--r-link-color); - text-decoration: none; - transition: color 0.15s ease; -} - -.reveal a:hover { - color: var(--r-link-color-hover); - text-shadow: none; - border: none; -} - -.reveal .roll span:after { - color: #fff; - background: var(--r-link-color-dark); -} - -/********************************************* - * Frame helper - *********************************************/ -.reveal .r-frame { - border: 4px solid var(--r-main-color); - box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); -} - -.reveal a .r-frame { - transition: all 0.15s linear; -} - -.reveal a:hover .r-frame { - border-color: var(--r-link-color); - box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); -} - -/********************************************* - * NAVIGATION CONTROLS - *********************************************/ -.reveal .controls { - color: var(--r-link-color); -} - -/********************************************* - * PROGRESS BAR - *********************************************/ -.reveal .progress { - background: rgba(0, 0, 0, 0.2); - color: var(--r-link-color); -} - -/********************************************* - * PRINT BACKGROUND - *********************************************/ -@media print { - .backgrounds { - background-color: var(--r-background-color); - } -} \ No newline at end of file diff --git a/teaching-qgis-model-designer/_assets/slides/stylesheets/softteaching-theme.css b/teaching-qgis-model-designer/_assets/slides/stylesheets/softteaching-theme.css deleted file mode 100644 index af1011e..0000000 --- a/teaching-qgis-model-designer/_assets/slides/stylesheets/softteaching-theme.css +++ /dev/null @@ -1,47 +0,0 @@ -/* teaching-theme.css */ - -@import 'base-theme.css'; - -:root { - --r-background-color: var(--opengisch-dark); - --opengisch-softgreen: #b2e07e; -} - -/* Slide-specific vertical centering override */ -.reveal .slides section[data-vertical-align-top] { - top: 0 !important; -} - -h1, -h2, -h3, -h4, -h5, -h6 { - color: var(--opengisch-softgreen) !important; - text-align: left !important; -} - -h4,h5,h6{ - text-transform: none !important; -} - -code { - color: rgba(255, 255, 255, 0.87) !important; - font-size: 1.7em !important; - line-height: 1.2em !important; - background-color: rgba(0, 0, 0, 0.726) !important; - align-self: left !important; -} - -p, -ul, -tr, -td, -div { - color: var(--opengisch-light) !important; - text-align: left !important; -} -li { - margin-top: 0.5em !important; -} \ No newline at end of file diff --git a/teaching-qgis-model-designer/corso.html b/teaching-qgis-model-designer/corso.html index ed6a083..ef1ca35 100644 --- a/teaching-qgis-model-designer/corso.html +++ b/teaching-qgis-model-designer/corso.html @@ -11,9 +11,6 @@ - - -
@@ -244,7 +241,7 @@ // options from URL query string var queryOptions = Reveal().getQueryHash() || {}; - var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qgis Model Designer","css":"slides/stylesheets/base-theme.css,slides/stylesheets/base-white-theme.css,slides/stylesheets/softteaching-theme.css"}, queryOptions); + var options = extend(defaultOptions, {"transition":"none","slideNumber":false,"overview":true,"autoPlayMedia":true,"_":["slides/"],"static":"web","listing-template":"../globals/index/index.html","listingTemplate":"../globals/index/index.html","title":"Qgis Model Designer"}, queryOptions);