teardown-2019/css/theme
Sean Cross a9e9643143 add opening graphic
Signed-off-by: Sean Cross <sean@xobs.io>
2019-06-21 09:53:37 -07:00
..
source initial commit 2019-06-16 08:39:06 -07:00
template initial commit 2019-06-16 08:39:06 -07:00
README.md initial commit 2019-06-16 08:39:06 -07:00
beige.css initial commit 2019-06-16 08:39:06 -07:00
black.css initial commit 2019-06-16 08:39:06 -07:00
blood.css initial commit 2019-06-16 08:39:06 -07:00
lca2019-logo.afdesign initial commit 2019-06-16 08:39:06 -07:00
lca2019-logo.png initial commit 2019-06-16 08:39:06 -07:00
lca2019-logo.svg initial commit 2019-06-16 08:39:06 -07:00
lca2019-title-bg-transparent.svg initial commit 2019-06-16 08:39:06 -07:00
lca2019-title-bg.afdesign initial commit 2019-06-16 08:39:06 -07:00
lca2019-title-bg.png initial commit 2019-06-16 08:39:06 -07:00
lca2019-title-bg.svg initial commit 2019-06-16 08:39:06 -07:00
lca2019.css initial commit 2019-06-16 08:39:06 -07:00
league.css initial commit 2019-06-16 08:39:06 -07:00
moon.css initial commit 2019-06-16 08:39:06 -07:00
night.css initial commit 2019-06-16 08:39:06 -07:00
serif.css initial commit 2019-06-16 08:39:06 -07:00
simple.css initial commit 2019-06-16 08:39:06 -07:00
sky.css initial commit 2019-06-16 08:39:06 -07:00
solarized.css initial commit 2019-06-16 08:39:06 -07:00
teardown-bg-transparent.afdesign add opening graphic 2019-06-21 09:53:37 -07:00
teardown19.css nearly feature-complete 2019-06-20 11:24:00 -07:00
teardown2019-logo.afdesign add opening graphic 2019-06-21 09:53:37 -07:00
teardown2019-logo.svg nearly feature-complete 2019-06-20 11:24:00 -07:00
teardown2019-title-bg-transparent.svg nearly feature-complete 2019-06-20 11:24:00 -07:00
white.css initial commit 2019-06-16 08:39:06 -07:00

README.md

Dependencies

Themes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceeding: https://github.com/hakimel/reveal.js#full-setup

Creating a Theme

To create your own theme, start by duplicating a .scss file in /css/theme/source. It will be automatically compiled by Grunt from Sass to CSS (see the Gruntfile) when you run npm run build -- css-themes.

Each theme file does four things in the following order:

  1. Include /css/theme/template/mixins.scss Shared utility functions.

  2. Include /css/theme/template/settings.scss Declares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3.

  3. Override This is where you override the default theme. Either by specifying variables (see settings.scss for reference) or by adding any selectors and styles you please.

  4. Include /css/theme/template/theme.scss The template theme file which will generate final CSS output based on the currently defined variables.