Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
opengisch committed Sep 10, 2024
1 parent bfa7729 commit 526f880
Show file tree
Hide file tree
Showing 89 changed files with 9,726 additions and 0 deletions.
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
<a class="list-group-item list-group-item-action" title="Qfield Presentation" href="&#x2F;talk-qfield-presentation">Qfield Presentation</a>

<a href="#" class="list-group-item disabled list-group-item-action h3 m-0">Teaching</a>
<a class="list-group-item list-group-item-action" title="Qfield Miniworkshop" href="&#x2F;teaching-qfield-miniworkshop">Qfield Miniworkshop</a>
<a class="list-group-item list-group-item-action" title="Qgis Basic Course" href="&#x2F;teaching-qgis-basic-course">Qgis Basic Course</a>

</div>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
/* 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:before {
content: url(./qfield-icon.png);
position: fixed;
top: -6em;
left: -6em;
z-index: -1;
}

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%;
}
Loading

0 comments on commit 526f880

Please sign in to comment.