diff options
author | Hakim El Hattab | 2013-04-18 10:01:24 -0300 |
---|---|---|
committer | Hakim El Hattab | 2013-04-18 10:01:24 -0300 |
commit | fee256d8a723a9edcae1733242ffc3ce933795ea (patch) | |
tree | d3da8c5218463b19aa2795a85f61544115b0dafd /README.md | |
parent | e05aa30db9bf702de3a23b0d39e7d2ad3d5b9249 (diff) |
adjust order in readme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 64 |
1 files changed, 32 insertions, 32 deletions
@@ -378,6 +378,38 @@ Here's an example of an exported presentation that's been uploaded to SlideShare  +## Theming + +The framework comes with a few different themes included: + +- default: Gray background, white text, blue links +- beige: Beige background, dark text, brown links +- sky: Blue background, thin white text, blue links +- night: Black background, thick white text, orange links +- serif: Cappuccino background, gray text, brown links +- simple: White background, black text, blue links + +Each theme is available as a separate stylesheet. To change theme you will need to replace **default** below with your desired theme name in index.html: + +```html +<link rel="stylesheet" href="css/theme/default.css" id="theme"> +``` + +If you want to add a theme of your own see the instructions here: [/css/theme/README.md](https://github.com/hakimel/reveal.js/blob/master/css/theme/README.md). + + +## Development Environment + +reveal.js is built using the task-based command line build tool [grunt.js](http://gruntjs.com) ([installation instructions](http://gruntjs.com/getting-started#installing-the-cli)). With Node.js and grunt.js installed, you need to start by running ```npm install``` in the reveal.js root. When the dependencies have been installed you should run ```grunt watch``` to start monitoring files for changes. + +If you want to customise reveal.js without running grunt.js you can alter the HTML to point to the uncompressed source files (css/reveal.css & js/reveal.js). + +### Folder Structure +- **css/** Core styles without which the project does not function +- **js/** Like above but for JavaScript +- **plugin/** Components that have been developed as extensions to reveal.js +- **lib/** All other third party assets (JavaScript, CSS, fonts) + ## Speaker Notes @@ -547,38 +579,6 @@ Reveal.initialize({ }); ``` -## Theming - -The framework comes with a few different themes included: - -- default: Gray background, white text, blue links -- beige: Beige background, dark text, brown links -- sky: Blue background, thin white text, blue links -- night: Black background, thick white text, orange links -- serif: Cappuccino background, gray text, brown links -- simple: White background, black text, blue links - -Each theme is available as a separate stylesheet. To change theme you will need to replace **default** below with your desired theme name in index.html: - -```html -<link rel="stylesheet" href="css/theme/default.css" id="theme"> -``` - -If you want to add a theme of your own see the instructions here: [/css/theme/README.md](https://github.com/hakimel/reveal.js/blob/master/css/theme/README.md). - - -## Development Environment - -reveal.js is built using the task-based command line build tool [grunt.js](http://gruntjs.com) ([installation instructions](http://gruntjs.com/getting-started#installing-the-cli)). With Node.js and grunt.js installed, you need to start by running ```npm install``` in the reveal.js root. When the dependencies have been installed you should run ```grunt watch``` to start monitoring files for changes. - -If you want to customise reveal.js without running grunt.js you can alter the HTML to point to the uncompressed source files (css/reveal.css & js/reveal.js). - -### Folder Structure -- **css/** Core styles without which the project does not function -- **js/** Like above but for JavaScript -- **plugin/** Components that have been developed as extensions to reveal.js -- **lib/** All other third party assets (JavaScript, CSS, fonts) - ## License |