-
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.
- Loading branch information
1 parent
d207064
commit 88593f4
Showing
169 changed files
with
24,339 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
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,104 @@ | ||
/* Reveal theme modifications (applied to default) for | ||
* Wilke slide theme | ||
*/ | ||
|
||
/*-- scss:defaults --*/ | ||
|
||
// Include theme-specific font | ||
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic); | ||
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed); | ||
@import url(https://fonts.googleapis.com/css?family=Roboto+Mono); | ||
|
||
// fonts | ||
$font-family-sans-serif: 'Lato', Arial, sans-serif; | ||
$font-family-monospace: 'Roboto Mono', 'Lucida Console', Monaco, Consolas, monospace; | ||
$presentation-heading-font: 'Roboto Condensed', 'Arial Narrow OS', Arial, sans-serif; | ||
$presentation-font-size-root: 36px; | ||
$presentation-h1-font-size: 1.45em; | ||
$presentation-h2-font-size: 1.45em; | ||
$presentation-h3-font-size: 1.2em; | ||
$presentation-h4-font-size: 1.2em; | ||
$presentation-heading-font-weight: 400; | ||
$code-block-font-size: 0.66em; /* equivalent to .tiny-font by default */ | ||
|
||
.large-font { font-size: 1.1em; } | ||
.small-font { font-size: 0.86em; } | ||
.tiny-font { font-size: 0.66em; } | ||
.xtiny-font { font-size: 0.50em; } | ||
|
||
.reveal h1 { | ||
color: red; | ||
text-align: center; | ||
margin: 0 !important; | ||
} | ||
|
||
/* Make inline code slightly smaller; prevents vertical jumps | ||
from slides with to slides without inline code. | ||
Inline code is not a child of <pre>, hence the not selector. | ||
*/ | ||
|
||
.reveal code:not(pre > code) { | ||
font-size: 0.94em; line-height: 1.0; | ||
} | ||
|
||
/* Style to highlight text */ | ||
.highlight { font-weight: bold; color: #91322F; } | ||
|
||
.center-text { | ||
text-align: center; | ||
} | ||
|
||
/* classes to manipulate vertical spacing */ | ||
.move-up-half-em { | ||
margin-top: -0.5em; | ||
} | ||
|
||
.move-up-1em { | ||
margin-top: -1em; | ||
} | ||
|
||
.move-up-2em { | ||
margin-top: -2em; | ||
} | ||
|
||
.move-up-3em { | ||
margin-top: -3em; | ||
} | ||
|
||
.move-up-4em { | ||
margin-top: -4em; | ||
} | ||
|
||
.move-up-5em { | ||
margin-top: -5em; | ||
} | ||
|
||
.move-up-6em { | ||
margin-top: -6em; | ||
} | ||
|
||
.move-down-1em { | ||
margin-top: 1em; | ||
} | ||
|
||
.move-down-2em { | ||
margin-top: 2em; | ||
} | ||
|
||
.move-down-3em { | ||
margin-top: 3em; | ||
} | ||
|
||
.absolute-bottom-left { | ||
position: absolute; | ||
bottom: 0; | ||
left: 0; | ||
} | ||
|
||
.absolute-bottom-right { | ||
position: absolute; | ||
bottom: 0; | ||
right: 0; | ||
} | ||
|
Oops, something went wrong.