Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
opengisch committed May 15, 2024
1 parent 4936d71 commit cc5b9b7
Show file tree
Hide file tree
Showing 108 changed files with 10,109 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@


<a href="#" class="list-group-item disabled list-group-item-action h3 m-0">Talks</a>
<a class="list-group-item list-group-item-action" title="Qgis Modeler" href="&#x2F;talk-qgis-modeler">Qgis Modeler</a>
<a class="list-group-item list-group-item-action" title="Qfc Presentation" href="&#x2F;talk-qfc-presentation">Qfc Presentation</a>
<a class="list-group-item list-group-item-action" title="Interlis Presentation" href="&#x2F;talk-interlis-presentation">Interlis Presentation</a>
<a class="list-group-item list-group-item-action" title="Modelbaker Pitch" href="&#x2F;talk-modelbaker-pitch">Modelbaker Pitch</a>
Expand Down
58 changes: 58 additions & 0 deletions talk-qgis-modeler/_assets/slides/stylesheets/base-theme.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/* 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;
}
Loading

0 comments on commit cc5b9b7

Please sign in to comment.