-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
opengisch
committed
Sep 10, 2024
1 parent
bfa7729
commit 526f880
Showing
89 changed files
with
9,726 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
86 changes: 86 additions & 0 deletions
86
teaching-qfield-miniworkshop/_assets/stylesheets/qfield-base-theme.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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%; | ||
} |
Oops, something went wrong.