forked from hakimel/reveal.js
-
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
42fb9fd
commit 830312e
Showing
8 changed files
with
800 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
/** | ||
* Camptocamp theme for reveal.js. | ||
*/ | ||
|
||
|
||
// Default mixins and settings ----------------- | ||
@import "../template/mixins"; | ||
@import "../template/settings"; | ||
// --------------------------------------------- | ||
|
||
|
||
// Include theme-specific fonts | ||
@import url(./fonts/inter/inter.css); | ||
|
||
$camptocampOrangeColor: #ff680a; | ||
$camptocampGreyColor: #7a7f82; | ||
|
||
// Override theme settings (see ../template/settings.scss) | ||
$backgroundColor: #ffffff; | ||
|
||
$mainColor: $camptocampGreyColor; | ||
$headingColor: $camptocampOrangeColor; | ||
|
||
$mainFontSize: 42px; | ||
$mainFont: 'Inter', Helvetica, sans-serif; | ||
$headingFont: 'Inter', Helvetica, sans-serif; | ||
$headingTextShadow: none; | ||
$headingLetterSpacing: normal; | ||
$headingTextTransform: uppercase; | ||
$headingFontWeight: 600; | ||
$linkColor: $camptocampOrangeColor; | ||
$linkColorHover: lighten($linkColor, 15%); | ||
$selectionBackgroundColor: lighten($linkColor, 25%); | ||
|
||
$heading1Size: 2.5em; | ||
$heading2Size: 1.6em; | ||
$heading3Size: 1.3em; | ||
$heading4Size: 1.0em; | ||
|
||
.reveal-viewport { | ||
.slide-background.title { | ||
background: #000000; | ||
} | ||
|
||
#logo-title { | ||
content: url(../img/logo-title.svg); | ||
position: fixed; | ||
top: 2%; | ||
left: 2%; | ||
height: 15%; | ||
z-index: 1; | ||
} | ||
|
||
#logo-header-left { | ||
content: url(../img/logo-header-left.svg); | ||
position: fixed; | ||
top: 2%; | ||
left: 2%; | ||
height: 5%; | ||
z-index: 1; | ||
} | ||
|
||
#logo-header-right { | ||
content: url(../img/logo-header-right.svg); | ||
position: fixed; | ||
top: 2%; | ||
right: 2%; | ||
height: 5%; | ||
z-index: 1; | ||
} | ||
|
||
&:not(.title), | ||
&.overview { | ||
#logo-title { | ||
display: none; | ||
} | ||
} | ||
|
||
&.title, | ||
&.overview { | ||
#logo-header-left, | ||
#logo-header-right { | ||
display: none; | ||
} | ||
} | ||
|
||
section.title ul:has(>li>.author) { | ||
text-align: center; | ||
margin: 0; | ||
} | ||
} | ||
|
||
// Theme template ------------------------------ | ||
@import "../template/theme"; | ||
// --------------------------------------------- |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.