diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2015-11-09 16:54:32 +0100 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2015-11-09 16:54:32 +0100 |
commit | d022113eea0163ee4a09418a6f6db9ee185bf50b (patch) | |
tree | 5c332f32d4b2124adc5aed00ec7e2c31d1ea8816 /css/theme | |
parent | bb7ab5f94ef7a47b18c2577920723cf17f087278 (diff) | |
parent | 55a69fc68d065465a38b05fd6fd9970c608a35e8 (diff) | |
download | perl-software-in-gnu-guix-d022113eea0163ee4a09418a6f6db9ee185bf50b.tar perl-software-in-gnu-guix-d022113eea0163ee4a09418a6f6db9ee185bf50b.tar.gz |
Merge pull request #1362 from GuGuss/patch-1
Update the theme README.md
Diffstat (limited to 'css/theme')
-rw-r--r-- | css/theme/README.md | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/css/theme/README.md b/css/theme/README.md index 753e0c0..5a6c8fa 100644 --- a/css/theme/README.md +++ b/css/theme/README.md @@ -4,7 +4,7 @@ Themes are written using Sass to keep things modular and reduce the need for rep ## Creating a Theme -To create your own theme, start by duplicating any ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source) and adding it to the compilation list in the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js). +To create your own theme, start by duplicating a ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source). It will be automatically compiled by Grunt from Sass to CSS (see the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js)) when you run `grunt css-themes`. Each theme file does four things in the following order: @@ -19,5 +19,3 @@ This is where you override the default theme. Either by specifying variables (se 4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)** The template theme file which will generate final CSS output based on the currently defined variables. - -When you are done, run `grunt css-themes` to compile the Sass file to CSS and you are ready to use your new theme. |