-
-
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
Apr 2, 2024
1 parent
4e32c95
commit 9102501
Showing
80 changed files
with
9,903 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
58 changes: 58 additions & 0 deletions
58
talk-example-presentation/_assets/slides/stylesheets/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,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; | ||
} |
Oops, something went wrong.