├── .gitignore
├── Gruntfile.js
├── README.md
├── package.json
├── snippets.txt
└── src
└── slides
├── about-us.md
├── development-tools-and-patterns.md
├── do-i-need-these-tools.md
├── end.md
├── future-features.md
├── img
├── 2-beta-admin-1.png
├── 2-beta-admin-2.png
├── 3d-preview.png
├── cool-theme-CGm6DoxVAAEh-W2.jpg-large
├── drs-tabs-screenshot.png
├── emberjs-logo.png
├── grunt.png
├── issue-screenshot.png
├── lego-rapper-7302642156_268095d4f2_o.jpg
├── mine.gif
├── nasa-screenshot.png
├── problem-7658225516_00cf277f83_z.jpg
├── scaffold-2520054449_b8d243d857_z.jpg
├── test-page-screenshot.png
├── wab-builder.png
├── wab-exploded.png
├── wab-generator-sceenshot.png
├── wab-widget-conventions.png
├── work-yeoman-logo.png
└── yo-grunt-babel.png
├── index.html
├── intro.md
├── pattern-source-code.md
├── pattern-testing.md
├── pattern-widget-wrap.md
├── pattern-writing-widgets.md
├── resources.md
├── reveal.js
├── .gitignore
├── .travis.yml
├── CONTRIBUTING.md
├── Gruntfile.js
├── LICENSE
├── README.md
├── bower.json
├── css
│ ├── print
│ │ ├── paper.css
│ │ └── pdf.css
│ ├── reveal.css
│ ├── reveal.scss
│ └── theme
│ │ ├── README.md
│ │ ├── beige.css
│ │ ├── black.css
│ │ ├── blood.css
│ │ ├── esri-dev-summit-2016.css
│ │ ├── league.css
│ │ ├── moon.css
│ │ ├── night.css
│ │ ├── serif.css
│ │ ├── simple.css
│ │ ├── sky.css
│ │ ├── solarized.css
│ │ ├── source
│ │ ├── beige.scss
│ │ ├── black.scss
│ │ ├── blood.scss
│ │ ├── esri-dev-summit-2016.scss
│ │ ├── league.scss
│ │ ├── moon.scss
│ │ ├── night.scss
│ │ ├── serif.scss
│ │ ├── simple.scss
│ │ ├── sky.scss
│ │ ├── solarized.scss
│ │ └── white.scss
│ │ ├── template
│ │ ├── mixins.scss
│ │ ├── settings.scss
│ │ └── theme.scss
│ │ └── white.css
├── img
│ ├── bg-1.png
│ ├── bg-2.png
│ ├── bg-3.png
│ ├── bg-4.png
│ ├── bg-5.png
│ ├── bg-6.png
│ ├── bg-7.png
│ ├── end.png
│ └── title.png
├── index.html
├── js
│ └── reveal.js
├── lib
│ ├── css
│ │ ├── solarized_dark.css
│ │ └── zenburn.css
│ ├── font
│ │ ├── league-gothic
│ │ │ ├── LICENSE
│ │ │ ├── league-gothic.css
│ │ │ ├── league-gothic.eot
│ │ │ ├── league-gothic.ttf
│ │ │ └── league-gothic.woff
│ │ └── source-sans-pro
│ │ │ ├── LICENSE
│ │ │ ├── source-sans-pro-italic.eot
│ │ │ ├── source-sans-pro-italic.ttf
│ │ │ ├── source-sans-pro-italic.woff
│ │ │ ├── source-sans-pro-regular.eot
│ │ │ ├── source-sans-pro-regular.ttf
│ │ │ ├── source-sans-pro-regular.woff
│ │ │ ├── source-sans-pro-semibold.eot
│ │ │ ├── source-sans-pro-semibold.ttf
│ │ │ ├── source-sans-pro-semibold.woff
│ │ │ ├── source-sans-pro-semibolditalic.eot
│ │ │ ├── source-sans-pro-semibolditalic.ttf
│ │ │ ├── source-sans-pro-semibolditalic.woff
│ │ │ └── source-sans-pro.css
│ └── js
│ │ ├── classList.js
│ │ ├── head.min.js
│ │ └── html5shiv.js
├── package.json
├── plugin
│ ├── highlight
│ │ └── highlight.js
│ ├── markdown
│ │ ├── example.html
│ │ ├── example.md
│ │ ├── markdown.js
│ │ └── marked.js
│ ├── math
│ │ └── math.js
│ ├── multiplex
│ │ ├── client.js
│ │ ├── index.js
│ │ └── master.js
│ ├── notes-server
│ │ ├── client.js
│ │ ├── index.js
│ │ └── notes.html
│ ├── notes
│ │ ├── notes.html
│ │ └── notes.js
│ ├── print-pdf
│ │ └── print-pdf.js
│ ├── search
│ │ └── search.js
│ └── zoom-js
│ │ └── zoom.js
└── test
│ ├── examples
│ ├── assets
│ │ ├── image1.png
│ │ └── image2.png
│ ├── barebones.html
│ ├── embedded-media.html
│ ├── math.html
│ ├── slide-backgrounds.html
│ └── slide-transitions.html
│ ├── qunit-1.12.0.css
│ ├── qunit-1.12.0.js
│ ├── test-markdown-element-attributes.html
│ ├── test-markdown-element-attributes.js
│ ├── test-markdown-slide-attributes.html
│ ├── test-markdown-slide-attributes.js
│ ├── test-markdown.html
│ ├── test-markdown.js
│ ├── test-pdf.html
│ ├── test-pdf.js
│ ├── test.html
│ └── test.js
├── thank-you.md
└── what-is-web-appbuilder.md
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 |
6 | # Runtime data
7 | pids
8 | *.pid
9 | *.seed
10 |
11 | # Directory for instrumented libs generated by jscoverage/JSCover
12 | lib-cov
13 |
14 | # Coverage directory used by tools like istanbul
15 | coverage
16 |
17 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
18 | .grunt
19 |
20 | # node-waf configuration
21 | .lock-wscript
22 |
23 | # Compiled binary addons (http://nodejs.org/api/addons.html)
24 | build/Release
25 |
26 | # Dependency directory
27 | node_modules
28 |
29 | # Optional npm cache directory
30 | .npm
31 |
32 | # Optional REPL history
33 | .node_repl_history
34 |
--------------------------------------------------------------------------------
/Gruntfile.js:
--------------------------------------------------------------------------------
1 | /* global module:false */
2 | module.exports = function(grunt) {
3 | // Project configuration
4 | grunt.initConfig({
5 | 'gh-pages': {
6 | options: {
7 | base: 'src/slides'
8 | },
9 | src: ['**']
10 | }
11 | });
12 |
13 | // Dependencies
14 | grunt.loadNpmTasks('grunt-gh-pages');
15 |
16 | // Default task
17 | grunt.registerTask('default', []);
18 | grunt.registerTask('deploy', ['default', 'gh-pages']);
19 |
20 | };
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Web AppBuilder for ArcGIS: Development tools and Techniques
2 | This session picks up where the Customizing and Extending Web AppBuilder session leaves off, and will cover advanced tools and techniques to help you streamline and automate the development of custom widgets and themes for Web AppBuilder using the latest JavaScript and styling tooling, including:
3 | * Automating file management and integration with version control systems using Grunt
4 | * Scaffolding widgets using Yeoman generators
5 | * Writing widgets that use modern JavaScript that can be tested and used outside of the Web AppBuilder
6 |
7 |
8 | ## Useful links
9 | * Schedule: [3/11/2016, 8:30 AM, Smoketree Room](https://devsummit.schedule.esri.com/#schedule/56b2875d4be5dd46a3000365/56b2875d4be5dd46a3000366) and [3/11/2016, 1:00 PM, Smoketree Room](https://devsummit.schedule.esri.com/#schedule/56b2875d4be5dd46a3000365/56b3db004be5dd8f3401454b)
10 | * Slides: http://gavinr.github.io/web-appbuilder-tools-techniques-dev-summit-2016
11 | * Video: http://video.esri.com/watch/5049/web-appbuilder-for-arcgis-development-tools-and-techniques
12 |
13 | ## 2015 Talk
14 | This talk will address some of the same concepts as last year, but tactically build and expand on those ideas! Last years slides are at [tomwayson/web-appbuilder-tools-techniques-dev-summit-2015](https://github.com/tomwayson/web-appbuilder-tools-techniques-dev-summit-2015).
15 |
16 | ## WebAppbuilder Resources
17 | * Generator: https://github.com/Esri/generator-esri-appbuilder-js
18 | * [developers.arcgis.com/web-appbuilder](https://developers.arcgis.com/web-appbuilder/)
19 | * Geonet: [Web AppBuilder Custom Widgets Group](https://geonet.esri.com/groups/web-app-builder-custom-widgets)
20 | * [WAB Widget Search](http://gavinr.github.io/wab-widget-search)
21 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "web-appbuilder-tools-techniques-dev-summit-2016",
3 | "version": "1.0.0",
4 | "description": "Dev Summit 2016 Presentation \"Web AppBuilder for ArcGIS: Development tools and Techniques\"",
5 | "main": "index.js",
6 | "scripts": {
7 | "test": "echo \"Error: no test specified\" && exit 1"
8 | },
9 | "repository": {
10 | "type": "git",
11 | "url": "git+https://github.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016.git"
12 | },
13 | "keywords": [
14 | "web",
15 | "appbuilder",
16 | "devsummit"
17 | ],
18 | "author": "Gavin Rehkemper and Tom Wayson",
19 | "license": "ISC",
20 | "bugs": {
21 | "url": "https://github.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/issues"
22 | },
23 | "homepage": "https://github.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016#readme",
24 | "devDependencies": {
25 | "grunt": "^0.4.5",
26 | "grunt-gh-pages": "^1.0.0"
27 | },
28 | "dependencies": {}
29 | }
30 |
--------------------------------------------------------------------------------
/snippets.txt:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | // Widget.js
6 | define(['dojo/_base/declare', 'jimu/BaseWidget', './SubWidget'],
7 | function(declare, BaseWidget, SubWidget) {
8 | //To create a widget, you need to derive from BaseWidget.
9 | return declare([BaseWidget], {
10 |
11 | // Custom widget code goes here
12 |
13 | baseClass: 'es5',
14 | // this property is set by the framework when widget is loaded.
15 | // name: 'ES5',
16 | // add additional properties here
17 |
18 | //methods to communication with app container:
19 | postCreate: function() {
20 | this.inherited(arguments);
21 | this.subWidget = new SubWidget({}, this.subwidgetNode);
22 | },
23 |
24 | startup: function() {
25 | this.inherited(arguments);
26 | this.subWidget.startup();
27 | },
28 |
29 | Test page
30 | http://localhost/test/yo-wab-2d/widgets/ES5/tests/SubWidgetTest.html
--------------------------------------------------------------------------------
/src/slides/about-us.md:
--------------------------------------------------------------------------------
1 | Tom Wayson and Gavin Rehkemper
2 |
11 |
--------------------------------------------------------------------------------
/src/slides/development-tools-and-patterns.md:
--------------------------------------------------------------------------------
1 |
2 | # Development Patterns and Tools
3 |
4 | ---
5 |
6 | ## Patterns are the same
7 |
8 | ---
9 |
10 | ## Tools have improved
11 |
12 | ---
13 |
14 | ## Patterns
15 |
16 |
17 | Keep your source code outside of the WAB folders
18 | Don't write WAB widgets from scratch
19 | WAB widgets wrap your own widgets
20 | Run and test your code outside the WAB
21 |
22 |
23 |
24 | ---
25 |
26 |
27 | #### Tools: [Yeoman](http://yeoman.io/) - [Grunt](http://gruntjs.com/) - [Babel](https://babeljs.io/)
28 |
--------------------------------------------------------------------------------
/src/slides/do-i-need-these-tools.md:
--------------------------------------------------------------------------------
1 |
2 | # Do I Really Need These Tools?
3 |
4 | ---
5 |
6 |
7 | #### Builder experience is powerful
8 |
9 | ---
10 |
11 |
12 | #### WSIWG builder adds complexity
13 |
14 |
15 | ---
16 |
17 |
18 | #### Easy for configurators = harder for developers
19 |
20 | ---
21 |
22 |
23 | #### Generators automate this extra work for us
24 |
25 | ---
26 |
27 |
28 | #### Scaffold out boilerplate code
29 |
30 | ---
31 |
32 |
33 | #### Install / configure tools to automate tasks
34 |
35 | ---
36 |
37 |
38 | #### Particularly useful for opinionated frameworks
39 |
40 | ---
41 |
42 |
43 | #### WAB is an opinionated frameowrk on top of JSAPI
44 |
45 | ---
46 |
47 |
48 | #### Heavy use of convetion - influenced by Rails
49 |
50 | ---
51 |
52 |
53 | #### Ideal for a generator: [yo esri-appbuilder-js](https://www.npmjs.com/package/generator-esri-appbuilder-js)
54 |
55 | ---
56 |
57 |
58 | #### v2 Supports 3D widgets and ES2015
59 |
60 | ---
61 |
62 |
63 | #### Installs tools to transpile and copy to WAB folder
64 |
65 | ---
66 |
67 |
68 | #### Subgenerator to scaffold out widget files
69 |
70 | ---
71 |
72 |
73 | ### Still not sold on generators?
74 |
75 |
76 |
77 | [Leave your feedback](https://github.com/Esri/generator-esri-appbuilder-js/issues/63)
78 |
--------------------------------------------------------------------------------
/src/slides/end.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/end.md
--------------------------------------------------------------------------------
/src/slides/future-features.md:
--------------------------------------------------------------------------------
1 | # Future Features
2 |
3 | 1. Style Sheet Language (SASS? LESS? Stylus?)
4 | 2. Dojo Builds?
5 | 3. Typescript support?
6 | 4. YOUR IDEAS HERE!
7 |
8 | [Esri/generator-esri-appbuilder-js/issues](https://github.com/Esri/generator-esri-appbuilder-js/issues)
9 |
10 |
--------------------------------------------------------------------------------
/src/slides/img/2-beta-admin-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/2-beta-admin-1.png
--------------------------------------------------------------------------------
/src/slides/img/2-beta-admin-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/2-beta-admin-2.png
--------------------------------------------------------------------------------
/src/slides/img/3d-preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/3d-preview.png
--------------------------------------------------------------------------------
/src/slides/img/cool-theme-CGm6DoxVAAEh-W2.jpg-large:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/cool-theme-CGm6DoxVAAEh-W2.jpg-large
--------------------------------------------------------------------------------
/src/slides/img/drs-tabs-screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/drs-tabs-screenshot.png
--------------------------------------------------------------------------------
/src/slides/img/emberjs-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/emberjs-logo.png
--------------------------------------------------------------------------------
/src/slides/img/grunt.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/grunt.png
--------------------------------------------------------------------------------
/src/slides/img/issue-screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/issue-screenshot.png
--------------------------------------------------------------------------------
/src/slides/img/lego-rapper-7302642156_268095d4f2_o.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/lego-rapper-7302642156_268095d4f2_o.jpg
--------------------------------------------------------------------------------
/src/slides/img/mine.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/mine.gif
--------------------------------------------------------------------------------
/src/slides/img/nasa-screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/nasa-screenshot.png
--------------------------------------------------------------------------------
/src/slides/img/problem-7658225516_00cf277f83_z.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/problem-7658225516_00cf277f83_z.jpg
--------------------------------------------------------------------------------
/src/slides/img/scaffold-2520054449_b8d243d857_z.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/scaffold-2520054449_b8d243d857_z.jpg
--------------------------------------------------------------------------------
/src/slides/img/test-page-screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/test-page-screenshot.png
--------------------------------------------------------------------------------
/src/slides/img/wab-builder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/wab-builder.png
--------------------------------------------------------------------------------
/src/slides/img/wab-exploded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/wab-exploded.png
--------------------------------------------------------------------------------
/src/slides/img/wab-generator-sceenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/wab-generator-sceenshot.png
--------------------------------------------------------------------------------
/src/slides/img/wab-widget-conventions.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/wab-widget-conventions.png
--------------------------------------------------------------------------------
/src/slides/img/work-yeoman-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/work-yeoman-logo.png
--------------------------------------------------------------------------------
/src/slides/img/yo-grunt-babel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/img/yo-grunt-babel.png
--------------------------------------------------------------------------------
/src/slides/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Web AppBuilder for ArcGIS: Development tools and Techniques
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
51 |
52 |
53 |
69 |
70 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
139 |
140 |
141 |
--------------------------------------------------------------------------------
/src/slides/intro.md:
--------------------------------------------------------------------------------
1 | # Web AppBuilder for ArcGIS
2 | ## Development Tools and Techniques
3 |
4 | Tom Wayson and Gavin Rehkemper
5 |
6 | [esriurl.com/wabtools2016](http://esriurl.com/wabtools2016)
7 |
--------------------------------------------------------------------------------
/src/slides/pattern-source-code.md:
--------------------------------------------------------------------------------
1 |
2 | ### Pattern:
3 | # Source Code
4 |
5 | ---
6 |
7 | ## Web AppBuilder Folder Structure
8 |
9 | Note: jump into quick demo of folder structure
10 |
11 | ---
12 |
13 |
14 | ## Only Keep YOUR Code in Source Control
15 |
16 | 
17 |
18 | ---
19 |
20 |
21 | ## Demo: App Generator
--------------------------------------------------------------------------------
/src/slides/pattern-testing.md:
--------------------------------------------------------------------------------
1 |
2 | ### Pattern:
3 | # Testing Outside Web AppBuilder
4 |
5 | ---
6 |
7 |
8 | #### Develop in the test page
--------------------------------------------------------------------------------
/src/slides/pattern-widget-wrap.md:
--------------------------------------------------------------------------------
1 |
2 | ### Pattern:
3 | # Wrapping Widgets
4 |
5 | ---
6 |
7 |
8 | ### Become a wrap star
9 |
10 |
11 |
12 | ---
13 |
14 |
15 |
16 |
17 | `BaseWidget`: is the interface between your widget(s) and the WAB
18 |
19 | ---
20 |
21 |
22 |
23 |
24 | Create sub widget(s) for your business logic / workflows
25 |
26 | ---
27 |
28 |
29 |
30 |
31 | Sub widgets go *inside* container widgets (tabs, etc)
32 |
33 | ---
34 |
35 |
36 | ## Demo: Sub Widget
37 |
38 | ---
39 |
40 |
41 | ### Advantages of Wrap Star Lifestyle
42 |
43 |
44 | Decoupled widgets are:
45 |
46 | Faster to develop
47 | Easier to test
48 |
49 |
50 | Widgets can be used
51 | outside the Web AppBuilder
52 |
53 |
54 |
--------------------------------------------------------------------------------
/src/slides/pattern-writing-widgets.md:
--------------------------------------------------------------------------------
1 |
2 | ### Pattern:
3 | # Do Not Write Widgets from Scratch
4 |
5 | ---
6 |
7 | ## Demo: Widget Sub Generator
--------------------------------------------------------------------------------
/src/slides/resources.md:
--------------------------------------------------------------------------------
1 | # Resources
2 |
3 | - Finding Great Widgets
4 | - Geonet: [Web AppBuilder Custom Widgets Group](https://geonet.esri.com/groups/web-app-builder-custom-widgets)
5 | - [WAB Widget Search](http://gavinr.github.io/wab-widget-search) (submissions welcome :)
6 | - ArcScripts Search
7 | - Documentation, Download, and Support:
8 |
9 | [developers.arcgis.com/web-appbuilder](https://developers.arcgis.com/web-appbuilder/)
10 |
11 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | .svn
3 | log/*.log
4 | tmp/**
5 | node_modules/
6 | .sass-cache
7 | css/reveal.min.css
8 | js/reveal.min.js
9 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/.travis.yml:
--------------------------------------------------------------------------------
1 | language: node_js
2 | node_js:
3 | - 4.1.1
4 | before_script:
5 | - npm install -g grunt-cli
--------------------------------------------------------------------------------
/src/slides/reveal.js/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | ## Contributing
2 |
3 | Please keep the [issue tracker](http://github.com/hakimel/reveal.js/issues) limited to **bug reports**, **feature requests** and **pull requests**.
4 |
5 |
6 | ### Personal Support
7 | If you have personal support or setup questions the best place to ask those are [StackOverflow](http://stackoverflow.com/questions/tagged/reveal.js).
8 |
9 |
10 | ### Bug Reports
11 | When reporting a bug make sure to include information about which browser and operating system you are on as well as the necessary steps to reproduce the issue. If possible please include a link to a sample presentation where the bug can be tested.
12 |
13 |
14 | ### Pull Requests
15 | - Should follow the coding style of the file you work in, most importantly:
16 | - Tabs to indent
17 | - Single-quoted strings
18 | - Should be made towards the **dev branch**
19 | - Should be submitted from a feature/topic branch (not your master)
20 |
21 |
22 | ### Plugins
23 | Please do not submit plugins as pull requests. They should be maintained in their own separate repository. More information here: https://github.com/hakimel/reveal.js/wiki/Plugin-Guidelines
24 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/Gruntfile.js:
--------------------------------------------------------------------------------
1 | /* global module:false */
2 | module.exports = function(grunt) {
3 | var port = grunt.option('port') || 8000;
4 | var base = grunt.option('base') || '..';
5 |
6 | // Project configuration
7 | grunt.initConfig({
8 | pkg: grunt.file.readJSON('package.json'),
9 | meta: {
10 | banner:
11 | '/*!\n' +
12 | ' * reveal.js <%= pkg.version %> (<%= grunt.template.today("yyyy-mm-dd, HH:MM") %>)\n' +
13 | ' * http://lab.hakim.se/reveal-js\n' +
14 | ' * MIT licensed\n' +
15 | ' *\n' +
16 | ' * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n' +
17 | ' */'
18 | },
19 |
20 | qunit: {
21 | files: [ 'test/*.html' ]
22 | },
23 |
24 | uglify: {
25 | options: {
26 | banner: '<%= meta.banner %>\n'
27 | },
28 | build: {
29 | src: 'js/reveal.js',
30 | dest: 'js/reveal.min.js'
31 | }
32 | },
33 |
34 | sass: {
35 | core: {
36 | files: {
37 | 'css/reveal.css': 'css/reveal.scss',
38 | }
39 | },
40 | themes: {
41 | files: [
42 | {
43 | expand: true,
44 | cwd: 'css/theme/source',
45 | src: ['*.scss'],
46 | dest: 'css/theme',
47 | ext: '.css'
48 | }
49 | ]
50 | }
51 | },
52 |
53 | autoprefixer: {
54 | dist: {
55 | src: 'css/reveal.css'
56 | }
57 | },
58 |
59 | cssmin: {
60 | compress: {
61 | files: {
62 | 'css/reveal.min.css': [ 'css/reveal.css' ]
63 | }
64 | }
65 | },
66 |
67 | jshint: {
68 | options: {
69 | curly: false,
70 | eqeqeq: true,
71 | immed: true,
72 | latedef: true,
73 | newcap: true,
74 | noarg: true,
75 | sub: true,
76 | undef: true,
77 | eqnull: true,
78 | browser: true,
79 | expr: true,
80 | globals: {
81 | head: false,
82 | module: false,
83 | console: false,
84 | unescape: false,
85 | define: false,
86 | exports: false
87 | }
88 | },
89 | files: [ 'Gruntfile.js', 'js/reveal.js' ]
90 | },
91 |
92 | connect: {
93 | server: {
94 | options: {
95 | port: port,
96 | base: base,
97 | livereload: true,
98 | open: true
99 | }
100 | }
101 | },
102 |
103 | zip: {
104 | 'reveal-js-presentation.zip': [
105 | 'index.html',
106 | 'css/**',
107 | 'js/**',
108 | 'lib/**',
109 | 'images/**',
110 | 'plugin/**',
111 | '**.md'
112 | ]
113 | },
114 |
115 | watch: {
116 | options: {
117 | livereload: true
118 | },
119 | js: {
120 | files: [ 'Gruntfile.js', 'js/reveal.js' ],
121 | tasks: 'js'
122 | },
123 | theme: {
124 | files: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ],
125 | tasks: 'css-themes'
126 | },
127 | css: {
128 | files: [ 'css/reveal.scss' ],
129 | tasks: 'css-core'
130 | },
131 | html: {
132 | files: [ 'index.html']
133 | },
134 | markdown: {
135 | files: [ './*.md' ]
136 | }
137 | }
138 |
139 | });
140 |
141 | // Dependencies
142 | grunt.loadNpmTasks( 'grunt-contrib-qunit' );
143 | grunt.loadNpmTasks( 'grunt-contrib-jshint' );
144 | grunt.loadNpmTasks( 'grunt-contrib-cssmin' );
145 | grunt.loadNpmTasks( 'grunt-contrib-uglify' );
146 | grunt.loadNpmTasks( 'grunt-contrib-watch' );
147 | grunt.loadNpmTasks( 'grunt-sass' );
148 | grunt.loadNpmTasks( 'grunt-contrib-connect' );
149 | grunt.loadNpmTasks( 'grunt-autoprefixer' );
150 | grunt.loadNpmTasks( 'grunt-zip' );
151 |
152 | // Default task
153 | grunt.registerTask( 'default', [ 'css', 'js' ] );
154 |
155 | // JS task
156 | grunt.registerTask( 'js', [ 'jshint', 'uglify', 'qunit' ] );
157 |
158 | // Theme CSS
159 | grunt.registerTask( 'css-themes', [ 'sass:themes' ] );
160 |
161 | // Core framework CSS
162 | grunt.registerTask( 'css-core', [ 'sass:core', 'autoprefixer', 'cssmin' ] );
163 |
164 | // All CSS
165 | grunt.registerTask( 'css', [ 'sass', 'autoprefixer', 'cssmin' ] );
166 |
167 | // Package presentation to archive
168 | grunt.registerTask( 'package', [ 'default', 'zip' ] );
169 |
170 | // Serve presentation locally
171 | grunt.registerTask( 'serve', [ 'connect', 'watch' ] );
172 |
173 | // Run tests
174 | grunt.registerTask( 'test', [ 'jshint', 'qunit' ] );
175 |
176 | };
177 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (C) 2015 Hakim El Hattab, http://hakim.se
2 |
3 | Permission is hereby granted, free of charge, to any person obtaining a copy
4 | of this software and associated documentation files (the "Software"), to deal
5 | in the Software without restriction, including without limitation the rights
6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 | copies of the Software, and to permit persons to whom the Software is
8 | furnished to do so, subject to the following conditions:
9 |
10 | The above copyright notice and this permission notice shall be included in
11 | all copies or substantial portions of the Software.
12 |
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19 | THE SOFTWARE.
--------------------------------------------------------------------------------
/src/slides/reveal.js/bower.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "reveal.js",
3 | "version": "3.2.0",
4 | "main": [
5 | "js/reveal.js",
6 | "css/reveal.css"
7 | ],
8 | "homepage": "http://lab.hakim.se/reveal-js/",
9 | "license": "MIT",
10 | "description": "The HTML Presentation Framework",
11 | "authors": [
12 | "Hakim El Hattab "
13 | ],
14 | "dependencies": {
15 | "headjs": "~1.0.3"
16 | },
17 | "repository": {
18 | "type": "git",
19 | "url": "git://github.com/hakimel/reveal.js.git"
20 | },
21 | "ignore": [
22 | "**/.*",
23 | "node_modules",
24 | "bower_components",
25 | "test"
26 | ]
27 | }
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/print/paper.css:
--------------------------------------------------------------------------------
1 | /* Default Print Stylesheet Template
2 | by Rob Glazebrook of CSSnewbie.com
3 | Last Updated: June 4, 2008
4 |
5 | Feel free (nay, compelled) to edit, append, and
6 | manipulate this file as you see fit. */
7 |
8 |
9 | @media print {
10 |
11 | /* SECTION 1: Set default width, margin, float, and
12 | background. This prevents elements from extending
13 | beyond the edge of the printed page, and prevents
14 | unnecessary background images from printing */
15 | html {
16 | background: #fff;
17 | width: auto;
18 | height: auto;
19 | overflow: visible;
20 | }
21 | body {
22 | background: #fff;
23 | font-size: 20pt;
24 | width: auto;
25 | height: auto;
26 | border: 0;
27 | margin: 0 5%;
28 | padding: 0;
29 | overflow: visible;
30 | float: none !important;
31 | }
32 |
33 | /* SECTION 2: Remove any elements not needed in print.
34 | This would include navigation, ads, sidebars, etc. */
35 | .nestedarrow,
36 | .controls,
37 | .fork-reveal,
38 | .share-reveal,
39 | .state-background,
40 | .reveal .progress,
41 | .reveal .backgrounds {
42 | display: none !important;
43 | }
44 |
45 | /* SECTION 3: Set body font face, size, and color.
46 | Consider using a serif font for readability. */
47 | body, p, td, li, div {
48 | font-size: 20pt!important;
49 | font-family: Georgia, "Times New Roman", Times, serif !important;
50 | color: #000;
51 | }
52 |
53 | /* SECTION 4: Set heading font face, sizes, and color.
54 | Differentiate your headings from your body text.
55 | Perhaps use a large sans-serif for distinction. */
56 | h1,h2,h3,h4,h5,h6 {
57 | color: #000!important;
58 | height: auto;
59 | line-height: normal;
60 | font-family: Georgia, "Times New Roman", Times, serif !important;
61 | text-shadow: 0 0 0 #000 !important;
62 | text-align: left;
63 | letter-spacing: normal;
64 | }
65 | /* Need to reduce the size of the fonts for printing */
66 | h1 { font-size: 28pt !important; }
67 | h2 { font-size: 24pt !important; }
68 | h3 { font-size: 22pt !important; }
69 | h4 { font-size: 22pt !important; font-variant: small-caps; }
70 | h5 { font-size: 21pt !important; }
71 | h6 { font-size: 20pt !important; font-style: italic; }
72 |
73 | /* SECTION 5: Make hyperlinks more usable.
74 | Ensure links are underlined, and consider appending
75 | the URL to the end of the link for usability. */
76 | a:link,
77 | a:visited {
78 | color: #000 !important;
79 | font-weight: bold;
80 | text-decoration: underline;
81 | }
82 | /*
83 | .reveal a:link:after,
84 | .reveal a:visited:after {
85 | content: " (" attr(href) ") ";
86 | color: #222 !important;
87 | font-size: 90%;
88 | }
89 | */
90 |
91 |
92 | /* SECTION 6: more reveal.js specific additions by @skypanther */
93 | ul, ol, div, p {
94 | visibility: visible;
95 | position: static;
96 | width: auto;
97 | height: auto;
98 | display: block;
99 | overflow: visible;
100 | margin: 0;
101 | text-align: left !important;
102 | }
103 | .reveal pre,
104 | .reveal table {
105 | margin-left: 0;
106 | margin-right: 0;
107 | }
108 | .reveal pre code {
109 | padding: 20px;
110 | border: 1px solid #ddd;
111 | }
112 | .reveal blockquote {
113 | margin: 20px 0;
114 | }
115 | .reveal .slides {
116 | position: static !important;
117 | width: auto !important;
118 | height: auto !important;
119 |
120 | left: 0 !important;
121 | top: 0 !important;
122 | margin-left: 0 !important;
123 | margin-top: 0 !important;
124 | padding: 0 !important;
125 | zoom: 1 !important;
126 |
127 | overflow: visible !important;
128 | display: block !important;
129 |
130 | text-align: left !important;
131 | -webkit-perspective: none;
132 | -moz-perspective: none;
133 | -ms-perspective: none;
134 | perspective: none;
135 |
136 | -webkit-perspective-origin: 50% 50%;
137 | -moz-perspective-origin: 50% 50%;
138 | -ms-perspective-origin: 50% 50%;
139 | perspective-origin: 50% 50%;
140 | }
141 | .reveal .slides section {
142 | visibility: visible !important;
143 | position: static !important;
144 | width: auto !important;
145 | height: auto !important;
146 | display: block !important;
147 | overflow: visible !important;
148 |
149 | left: 0 !important;
150 | top: 0 !important;
151 | margin-left: 0 !important;
152 | margin-top: 0 !important;
153 | padding: 60px 20px !important;
154 | z-index: auto !important;
155 |
156 | opacity: 1 !important;
157 |
158 | page-break-after: always !important;
159 |
160 | -webkit-transform-style: flat !important;
161 | -moz-transform-style: flat !important;
162 | -ms-transform-style: flat !important;
163 | transform-style: flat !important;
164 |
165 | -webkit-transform: none !important;
166 | -moz-transform: none !important;
167 | -ms-transform: none !important;
168 | transform: none !important;
169 |
170 | -webkit-transition: none !important;
171 | -moz-transition: none !important;
172 | -ms-transition: none !important;
173 | transition: none !important;
174 | }
175 | .reveal .slides section.stack {
176 | padding: 0 !important;
177 | }
178 | .reveal section:last-of-type {
179 | page-break-after: avoid !important;
180 | }
181 | .reveal section .fragment {
182 | opacity: 1 !important;
183 | visibility: visible !important;
184 |
185 | -webkit-transform: none !important;
186 | -moz-transform: none !important;
187 | -ms-transform: none !important;
188 | transform: none !important;
189 | }
190 | .reveal section img {
191 | display: block;
192 | margin: 15px 0px;
193 | background: rgba(255,255,255,1);
194 | border: 1px solid #666;
195 | box-shadow: none;
196 | }
197 |
198 | .reveal section small {
199 | font-size: 0.8em;
200 | }
201 |
202 | }
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/print/pdf.css:
--------------------------------------------------------------------------------
1 | /**
2 | * This stylesheet is used to print reveal.js
3 | * presentations to PDF.
4 | *
5 | * https://github.com/hakimel/reveal.js#pdf-export
6 | */
7 |
8 | * {
9 | -webkit-print-color-adjust: exact;
10 | }
11 |
12 | body {
13 | margin: 0 auto !important;
14 | border: 0;
15 | padding: 0;
16 | float: none !important;
17 | overflow: visible;
18 | }
19 |
20 | html {
21 | width: 100%;
22 | height: 100%;
23 | overflow: visible;
24 | }
25 |
26 | /* Remove any elements not needed in print. */
27 | .nestedarrow,
28 | .reveal .controls,
29 | .reveal .progress,
30 | .reveal .playback,
31 | .reveal.overview,
32 | .fork-reveal,
33 | .share-reveal,
34 | .state-background {
35 | display: none !important;
36 | }
37 |
38 | h1, h2, h3, h4, h5, h6 {
39 | text-shadow: 0 0 0 #000 !important;
40 | }
41 |
42 | .reveal pre code {
43 | overflow: hidden !important;
44 | font-family: Courier, 'Courier New', monospace !important;
45 | }
46 |
47 | ul, ol, div, p {
48 | visibility: visible;
49 | position: static;
50 | width: auto;
51 | height: auto;
52 | display: block;
53 | overflow: visible;
54 | margin: auto;
55 | }
56 | .reveal {
57 | width: auto !important;
58 | height: auto !important;
59 | overflow: hidden !important;
60 | }
61 | .reveal .slides {
62 | position: static;
63 | width: 100%;
64 | height: auto;
65 |
66 | left: auto;
67 | top: auto;
68 | margin: 0 !important;
69 | padding: 0 !important;
70 |
71 | overflow: visible;
72 | display: block;
73 |
74 | -webkit-perspective: none;
75 | -moz-perspective: none;
76 | -ms-perspective: none;
77 | perspective: none;
78 |
79 | -webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */
80 | -moz-perspective-origin: 50% 50%;
81 | -ms-perspective-origin: 50% 50%;
82 | perspective-origin: 50% 50%;
83 | }
84 |
85 | .reveal .slides section {
86 | page-break-after: always !important;
87 |
88 | visibility: visible !important;
89 | position: relative !important;
90 | display: block !important;
91 | position: relative !important;
92 |
93 | margin: 0 !important;
94 | padding: 0 !important;
95 | box-sizing: border-box !important;
96 | min-height: 1px;
97 |
98 | opacity: 1 !important;
99 |
100 | -webkit-transform-style: flat !important;
101 | -moz-transform-style: flat !important;
102 | -ms-transform-style: flat !important;
103 | transform-style: flat !important;
104 |
105 | -webkit-transform: none !important;
106 | -moz-transform: none !important;
107 | -ms-transform: none !important;
108 | transform: none !important;
109 | }
110 |
111 | .reveal section.stack {
112 | margin: 0 !important;
113 | padding: 0 !important;
114 | page-break-after: avoid !important;
115 | height: auto !important;
116 | min-height: auto !important;
117 | }
118 |
119 | .reveal img {
120 | box-shadow: none;
121 | }
122 |
123 | .reveal .roll {
124 | overflow: visible;
125 | line-height: 1em;
126 | }
127 |
128 | /* Slide backgrounds are placed inside of their slide when exporting to PDF */
129 | .reveal section .slide-background {
130 | display: block !important;
131 | position: absolute;
132 | top: 0;
133 | left: 0;
134 | width: 100%;
135 | z-index: -1;
136 | }
137 |
138 | /* All elements should be above the slide-background */
139 | .reveal section>* {
140 | position: relative;
141 | z-index: 1;
142 | }
143 |
144 | /* Display slide speaker notes when 'showNotes' is enabled */
145 | .reveal .speaker-notes-pdf {
146 | display: block;
147 | width: 100%;
148 | max-height: none;
149 | left: auto;
150 | top: auto;
151 | z-index: 100;
152 | }
153 |
154 | /* Display slide numbers when 'slideNumber' is enabled */
155 | .reveal .slide-number-pdf {
156 | display: block;
157 | position: absolute;
158 | font-size: 14px;
159 | }
160 |
161 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/README.md:
--------------------------------------------------------------------------------
1 | ## Dependencies
2 |
3 | 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 proceding: https://github.com/hakimel/reveal.js#full-setup
4 |
5 | ## Creating a Theme
6 |
7 | 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`.
8 |
9 | Each theme file does four things in the following order:
10 |
11 | 1. **Include [/css/theme/template/mixins.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/mixins.scss)**
12 | Shared utility functions.
13 |
14 | 2. **Include [/css/theme/template/settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss)**
15 | Declares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3.
16 |
17 | 3. **Override**
18 | This is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding any selectors and styles you please.
19 |
20 | 4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)**
21 | The template theme file which will generate final CSS output based on the currently defined variables.
22 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/black.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Black theme for reveal.js. This is the opposite of the 'white' theme.
3 | *
4 | * Copyright (C) 2015 Hakim El Hattab, http://hakim.se
5 | */
6 | @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
7 | section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {
8 | color: #222; }
9 |
10 | /*********************************************
11 | * GLOBAL STYLES
12 | *********************************************/
13 | body {
14 | background: #222;
15 | background-color: #222; }
16 |
17 | .reveal {
18 | font-family: "Source Sans Pro", Helvetica, sans-serif;
19 | font-size: 38px;
20 | font-weight: normal;
21 | color: #fff; }
22 |
23 | ::selection {
24 | color: #fff;
25 | background: #bee4fd;
26 | text-shadow: none; }
27 |
28 | .reveal .slides > section,
29 | .reveal .slides > section > section {
30 | line-height: 1.3;
31 | font-weight: inherit; }
32 |
33 | /*********************************************
34 | * HEADERS
35 | *********************************************/
36 | .reveal h1,
37 | .reveal h2,
38 | .reveal h3,
39 | .reveal h4,
40 | .reveal h5,
41 | .reveal h6 {
42 | margin: 0 0 20px 0;
43 | color: #fff;
44 | font-family: "Source Sans Pro", Helvetica, sans-serif;
45 | font-weight: 600;
46 | line-height: 1.2;
47 | letter-spacing: normal;
48 | text-transform: uppercase;
49 | text-shadow: none;
50 | word-wrap: break-word; }
51 |
52 | .reveal h1 {
53 | font-size: 2.5em; }
54 |
55 | .reveal h2 {
56 | font-size: 1.6em; }
57 |
58 | .reveal h3 {
59 | font-size: 1.3em; }
60 |
61 | .reveal h4 {
62 | font-size: 1em; }
63 |
64 | .reveal h1 {
65 | text-shadow: none; }
66 |
67 | /*********************************************
68 | * OTHER
69 | *********************************************/
70 | .reveal p {
71 | margin: 20px 0;
72 | line-height: 1.3; }
73 |
74 | /* Ensure certain elements are never larger than the slide itself */
75 | .reveal img,
76 | .reveal video,
77 | .reveal iframe {
78 | max-width: 95%;
79 | max-height: 95%; }
80 |
81 | .reveal strong,
82 | .reveal b {
83 | font-weight: bold; }
84 |
85 | .reveal em {
86 | font-style: italic; }
87 |
88 | .reveal ol,
89 | .reveal dl,
90 | .reveal ul {
91 | display: inline-block;
92 | text-align: left;
93 | margin: 0 0 0 1em; }
94 |
95 | .reveal ol {
96 | list-style-type: decimal; }
97 |
98 | .reveal ul {
99 | list-style-type: disc; }
100 |
101 | .reveal ul ul {
102 | list-style-type: square; }
103 |
104 | .reveal ul ul ul {
105 | list-style-type: circle; }
106 |
107 | .reveal ul ul,
108 | .reveal ul ol,
109 | .reveal ol ol,
110 | .reveal ol ul {
111 | display: block;
112 | margin-left: 40px; }
113 |
114 | .reveal dt {
115 | font-weight: bold; }
116 |
117 | .reveal dd {
118 | margin-left: 40px; }
119 |
120 | .reveal q,
121 | .reveal blockquote {
122 | quotes: none; }
123 |
124 | .reveal blockquote {
125 | display: block;
126 | position: relative;
127 | width: 70%;
128 | margin: 20px auto;
129 | padding: 5px;
130 | font-style: italic;
131 | background: rgba(255, 255, 255, 0.05);
132 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
133 |
134 | .reveal blockquote p:first-child,
135 | .reveal blockquote p:last-child {
136 | display: inline-block; }
137 |
138 | .reveal q {
139 | font-style: italic; }
140 |
141 | .reveal pre {
142 | display: block;
143 | position: relative;
144 | width: 90%;
145 | margin: 20px auto;
146 | text-align: left;
147 | font-size: 0.55em;
148 | font-family: monospace;
149 | line-height: 1.2em;
150 | word-wrap: break-word;
151 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
152 |
153 | .reveal code {
154 | font-family: monospace; }
155 |
156 | .reveal pre code {
157 | display: block;
158 | padding: 5px;
159 | overflow: auto;
160 | max-height: 400px;
161 | word-wrap: normal; }
162 |
163 | .reveal table {
164 | margin: auto;
165 | border-collapse: collapse;
166 | border-spacing: 0; }
167 |
168 | .reveal table th {
169 | font-weight: bold; }
170 |
171 | .reveal table th,
172 | .reveal table td {
173 | text-align: left;
174 | padding: 0.2em 0.5em 0.2em 0.5em;
175 | border-bottom: 1px solid; }
176 |
177 | .reveal table th[align="center"],
178 | .reveal table td[align="center"] {
179 | text-align: center; }
180 |
181 | .reveal table th[align="right"],
182 | .reveal table td[align="right"] {
183 | text-align: right; }
184 |
185 | .reveal table tr:last-child td {
186 | border-bottom: none; }
187 |
188 | .reveal sup {
189 | vertical-align: super; }
190 |
191 | .reveal sub {
192 | vertical-align: sub; }
193 |
194 | .reveal small {
195 | display: inline-block;
196 | font-size: 0.6em;
197 | line-height: 1.2em;
198 | vertical-align: top; }
199 |
200 | .reveal small * {
201 | vertical-align: top; }
202 |
203 | /*********************************************
204 | * LINKS
205 | *********************************************/
206 | .reveal a {
207 | color: #42affa;
208 | text-decoration: none;
209 | -webkit-transition: color .15s ease;
210 | -moz-transition: color .15s ease;
211 | transition: color .15s ease; }
212 |
213 | .reveal a:hover {
214 | color: #8dcffc;
215 | text-shadow: none;
216 | border: none; }
217 |
218 | .reveal .roll span:after {
219 | color: #fff;
220 | background: #068de9; }
221 |
222 | /*********************************************
223 | * IMAGES
224 | *********************************************/
225 | .reveal section img {
226 | margin: 15px 0px;
227 | background: rgba(255, 255, 255, 0.12);
228 | border: 4px solid #fff;
229 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
230 |
231 | .reveal section img.plain {
232 | border: 0;
233 | box-shadow: none; }
234 |
235 | .reveal a img {
236 | -webkit-transition: all .15s linear;
237 | -moz-transition: all .15s linear;
238 | transition: all .15s linear; }
239 |
240 | .reveal a:hover img {
241 | background: rgba(255, 255, 255, 0.2);
242 | border-color: #42affa;
243 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
244 |
245 | /*********************************************
246 | * NAVIGATION CONTROLS
247 | *********************************************/
248 | .reveal .controls .navigate-left,
249 | .reveal .controls .navigate-left.enabled {
250 | border-right-color: #42affa; }
251 |
252 | .reveal .controls .navigate-right,
253 | .reveal .controls .navigate-right.enabled {
254 | border-left-color: #42affa; }
255 |
256 | .reveal .controls .navigate-up,
257 | .reveal .controls .navigate-up.enabled {
258 | border-bottom-color: #42affa; }
259 |
260 | .reveal .controls .navigate-down,
261 | .reveal .controls .navigate-down.enabled {
262 | border-top-color: #42affa; }
263 |
264 | .reveal .controls .navigate-left.enabled:hover {
265 | border-right-color: #8dcffc; }
266 |
267 | .reveal .controls .navigate-right.enabled:hover {
268 | border-left-color: #8dcffc; }
269 |
270 | .reveal .controls .navigate-up.enabled:hover {
271 | border-bottom-color: #8dcffc; }
272 |
273 | .reveal .controls .navigate-down.enabled:hover {
274 | border-top-color: #8dcffc; }
275 |
276 | /*********************************************
277 | * PROGRESS BAR
278 | *********************************************/
279 | .reveal .progress {
280 | background: rgba(0, 0, 0, 0.2); }
281 |
282 | .reveal .progress span {
283 | background: #42affa;
284 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
285 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
286 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
287 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/esri-dev-summit-2016.css:
--------------------------------------------------------------------------------
1 | /**
2 | * A simple theme for reveal.js presentations, similar
3 | * to the default theme. The accent color is darkblue.
4 | *
5 | * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
6 | * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7 | */
8 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
9 | /*********************************************
10 | * GLOBAL STYLES
11 | *********************************************/
12 | body {
13 | background: #3F3F3F;
14 | background-color: #3F3F3F; }
15 |
16 | .reveal {
17 | font-family: "Lato", sans-serif;
18 | font-size: 42px;
19 | font-weight: normal;
20 | color: #FFFFFF; }
21 |
22 | ::selection {
23 | color: #fff;
24 | background: rgba(0, 0, 0, 0.99);
25 | text-shadow: none; }
26 |
27 | .reveal .slides > section,
28 | .reveal .slides > section > section {
29 | line-height: 1.3;
30 | font-weight: inherit; }
31 |
32 | /*********************************************
33 | * HEADERS
34 | *********************************************/
35 | .reveal h1,
36 | .reveal h2,
37 | .reveal h3,
38 | .reveal h4,
39 | .reveal h5,
40 | .reveal h6 {
41 | margin: 0 0 20px 0;
42 | color: #FFFFFF;
43 | font-family: "Lato", sans-serif;
44 | font-weight: normal;
45 | line-height: 1.2;
46 | letter-spacing: normal;
47 | text-transform: none;
48 | text-shadow: none;
49 | word-wrap: break-word; }
50 |
51 | .reveal h1 {
52 | font-size: 2.074em; }
53 |
54 | .reveal h2 {
55 | font-size: 1.728em; }
56 |
57 | .reveal h3 {
58 | font-size: 1.44em; }
59 |
60 | .reveal h4 {
61 | font-size: 1em; }
62 |
63 | .reveal h1 {
64 | text-shadow: none; }
65 |
66 | /*********************************************
67 | * OTHER
68 | *********************************************/
69 | .reveal p {
70 | margin: 20px 0;
71 | line-height: 1.3; }
72 |
73 | /* Ensure certain elements are never larger than the slide itself */
74 | .reveal img,
75 | .reveal video,
76 | .reveal iframe {
77 | max-width: 95%;
78 | max-height: 95%; }
79 |
80 | .reveal strong,
81 | .reveal b {
82 | font-weight: bold; }
83 |
84 | .reveal em {
85 | font-style: italic; }
86 |
87 | .reveal ol,
88 | .reveal dl,
89 | .reveal ul {
90 | display: inline-block;
91 | text-align: left;
92 | margin: 0 0 0 1em; }
93 |
94 | .reveal ol {
95 | list-style-type: decimal; }
96 |
97 | .reveal ul {
98 | list-style-type: disc; }
99 |
100 | .reveal ul ul {
101 | list-style-type: square; }
102 |
103 | .reveal ul ul ul {
104 | list-style-type: circle; }
105 |
106 | .reveal ul ul,
107 | .reveal ul ol,
108 | .reveal ol ol,
109 | .reveal ol ul {
110 | display: block;
111 | margin-left: 40px; }
112 |
113 | .reveal dt {
114 | font-weight: bold; }
115 |
116 | .reveal dd {
117 | margin-left: 40px; }
118 |
119 | .reveal q,
120 | .reveal blockquote {
121 | quotes: none; }
122 |
123 | .reveal blockquote {
124 | display: block;
125 | position: relative;
126 | width: 70%;
127 | margin: 20px auto;
128 | padding: 5px;
129 | font-style: italic;
130 | background: rgba(255, 255, 255, 0.05);
131 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
132 |
133 | .reveal blockquote p:first-child,
134 | .reveal blockquote p:last-child {
135 | display: inline-block; }
136 |
137 | .reveal q {
138 | font-style: italic; }
139 |
140 | .reveal pre {
141 | display: block;
142 | position: relative;
143 | width: 90%;
144 | margin: 20px auto;
145 | text-align: left;
146 | font-size: 0.55em;
147 | font-family: monospace;
148 | line-height: 1.2em;
149 | word-wrap: break-word;
150 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
151 |
152 | .reveal code {
153 | font-family: monospace; }
154 |
155 | .reveal pre code {
156 | display: block;
157 | padding: 5px;
158 | overflow: auto;
159 | max-height: 400px;
160 | word-wrap: normal; }
161 |
162 | .reveal table {
163 | margin: auto;
164 | border-collapse: collapse;
165 | border-spacing: 0; }
166 |
167 | .reveal table th {
168 | font-weight: bold; }
169 |
170 | .reveal table th,
171 | .reveal table td {
172 | text-align: left;
173 | padding: 0.2em 0.5em 0.2em 0.5em;
174 | border-bottom: 1px solid; }
175 |
176 | .reveal table th[align="center"],
177 | .reveal table td[align="center"] {
178 | text-align: center; }
179 |
180 | .reveal table th[align="right"],
181 | .reveal table td[align="right"] {
182 | text-align: right; }
183 |
184 | .reveal table tr:last-child td {
185 | border-bottom: none; }
186 |
187 | .reveal sup {
188 | vertical-align: super; }
189 |
190 | .reveal sub {
191 | vertical-align: sub; }
192 |
193 | .reveal small {
194 | display: inline-block;
195 | font-size: 0.6em;
196 | line-height: 1.2em;
197 | vertical-align: top; }
198 |
199 | .reveal small * {
200 | vertical-align: top; }
201 |
202 | /*********************************************
203 | * LINKS
204 | *********************************************/
205 | .reveal a {
206 | color: #21AEDB;
207 | text-decoration: none;
208 | -webkit-transition: color .15s ease;
209 | -moz-transition: color .15s ease;
210 | transition: color .15s ease; }
211 |
212 | .reveal a:hover {
213 | color: #77cfeb;
214 | text-shadow: none;
215 | border: none; }
216 |
217 | .reveal .roll span:after {
218 | color: #fff;
219 | background: #177999; }
220 |
221 | /*********************************************
222 | * IMAGES
223 | *********************************************/
224 | .reveal section img {
225 | margin: 15px 0px;
226 | background: rgba(255, 255, 255, 0.12);
227 | border: 4px solid #FFFFFF;
228 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
229 |
230 | .reveal section img.plain {
231 | border: 0;
232 | box-shadow: none; }
233 |
234 | .reveal a img {
235 | -webkit-transition: all .15s linear;
236 | -moz-transition: all .15s linear;
237 | transition: all .15s linear; }
238 |
239 | .reveal a:hover img {
240 | background: rgba(255, 255, 255, 0.2);
241 | border-color: #21AEDB;
242 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
243 |
244 | /*********************************************
245 | * NAVIGATION CONTROLS
246 | *********************************************/
247 | .reveal .controls .navigate-left,
248 | .reveal .controls .navigate-left.enabled {
249 | border-right-color: #21AEDB; }
250 |
251 | .reveal .controls .navigate-right,
252 | .reveal .controls .navigate-right.enabled {
253 | border-left-color: #21AEDB; }
254 |
255 | .reveal .controls .navigate-up,
256 | .reveal .controls .navigate-up.enabled {
257 | border-bottom-color: #21AEDB; }
258 |
259 | .reveal .controls .navigate-down,
260 | .reveal .controls .navigate-down.enabled {
261 | border-top-color: #21AEDB; }
262 |
263 | .reveal .controls .navigate-left.enabled:hover {
264 | border-right-color: #77cfeb; }
265 |
266 | .reveal .controls .navigate-right.enabled:hover {
267 | border-left-color: #77cfeb; }
268 |
269 | .reveal .controls .navigate-up.enabled:hover {
270 | border-bottom-color: #77cfeb; }
271 |
272 | .reveal .controls .navigate-down.enabled:hover {
273 | border-top-color: #77cfeb; }
274 |
275 | /*********************************************
276 | * PROGRESS BAR
277 | *********************************************/
278 | .reveal .progress {
279 | background: rgba(0, 0, 0, 0.2); }
280 |
281 | .reveal .progress span {
282 | background: #21AEDB;
283 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
284 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
285 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
286 |
287 | .reveal pre {
288 | font-size: auto; }
289 |
290 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/moon.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Solarized Dark theme for reveal.js.
3 | * Author: Achim Staebler
4 | */
5 | @import url(../../lib/font/league-gothic/league-gothic.css);
6 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
7 | /**
8 | * Solarized colors by Ethan Schoonover
9 | */
10 | html * {
11 | color-profile: sRGB;
12 | rendering-intent: auto; }
13 |
14 | /*********************************************
15 | * GLOBAL STYLES
16 | *********************************************/
17 | body {
18 | background: #002b36;
19 | background-color: #002b36; }
20 |
21 | .reveal {
22 | font-family: "Lato", sans-serif;
23 | font-size: 36px;
24 | font-weight: normal;
25 | color: #93a1a1; }
26 |
27 | ::selection {
28 | color: #fff;
29 | background: #d33682;
30 | text-shadow: none; }
31 |
32 | .reveal .slides > section,
33 | .reveal .slides > section > section {
34 | line-height: 1.3;
35 | font-weight: inherit; }
36 |
37 | /*********************************************
38 | * HEADERS
39 | *********************************************/
40 | .reveal h1,
41 | .reveal h2,
42 | .reveal h3,
43 | .reveal h4,
44 | .reveal h5,
45 | .reveal h6 {
46 | margin: 0 0 20px 0;
47 | color: #eee8d5;
48 | font-family: "League Gothic", Impact, sans-serif;
49 | font-weight: normal;
50 | line-height: 1.2;
51 | letter-spacing: normal;
52 | text-transform: uppercase;
53 | text-shadow: none;
54 | word-wrap: break-word; }
55 |
56 | .reveal h1 {
57 | font-size: 3.77em; }
58 |
59 | .reveal h2 {
60 | font-size: 2.11em; }
61 |
62 | .reveal h3 {
63 | font-size: 1.55em; }
64 |
65 | .reveal h4 {
66 | font-size: 1em; }
67 |
68 | .reveal h1 {
69 | text-shadow: none; }
70 |
71 | /*********************************************
72 | * OTHER
73 | *********************************************/
74 | .reveal p {
75 | margin: 20px 0;
76 | line-height: 1.3; }
77 |
78 | /* Ensure certain elements are never larger than the slide itself */
79 | .reveal img,
80 | .reveal video,
81 | .reveal iframe {
82 | max-width: 95%;
83 | max-height: 95%; }
84 |
85 | .reveal strong,
86 | .reveal b {
87 | font-weight: bold; }
88 |
89 | .reveal em {
90 | font-style: italic; }
91 |
92 | .reveal ol,
93 | .reveal dl,
94 | .reveal ul {
95 | display: inline-block;
96 | text-align: left;
97 | margin: 0 0 0 1em; }
98 |
99 | .reveal ol {
100 | list-style-type: decimal; }
101 |
102 | .reveal ul {
103 | list-style-type: disc; }
104 |
105 | .reveal ul ul {
106 | list-style-type: square; }
107 |
108 | .reveal ul ul ul {
109 | list-style-type: circle; }
110 |
111 | .reveal ul ul,
112 | .reveal ul ol,
113 | .reveal ol ol,
114 | .reveal ol ul {
115 | display: block;
116 | margin-left: 40px; }
117 |
118 | .reveal dt {
119 | font-weight: bold; }
120 |
121 | .reveal dd {
122 | margin-left: 40px; }
123 |
124 | .reveal q,
125 | .reveal blockquote {
126 | quotes: none; }
127 |
128 | .reveal blockquote {
129 | display: block;
130 | position: relative;
131 | width: 70%;
132 | margin: 20px auto;
133 | padding: 5px;
134 | font-style: italic;
135 | background: rgba(255, 255, 255, 0.05);
136 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
137 |
138 | .reveal blockquote p:first-child,
139 | .reveal blockquote p:last-child {
140 | display: inline-block; }
141 |
142 | .reveal q {
143 | font-style: italic; }
144 |
145 | .reveal pre {
146 | display: block;
147 | position: relative;
148 | width: 90%;
149 | margin: 20px auto;
150 | text-align: left;
151 | font-size: 0.55em;
152 | font-family: monospace;
153 | line-height: 1.2em;
154 | word-wrap: break-word;
155 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
156 |
157 | .reveal code {
158 | font-family: monospace; }
159 |
160 | .reveal pre code {
161 | display: block;
162 | padding: 5px;
163 | overflow: auto;
164 | max-height: 400px;
165 | word-wrap: normal; }
166 |
167 | .reveal table {
168 | margin: auto;
169 | border-collapse: collapse;
170 | border-spacing: 0; }
171 |
172 | .reveal table th {
173 | font-weight: bold; }
174 |
175 | .reveal table th,
176 | .reveal table td {
177 | text-align: left;
178 | padding: 0.2em 0.5em 0.2em 0.5em;
179 | border-bottom: 1px solid; }
180 |
181 | .reveal table th[align="center"],
182 | .reveal table td[align="center"] {
183 | text-align: center; }
184 |
185 | .reveal table th[align="right"],
186 | .reveal table td[align="right"] {
187 | text-align: right; }
188 |
189 | .reveal table tr:last-child td {
190 | border-bottom: none; }
191 |
192 | .reveal sup {
193 | vertical-align: super; }
194 |
195 | .reveal sub {
196 | vertical-align: sub; }
197 |
198 | .reveal small {
199 | display: inline-block;
200 | font-size: 0.6em;
201 | line-height: 1.2em;
202 | vertical-align: top; }
203 |
204 | .reveal small * {
205 | vertical-align: top; }
206 |
207 | /*********************************************
208 | * LINKS
209 | *********************************************/
210 | .reveal a {
211 | color: #268bd2;
212 | text-decoration: none;
213 | -webkit-transition: color .15s ease;
214 | -moz-transition: color .15s ease;
215 | transition: color .15s ease; }
216 |
217 | .reveal a:hover {
218 | color: #78b9e6;
219 | text-shadow: none;
220 | border: none; }
221 |
222 | .reveal .roll span:after {
223 | color: #fff;
224 | background: #1a6091; }
225 |
226 | /*********************************************
227 | * IMAGES
228 | *********************************************/
229 | .reveal section img {
230 | margin: 15px 0px;
231 | background: rgba(255, 255, 255, 0.12);
232 | border: 4px solid #93a1a1;
233 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
234 |
235 | .reveal section img.plain {
236 | border: 0;
237 | box-shadow: none; }
238 |
239 | .reveal a img {
240 | -webkit-transition: all .15s linear;
241 | -moz-transition: all .15s linear;
242 | transition: all .15s linear; }
243 |
244 | .reveal a:hover img {
245 | background: rgba(255, 255, 255, 0.2);
246 | border-color: #268bd2;
247 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
248 |
249 | /*********************************************
250 | * NAVIGATION CONTROLS
251 | *********************************************/
252 | .reveal .controls .navigate-left,
253 | .reveal .controls .navigate-left.enabled {
254 | border-right-color: #268bd2; }
255 |
256 | .reveal .controls .navigate-right,
257 | .reveal .controls .navigate-right.enabled {
258 | border-left-color: #268bd2; }
259 |
260 | .reveal .controls .navigate-up,
261 | .reveal .controls .navigate-up.enabled {
262 | border-bottom-color: #268bd2; }
263 |
264 | .reveal .controls .navigate-down,
265 | .reveal .controls .navigate-down.enabled {
266 | border-top-color: #268bd2; }
267 |
268 | .reveal .controls .navigate-left.enabled:hover {
269 | border-right-color: #78b9e6; }
270 |
271 | .reveal .controls .navigate-right.enabled:hover {
272 | border-left-color: #78b9e6; }
273 |
274 | .reveal .controls .navigate-up.enabled:hover {
275 | border-bottom-color: #78b9e6; }
276 |
277 | .reveal .controls .navigate-down.enabled:hover {
278 | border-top-color: #78b9e6; }
279 |
280 | /*********************************************
281 | * PROGRESS BAR
282 | *********************************************/
283 | .reveal .progress {
284 | background: rgba(0, 0, 0, 0.2); }
285 |
286 | .reveal .progress span {
287 | background: #268bd2;
288 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
289 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
290 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
291 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/night.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Black theme for reveal.js.
3 | *
4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5 | */
6 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700);
7 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
8 | /*********************************************
9 | * GLOBAL STYLES
10 | *********************************************/
11 | body {
12 | background: #111;
13 | background-color: #111; }
14 |
15 | .reveal {
16 | font-family: "Open Sans", sans-serif;
17 | font-size: 30px;
18 | font-weight: normal;
19 | color: #eee; }
20 |
21 | ::selection {
22 | color: #fff;
23 | background: #e7ad52;
24 | text-shadow: none; }
25 |
26 | .reveal .slides > section,
27 | .reveal .slides > section > section {
28 | line-height: 1.3;
29 | font-weight: inherit; }
30 |
31 | /*********************************************
32 | * HEADERS
33 | *********************************************/
34 | .reveal h1,
35 | .reveal h2,
36 | .reveal h3,
37 | .reveal h4,
38 | .reveal h5,
39 | .reveal h6 {
40 | margin: 0 0 20px 0;
41 | color: #eee;
42 | font-family: "Montserrat", Impact, sans-serif;
43 | font-weight: normal;
44 | line-height: 1.2;
45 | letter-spacing: -0.03em;
46 | text-transform: none;
47 | text-shadow: none;
48 | word-wrap: break-word; }
49 |
50 | .reveal h1 {
51 | font-size: 3.77em; }
52 |
53 | .reveal h2 {
54 | font-size: 2.11em; }
55 |
56 | .reveal h3 {
57 | font-size: 1.55em; }
58 |
59 | .reveal h4 {
60 | font-size: 1em; }
61 |
62 | .reveal h1 {
63 | text-shadow: none; }
64 |
65 | /*********************************************
66 | * OTHER
67 | *********************************************/
68 | .reveal p {
69 | margin: 20px 0;
70 | line-height: 1.3; }
71 |
72 | /* Ensure certain elements are never larger than the slide itself */
73 | .reveal img,
74 | .reveal video,
75 | .reveal iframe {
76 | max-width: 95%;
77 | max-height: 95%; }
78 |
79 | .reveal strong,
80 | .reveal b {
81 | font-weight: bold; }
82 |
83 | .reveal em {
84 | font-style: italic; }
85 |
86 | .reveal ol,
87 | .reveal dl,
88 | .reveal ul {
89 | display: inline-block;
90 | text-align: left;
91 | margin: 0 0 0 1em; }
92 |
93 | .reveal ol {
94 | list-style-type: decimal; }
95 |
96 | .reveal ul {
97 | list-style-type: disc; }
98 |
99 | .reveal ul ul {
100 | list-style-type: square; }
101 |
102 | .reveal ul ul ul {
103 | list-style-type: circle; }
104 |
105 | .reveal ul ul,
106 | .reveal ul ol,
107 | .reveal ol ol,
108 | .reveal ol ul {
109 | display: block;
110 | margin-left: 40px; }
111 |
112 | .reveal dt {
113 | font-weight: bold; }
114 |
115 | .reveal dd {
116 | margin-left: 40px; }
117 |
118 | .reveal q,
119 | .reveal blockquote {
120 | quotes: none; }
121 |
122 | .reveal blockquote {
123 | display: block;
124 | position: relative;
125 | width: 70%;
126 | margin: 20px auto;
127 | padding: 5px;
128 | font-style: italic;
129 | background: rgba(255, 255, 255, 0.05);
130 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
131 |
132 | .reveal blockquote p:first-child,
133 | .reveal blockquote p:last-child {
134 | display: inline-block; }
135 |
136 | .reveal q {
137 | font-style: italic; }
138 |
139 | .reveal pre {
140 | display: block;
141 | position: relative;
142 | width: 90%;
143 | margin: 20px auto;
144 | text-align: left;
145 | font-size: 0.55em;
146 | font-family: monospace;
147 | line-height: 1.2em;
148 | word-wrap: break-word;
149 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
150 |
151 | .reveal code {
152 | font-family: monospace; }
153 |
154 | .reveal pre code {
155 | display: block;
156 | padding: 5px;
157 | overflow: auto;
158 | max-height: 400px;
159 | word-wrap: normal; }
160 |
161 | .reveal table {
162 | margin: auto;
163 | border-collapse: collapse;
164 | border-spacing: 0; }
165 |
166 | .reveal table th {
167 | font-weight: bold; }
168 |
169 | .reveal table th,
170 | .reveal table td {
171 | text-align: left;
172 | padding: 0.2em 0.5em 0.2em 0.5em;
173 | border-bottom: 1px solid; }
174 |
175 | .reveal table th[align="center"],
176 | .reveal table td[align="center"] {
177 | text-align: center; }
178 |
179 | .reveal table th[align="right"],
180 | .reveal table td[align="right"] {
181 | text-align: right; }
182 |
183 | .reveal table tr:last-child td {
184 | border-bottom: none; }
185 |
186 | .reveal sup {
187 | vertical-align: super; }
188 |
189 | .reveal sub {
190 | vertical-align: sub; }
191 |
192 | .reveal small {
193 | display: inline-block;
194 | font-size: 0.6em;
195 | line-height: 1.2em;
196 | vertical-align: top; }
197 |
198 | .reveal small * {
199 | vertical-align: top; }
200 |
201 | /*********************************************
202 | * LINKS
203 | *********************************************/
204 | .reveal a {
205 | color: #e7ad52;
206 | text-decoration: none;
207 | -webkit-transition: color .15s ease;
208 | -moz-transition: color .15s ease;
209 | transition: color .15s ease; }
210 |
211 | .reveal a:hover {
212 | color: #f3d7ac;
213 | text-shadow: none;
214 | border: none; }
215 |
216 | .reveal .roll span:after {
217 | color: #fff;
218 | background: #d08a1d; }
219 |
220 | /*********************************************
221 | * IMAGES
222 | *********************************************/
223 | .reveal section img {
224 | margin: 15px 0px;
225 | background: rgba(255, 255, 255, 0.12);
226 | border: 4px solid #eee;
227 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
228 |
229 | .reveal section img.plain {
230 | border: 0;
231 | box-shadow: none; }
232 |
233 | .reveal a img {
234 | -webkit-transition: all .15s linear;
235 | -moz-transition: all .15s linear;
236 | transition: all .15s linear; }
237 |
238 | .reveal a:hover img {
239 | background: rgba(255, 255, 255, 0.2);
240 | border-color: #e7ad52;
241 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
242 |
243 | /*********************************************
244 | * NAVIGATION CONTROLS
245 | *********************************************/
246 | .reveal .controls .navigate-left,
247 | .reveal .controls .navigate-left.enabled {
248 | border-right-color: #e7ad52; }
249 |
250 | .reveal .controls .navigate-right,
251 | .reveal .controls .navigate-right.enabled {
252 | border-left-color: #e7ad52; }
253 |
254 | .reveal .controls .navigate-up,
255 | .reveal .controls .navigate-up.enabled {
256 | border-bottom-color: #e7ad52; }
257 |
258 | .reveal .controls .navigate-down,
259 | .reveal .controls .navigate-down.enabled {
260 | border-top-color: #e7ad52; }
261 |
262 | .reveal .controls .navigate-left.enabled:hover {
263 | border-right-color: #f3d7ac; }
264 |
265 | .reveal .controls .navigate-right.enabled:hover {
266 | border-left-color: #f3d7ac; }
267 |
268 | .reveal .controls .navigate-up.enabled:hover {
269 | border-bottom-color: #f3d7ac; }
270 |
271 | .reveal .controls .navigate-down.enabled:hover {
272 | border-top-color: #f3d7ac; }
273 |
274 | /*********************************************
275 | * PROGRESS BAR
276 | *********************************************/
277 | .reveal .progress {
278 | background: rgba(0, 0, 0, 0.2); }
279 |
280 | .reveal .progress span {
281 | background: #e7ad52;
282 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
283 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
284 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
285 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/serif.css:
--------------------------------------------------------------------------------
1 | /**
2 | * A simple theme for reveal.js presentations, similar
3 | * to the default theme. The accent color is brown.
4 | *
5 | * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.
6 | */
7 | .reveal a {
8 | line-height: 1.3em; }
9 |
10 | /*********************************************
11 | * GLOBAL STYLES
12 | *********************************************/
13 | body {
14 | background: #F0F1EB;
15 | background-color: #F0F1EB; }
16 |
17 | .reveal {
18 | font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
19 | font-size: 36px;
20 | font-weight: normal;
21 | color: #000; }
22 |
23 | ::selection {
24 | color: #fff;
25 | background: #26351C;
26 | text-shadow: none; }
27 |
28 | .reveal .slides > section,
29 | .reveal .slides > section > section {
30 | line-height: 1.3;
31 | font-weight: inherit; }
32 |
33 | /*********************************************
34 | * HEADERS
35 | *********************************************/
36 | .reveal h1,
37 | .reveal h2,
38 | .reveal h3,
39 | .reveal h4,
40 | .reveal h5,
41 | .reveal h6 {
42 | margin: 0 0 20px 0;
43 | color: #383D3D;
44 | font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif;
45 | font-weight: normal;
46 | line-height: 1.2;
47 | letter-spacing: normal;
48 | text-transform: none;
49 | text-shadow: none;
50 | word-wrap: break-word; }
51 |
52 | .reveal h1 {
53 | font-size: 3.77em; }
54 |
55 | .reveal h2 {
56 | font-size: 2.11em; }
57 |
58 | .reveal h3 {
59 | font-size: 1.55em; }
60 |
61 | .reveal h4 {
62 | font-size: 1em; }
63 |
64 | .reveal h1 {
65 | text-shadow: none; }
66 |
67 | /*********************************************
68 | * OTHER
69 | *********************************************/
70 | .reveal p {
71 | margin: 20px 0;
72 | line-height: 1.3; }
73 |
74 | /* Ensure certain elements are never larger than the slide itself */
75 | .reveal img,
76 | .reveal video,
77 | .reveal iframe {
78 | max-width: 95%;
79 | max-height: 95%; }
80 |
81 | .reveal strong,
82 | .reveal b {
83 | font-weight: bold; }
84 |
85 | .reveal em {
86 | font-style: italic; }
87 |
88 | .reveal ol,
89 | .reveal dl,
90 | .reveal ul {
91 | display: inline-block;
92 | text-align: left;
93 | margin: 0 0 0 1em; }
94 |
95 | .reveal ol {
96 | list-style-type: decimal; }
97 |
98 | .reveal ul {
99 | list-style-type: disc; }
100 |
101 | .reveal ul ul {
102 | list-style-type: square; }
103 |
104 | .reveal ul ul ul {
105 | list-style-type: circle; }
106 |
107 | .reveal ul ul,
108 | .reveal ul ol,
109 | .reveal ol ol,
110 | .reveal ol ul {
111 | display: block;
112 | margin-left: 40px; }
113 |
114 | .reveal dt {
115 | font-weight: bold; }
116 |
117 | .reveal dd {
118 | margin-left: 40px; }
119 |
120 | .reveal q,
121 | .reveal blockquote {
122 | quotes: none; }
123 |
124 | .reveal blockquote {
125 | display: block;
126 | position: relative;
127 | width: 70%;
128 | margin: 20px auto;
129 | padding: 5px;
130 | font-style: italic;
131 | background: rgba(255, 255, 255, 0.05);
132 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
133 |
134 | .reveal blockquote p:first-child,
135 | .reveal blockquote p:last-child {
136 | display: inline-block; }
137 |
138 | .reveal q {
139 | font-style: italic; }
140 |
141 | .reveal pre {
142 | display: block;
143 | position: relative;
144 | width: 90%;
145 | margin: 20px auto;
146 | text-align: left;
147 | font-size: 0.55em;
148 | font-family: monospace;
149 | line-height: 1.2em;
150 | word-wrap: break-word;
151 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
152 |
153 | .reveal code {
154 | font-family: monospace; }
155 |
156 | .reveal pre code {
157 | display: block;
158 | padding: 5px;
159 | overflow: auto;
160 | max-height: 400px;
161 | word-wrap: normal; }
162 |
163 | .reveal table {
164 | margin: auto;
165 | border-collapse: collapse;
166 | border-spacing: 0; }
167 |
168 | .reveal table th {
169 | font-weight: bold; }
170 |
171 | .reveal table th,
172 | .reveal table td {
173 | text-align: left;
174 | padding: 0.2em 0.5em 0.2em 0.5em;
175 | border-bottom: 1px solid; }
176 |
177 | .reveal table th[align="center"],
178 | .reveal table td[align="center"] {
179 | text-align: center; }
180 |
181 | .reveal table th[align="right"],
182 | .reveal table td[align="right"] {
183 | text-align: right; }
184 |
185 | .reveal table tr:last-child td {
186 | border-bottom: none; }
187 |
188 | .reveal sup {
189 | vertical-align: super; }
190 |
191 | .reveal sub {
192 | vertical-align: sub; }
193 |
194 | .reveal small {
195 | display: inline-block;
196 | font-size: 0.6em;
197 | line-height: 1.2em;
198 | vertical-align: top; }
199 |
200 | .reveal small * {
201 | vertical-align: top; }
202 |
203 | /*********************************************
204 | * LINKS
205 | *********************************************/
206 | .reveal a {
207 | color: #51483D;
208 | text-decoration: none;
209 | -webkit-transition: color .15s ease;
210 | -moz-transition: color .15s ease;
211 | transition: color .15s ease; }
212 |
213 | .reveal a:hover {
214 | color: #8b7c69;
215 | text-shadow: none;
216 | border: none; }
217 |
218 | .reveal .roll span:after {
219 | color: #fff;
220 | background: #25211c; }
221 |
222 | /*********************************************
223 | * IMAGES
224 | *********************************************/
225 | .reveal section img {
226 | margin: 15px 0px;
227 | background: rgba(255, 255, 255, 0.12);
228 | border: 4px solid #000;
229 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
230 |
231 | .reveal section img.plain {
232 | border: 0;
233 | box-shadow: none; }
234 |
235 | .reveal a img {
236 | -webkit-transition: all .15s linear;
237 | -moz-transition: all .15s linear;
238 | transition: all .15s linear; }
239 |
240 | .reveal a:hover img {
241 | background: rgba(255, 255, 255, 0.2);
242 | border-color: #51483D;
243 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
244 |
245 | /*********************************************
246 | * NAVIGATION CONTROLS
247 | *********************************************/
248 | .reveal .controls .navigate-left,
249 | .reveal .controls .navigate-left.enabled {
250 | border-right-color: #51483D; }
251 |
252 | .reveal .controls .navigate-right,
253 | .reveal .controls .navigate-right.enabled {
254 | border-left-color: #51483D; }
255 |
256 | .reveal .controls .navigate-up,
257 | .reveal .controls .navigate-up.enabled {
258 | border-bottom-color: #51483D; }
259 |
260 | .reveal .controls .navigate-down,
261 | .reveal .controls .navigate-down.enabled {
262 | border-top-color: #51483D; }
263 |
264 | .reveal .controls .navigate-left.enabled:hover {
265 | border-right-color: #8b7c69; }
266 |
267 | .reveal .controls .navigate-right.enabled:hover {
268 | border-left-color: #8b7c69; }
269 |
270 | .reveal .controls .navigate-up.enabled:hover {
271 | border-bottom-color: #8b7c69; }
272 |
273 | .reveal .controls .navigate-down.enabled:hover {
274 | border-top-color: #8b7c69; }
275 |
276 | /*********************************************
277 | * PROGRESS BAR
278 | *********************************************/
279 | .reveal .progress {
280 | background: rgba(0, 0, 0, 0.2); }
281 |
282 | .reveal .progress span {
283 | background: #51483D;
284 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
285 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
286 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
287 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/simple.css:
--------------------------------------------------------------------------------
1 | /**
2 | * A simple theme for reveal.js presentations, similar
3 | * to the default theme. The accent color is darkblue.
4 | *
5 | * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
6 | * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7 | */
8 | @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
9 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
10 | /*********************************************
11 | * GLOBAL STYLES
12 | *********************************************/
13 | body {
14 | background: #fff;
15 | background-color: #fff; }
16 |
17 | .reveal {
18 | font-family: "Lato", sans-serif;
19 | font-size: 36px;
20 | font-weight: normal;
21 | color: #000; }
22 |
23 | ::selection {
24 | color: #fff;
25 | background: rgba(0, 0, 0, 0.99);
26 | text-shadow: none; }
27 |
28 | .reveal .slides > section,
29 | .reveal .slides > section > section {
30 | line-height: 1.3;
31 | font-weight: inherit; }
32 |
33 | /*********************************************
34 | * HEADERS
35 | *********************************************/
36 | .reveal h1,
37 | .reveal h2,
38 | .reveal h3,
39 | .reveal h4,
40 | .reveal h5,
41 | .reveal h6 {
42 | margin: 0 0 20px 0;
43 | color: #000;
44 | font-family: "News Cycle", Impact, sans-serif;
45 | font-weight: normal;
46 | line-height: 1.2;
47 | letter-spacing: normal;
48 | text-transform: none;
49 | text-shadow: none;
50 | word-wrap: break-word; }
51 |
52 | .reveal h1 {
53 | font-size: 3.77em; }
54 |
55 | .reveal h2 {
56 | font-size: 2.11em; }
57 |
58 | .reveal h3 {
59 | font-size: 1.55em; }
60 |
61 | .reveal h4 {
62 | font-size: 1em; }
63 |
64 | .reveal h1 {
65 | text-shadow: none; }
66 |
67 | /*********************************************
68 | * OTHER
69 | *********************************************/
70 | .reveal p {
71 | margin: 20px 0;
72 | line-height: 1.3; }
73 |
74 | /* Ensure certain elements are never larger than the slide itself */
75 | .reveal img,
76 | .reveal video,
77 | .reveal iframe {
78 | max-width: 95%;
79 | max-height: 95%; }
80 |
81 | .reveal strong,
82 | .reveal b {
83 | font-weight: bold; }
84 |
85 | .reveal em {
86 | font-style: italic; }
87 |
88 | .reveal ol,
89 | .reveal dl,
90 | .reveal ul {
91 | display: inline-block;
92 | text-align: left;
93 | margin: 0 0 0 1em; }
94 |
95 | .reveal ol {
96 | list-style-type: decimal; }
97 |
98 | .reveal ul {
99 | list-style-type: disc; }
100 |
101 | .reveal ul ul {
102 | list-style-type: square; }
103 |
104 | .reveal ul ul ul {
105 | list-style-type: circle; }
106 |
107 | .reveal ul ul,
108 | .reveal ul ol,
109 | .reveal ol ol,
110 | .reveal ol ul {
111 | display: block;
112 | margin-left: 40px; }
113 |
114 | .reveal dt {
115 | font-weight: bold; }
116 |
117 | .reveal dd {
118 | margin-left: 40px; }
119 |
120 | .reveal q,
121 | .reveal blockquote {
122 | quotes: none; }
123 |
124 | .reveal blockquote {
125 | display: block;
126 | position: relative;
127 | width: 70%;
128 | margin: 20px auto;
129 | padding: 5px;
130 | font-style: italic;
131 | background: rgba(255, 255, 255, 0.05);
132 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
133 |
134 | .reveal blockquote p:first-child,
135 | .reveal blockquote p:last-child {
136 | display: inline-block; }
137 |
138 | .reveal q {
139 | font-style: italic; }
140 |
141 | .reveal pre {
142 | display: block;
143 | position: relative;
144 | width: 90%;
145 | margin: 20px auto;
146 | text-align: left;
147 | font-size: 0.55em;
148 | font-family: monospace;
149 | line-height: 1.2em;
150 | word-wrap: break-word;
151 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
152 |
153 | .reveal code {
154 | font-family: monospace; }
155 |
156 | .reveal pre code {
157 | display: block;
158 | padding: 5px;
159 | overflow: auto;
160 | max-height: 400px;
161 | word-wrap: normal; }
162 |
163 | .reveal table {
164 | margin: auto;
165 | border-collapse: collapse;
166 | border-spacing: 0; }
167 |
168 | .reveal table th {
169 | font-weight: bold; }
170 |
171 | .reveal table th,
172 | .reveal table td {
173 | text-align: left;
174 | padding: 0.2em 0.5em 0.2em 0.5em;
175 | border-bottom: 1px solid; }
176 |
177 | .reveal table th[align="center"],
178 | .reveal table td[align="center"] {
179 | text-align: center; }
180 |
181 | .reveal table th[align="right"],
182 | .reveal table td[align="right"] {
183 | text-align: right; }
184 |
185 | .reveal table tr:last-child td {
186 | border-bottom: none; }
187 |
188 | .reveal sup {
189 | vertical-align: super; }
190 |
191 | .reveal sub {
192 | vertical-align: sub; }
193 |
194 | .reveal small {
195 | display: inline-block;
196 | font-size: 0.6em;
197 | line-height: 1.2em;
198 | vertical-align: top; }
199 |
200 | .reveal small * {
201 | vertical-align: top; }
202 |
203 | /*********************************************
204 | * LINKS
205 | *********************************************/
206 | .reveal a {
207 | color: #00008B;
208 | text-decoration: none;
209 | -webkit-transition: color .15s ease;
210 | -moz-transition: color .15s ease;
211 | transition: color .15s ease; }
212 |
213 | .reveal a:hover {
214 | color: #0000f1;
215 | text-shadow: none;
216 | border: none; }
217 |
218 | .reveal .roll span:after {
219 | color: #fff;
220 | background: #00003f; }
221 |
222 | /*********************************************
223 | * IMAGES
224 | *********************************************/
225 | .reveal section img {
226 | margin: 15px 0px;
227 | background: rgba(255, 255, 255, 0.12);
228 | border: 4px solid #000;
229 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
230 |
231 | .reveal section img.plain {
232 | border: 0;
233 | box-shadow: none; }
234 |
235 | .reveal a img {
236 | -webkit-transition: all .15s linear;
237 | -moz-transition: all .15s linear;
238 | transition: all .15s linear; }
239 |
240 | .reveal a:hover img {
241 | background: rgba(255, 255, 255, 0.2);
242 | border-color: #00008B;
243 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
244 |
245 | /*********************************************
246 | * NAVIGATION CONTROLS
247 | *********************************************/
248 | .reveal .controls .navigate-left,
249 | .reveal .controls .navigate-left.enabled {
250 | border-right-color: #00008B; }
251 |
252 | .reveal .controls .navigate-right,
253 | .reveal .controls .navigate-right.enabled {
254 | border-left-color: #00008B; }
255 |
256 | .reveal .controls .navigate-up,
257 | .reveal .controls .navigate-up.enabled {
258 | border-bottom-color: #00008B; }
259 |
260 | .reveal .controls .navigate-down,
261 | .reveal .controls .navigate-down.enabled {
262 | border-top-color: #00008B; }
263 |
264 | .reveal .controls .navigate-left.enabled:hover {
265 | border-right-color: #0000f1; }
266 |
267 | .reveal .controls .navigate-right.enabled:hover {
268 | border-left-color: #0000f1; }
269 |
270 | .reveal .controls .navigate-up.enabled:hover {
271 | border-bottom-color: #0000f1; }
272 |
273 | .reveal .controls .navigate-down.enabled:hover {
274 | border-top-color: #0000f1; }
275 |
276 | /*********************************************
277 | * PROGRESS BAR
278 | *********************************************/
279 | .reveal .progress {
280 | background: rgba(0, 0, 0, 0.2); }
281 |
282 | .reveal .progress span {
283 | background: #00008B;
284 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
285 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
286 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
287 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/solarized.css:
--------------------------------------------------------------------------------
1 | /**
2 | * Solarized Light theme for reveal.js.
3 | * Author: Achim Staebler
4 | */
5 | @import url(../../lib/font/league-gothic/league-gothic.css);
6 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
7 | /**
8 | * Solarized colors by Ethan Schoonover
9 | */
10 | html * {
11 | color-profile: sRGB;
12 | rendering-intent: auto; }
13 |
14 | /*********************************************
15 | * GLOBAL STYLES
16 | *********************************************/
17 | body {
18 | background: #fdf6e3;
19 | background-color: #fdf6e3; }
20 |
21 | .reveal {
22 | font-family: "Lato", sans-serif;
23 | font-size: 36px;
24 | font-weight: normal;
25 | color: #657b83; }
26 |
27 | ::selection {
28 | color: #fff;
29 | background: #d33682;
30 | text-shadow: none; }
31 |
32 | .reveal .slides > section,
33 | .reveal .slides > section > section {
34 | line-height: 1.3;
35 | font-weight: inherit; }
36 |
37 | /*********************************************
38 | * HEADERS
39 | *********************************************/
40 | .reveal h1,
41 | .reveal h2,
42 | .reveal h3,
43 | .reveal h4,
44 | .reveal h5,
45 | .reveal h6 {
46 | margin: 0 0 20px 0;
47 | color: #586e75;
48 | font-family: "League Gothic", Impact, sans-serif;
49 | font-weight: normal;
50 | line-height: 1.2;
51 | letter-spacing: normal;
52 | text-transform: uppercase;
53 | text-shadow: none;
54 | word-wrap: break-word; }
55 |
56 | .reveal h1 {
57 | font-size: 3.77em; }
58 |
59 | .reveal h2 {
60 | font-size: 2.11em; }
61 |
62 | .reveal h3 {
63 | font-size: 1.55em; }
64 |
65 | .reveal h4 {
66 | font-size: 1em; }
67 |
68 | .reveal h1 {
69 | text-shadow: none; }
70 |
71 | /*********************************************
72 | * OTHER
73 | *********************************************/
74 | .reveal p {
75 | margin: 20px 0;
76 | line-height: 1.3; }
77 |
78 | /* Ensure certain elements are never larger than the slide itself */
79 | .reveal img,
80 | .reveal video,
81 | .reveal iframe {
82 | max-width: 95%;
83 | max-height: 95%; }
84 |
85 | .reveal strong,
86 | .reveal b {
87 | font-weight: bold; }
88 |
89 | .reveal em {
90 | font-style: italic; }
91 |
92 | .reveal ol,
93 | .reveal dl,
94 | .reveal ul {
95 | display: inline-block;
96 | text-align: left;
97 | margin: 0 0 0 1em; }
98 |
99 | .reveal ol {
100 | list-style-type: decimal; }
101 |
102 | .reveal ul {
103 | list-style-type: disc; }
104 |
105 | .reveal ul ul {
106 | list-style-type: square; }
107 |
108 | .reveal ul ul ul {
109 | list-style-type: circle; }
110 |
111 | .reveal ul ul,
112 | .reveal ul ol,
113 | .reveal ol ol,
114 | .reveal ol ul {
115 | display: block;
116 | margin-left: 40px; }
117 |
118 | .reveal dt {
119 | font-weight: bold; }
120 |
121 | .reveal dd {
122 | margin-left: 40px; }
123 |
124 | .reveal q,
125 | .reveal blockquote {
126 | quotes: none; }
127 |
128 | .reveal blockquote {
129 | display: block;
130 | position: relative;
131 | width: 70%;
132 | margin: 20px auto;
133 | padding: 5px;
134 | font-style: italic;
135 | background: rgba(255, 255, 255, 0.05);
136 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
137 |
138 | .reveal blockquote p:first-child,
139 | .reveal blockquote p:last-child {
140 | display: inline-block; }
141 |
142 | .reveal q {
143 | font-style: italic; }
144 |
145 | .reveal pre {
146 | display: block;
147 | position: relative;
148 | width: 90%;
149 | margin: 20px auto;
150 | text-align: left;
151 | font-size: 0.55em;
152 | font-family: monospace;
153 | line-height: 1.2em;
154 | word-wrap: break-word;
155 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
156 |
157 | .reveal code {
158 | font-family: monospace; }
159 |
160 | .reveal pre code {
161 | display: block;
162 | padding: 5px;
163 | overflow: auto;
164 | max-height: 400px;
165 | word-wrap: normal; }
166 |
167 | .reveal table {
168 | margin: auto;
169 | border-collapse: collapse;
170 | border-spacing: 0; }
171 |
172 | .reveal table th {
173 | font-weight: bold; }
174 |
175 | .reveal table th,
176 | .reveal table td {
177 | text-align: left;
178 | padding: 0.2em 0.5em 0.2em 0.5em;
179 | border-bottom: 1px solid; }
180 |
181 | .reveal table th[align="center"],
182 | .reveal table td[align="center"] {
183 | text-align: center; }
184 |
185 | .reveal table th[align="right"],
186 | .reveal table td[align="right"] {
187 | text-align: right; }
188 |
189 | .reveal table tr:last-child td {
190 | border-bottom: none; }
191 |
192 | .reveal sup {
193 | vertical-align: super; }
194 |
195 | .reveal sub {
196 | vertical-align: sub; }
197 |
198 | .reveal small {
199 | display: inline-block;
200 | font-size: 0.6em;
201 | line-height: 1.2em;
202 | vertical-align: top; }
203 |
204 | .reveal small * {
205 | vertical-align: top; }
206 |
207 | /*********************************************
208 | * LINKS
209 | *********************************************/
210 | .reveal a {
211 | color: #268bd2;
212 | text-decoration: none;
213 | -webkit-transition: color .15s ease;
214 | -moz-transition: color .15s ease;
215 | transition: color .15s ease; }
216 |
217 | .reveal a:hover {
218 | color: #78b9e6;
219 | text-shadow: none;
220 | border: none; }
221 |
222 | .reveal .roll span:after {
223 | color: #fff;
224 | background: #1a6091; }
225 |
226 | /*********************************************
227 | * IMAGES
228 | *********************************************/
229 | .reveal section img {
230 | margin: 15px 0px;
231 | background: rgba(255, 255, 255, 0.12);
232 | border: 4px solid #657b83;
233 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
234 |
235 | .reveal section img.plain {
236 | border: 0;
237 | box-shadow: none; }
238 |
239 | .reveal a img {
240 | -webkit-transition: all .15s linear;
241 | -moz-transition: all .15s linear;
242 | transition: all .15s linear; }
243 |
244 | .reveal a:hover img {
245 | background: rgba(255, 255, 255, 0.2);
246 | border-color: #268bd2;
247 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
248 |
249 | /*********************************************
250 | * NAVIGATION CONTROLS
251 | *********************************************/
252 | .reveal .controls .navigate-left,
253 | .reveal .controls .navigate-left.enabled {
254 | border-right-color: #268bd2; }
255 |
256 | .reveal .controls .navigate-right,
257 | .reveal .controls .navigate-right.enabled {
258 | border-left-color: #268bd2; }
259 |
260 | .reveal .controls .navigate-up,
261 | .reveal .controls .navigate-up.enabled {
262 | border-bottom-color: #268bd2; }
263 |
264 | .reveal .controls .navigate-down,
265 | .reveal .controls .navigate-down.enabled {
266 | border-top-color: #268bd2; }
267 |
268 | .reveal .controls .navigate-left.enabled:hover {
269 | border-right-color: #78b9e6; }
270 |
271 | .reveal .controls .navigate-right.enabled:hover {
272 | border-left-color: #78b9e6; }
273 |
274 | .reveal .controls .navigate-up.enabled:hover {
275 | border-bottom-color: #78b9e6; }
276 |
277 | .reveal .controls .navigate-down.enabled:hover {
278 | border-top-color: #78b9e6; }
279 |
280 | /*********************************************
281 | * PROGRESS BAR
282 | *********************************************/
283 | .reveal .progress {
284 | background: rgba(0, 0, 0, 0.2); }
285 |
286 | .reveal .progress span {
287 | background: #268bd2;
288 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
289 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
290 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
291 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/source/beige.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Beige theme for reveal.js.
3 | *
4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5 | */
6 |
7 |
8 | // Default mixins and settings -----------------
9 | @import "../template/mixins";
10 | @import "../template/settings";
11 | // ---------------------------------------------
12 |
13 |
14 |
15 | // Include theme-specific fonts
16 | @import url(../../lib/font/league-gothic/league-gothic.css);
17 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
18 |
19 |
20 | // Override theme settings (see ../template/settings.scss)
21 | $mainColor: #333;
22 | $headingColor: #333;
23 | $headingTextShadow: none;
24 | $backgroundColor: #f7f3de;
25 | $linkColor: #8b743d;
26 | $linkColorHover: lighten( $linkColor, 20% );
27 | $selectionBackgroundColor: rgba(79, 64, 28, 0.99);
28 | $heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);
29 |
30 | // Background generator
31 | @mixin bodyBackground() {
32 | @include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) );
33 | }
34 |
35 |
36 |
37 | // Theme template ------------------------------
38 | @import "../template/theme";
39 | // ---------------------------------------------
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/source/black.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Black theme for reveal.js. This is the opposite of the 'white' theme.
3 | *
4 | * Copyright (C) 2015 Hakim El Hattab, http://hakim.se
5 | */
6 |
7 |
8 | // Default mixins and settings -----------------
9 | @import "../template/mixins";
10 | @import "../template/settings";
11 | // ---------------------------------------------
12 |
13 |
14 | // Include theme-specific fonts
15 | @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
16 |
17 |
18 | // Override theme settings (see ../template/settings.scss)
19 | $backgroundColor: #222;
20 |
21 | $mainColor: #fff;
22 | $headingColor: #fff;
23 |
24 | $mainFontSize: 38px;
25 | $mainFont: 'Source Sans Pro', Helvetica, sans-serif;
26 | $headingFont: 'Source Sans Pro', Helvetica, sans-serif;
27 | $headingTextShadow: none;
28 | $headingLetterSpacing: normal;
29 | $headingTextTransform: uppercase;
30 | $headingFontWeight: 600;
31 | $linkColor: #42affa;
32 | $linkColorHover: lighten( $linkColor, 15% );
33 | $selectionBackgroundColor: lighten( $linkColor, 25% );
34 |
35 | $heading1Size: 2.5em;
36 | $heading2Size: 1.6em;
37 | $heading3Size: 1.3em;
38 | $heading4Size: 1.0em;
39 |
40 | section.has-light-background {
41 | &, h1, h2, h3, h4, h5, h6 {
42 | color: #222;
43 | }
44 | }
45 |
46 |
47 | // Theme template ------------------------------
48 | @import "../template/theme";
49 | // ---------------------------------------------
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/source/blood.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Blood theme for reveal.js
3 | * Author: Walther http://github.com/Walther
4 | *
5 | * Designed to be used with highlight.js theme
6 | * "monokai_sublime.css" available from
7 | * https://github.com/isagalaev/highlight.js/
8 | *
9 | * For other themes, change $codeBackground accordingly.
10 | *
11 | */
12 |
13 | // Default mixins and settings -----------------
14 | @import "../template/mixins";
15 | @import "../template/settings";
16 | // ---------------------------------------------
17 |
18 | // Include theme-specific fonts
19 |
20 | @import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);
21 |
22 | // Colors used in the theme
23 | $blood: #a23;
24 | $coal: #222;
25 | $codeBackground: #23241f;
26 |
27 | $backgroundColor: $coal;
28 |
29 | // Main text
30 | $mainFont: Ubuntu, 'sans-serif';
31 | $mainFontSize: 36px;
32 | $mainColor: #eee;
33 |
34 | // Headings
35 | $headingFont: Ubuntu, 'sans-serif';
36 | $headingTextShadow: 2px 2px 2px $coal;
37 |
38 | // h1 shadow, borrowed humbly from
39 | // (c) Default theme by Hakim El Hattab
40 | $heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);
41 |
42 | // Links
43 | $linkColor: $blood;
44 | $linkColorHover: lighten( $linkColor, 20% );
45 |
46 | // Text selection
47 | $selectionBackgroundColor: $blood;
48 | $selectionColor: #fff;
49 |
50 |
51 | // Theme template ------------------------------
52 | @import "../template/theme";
53 | // ---------------------------------------------
54 |
55 | // some overrides after theme template import
56 |
57 | .reveal p {
58 | font-weight: 300;
59 | text-shadow: 1px 1px $coal;
60 | }
61 |
62 | .reveal h1,
63 | .reveal h2,
64 | .reveal h3,
65 | .reveal h4,
66 | .reveal h5,
67 | .reveal h6 {
68 | font-weight: 700;
69 | }
70 |
71 | .reveal p code {
72 | background-color: $codeBackground;
73 | display: inline-block;
74 | border-radius: 7px;
75 | }
76 |
77 | .reveal small code {
78 | vertical-align: baseline;
79 | }
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/source/esri-dev-summit-2016.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * A simple theme for reveal.js presentations, similar
3 | * to the default theme. The accent color is darkblue.
4 | *
5 | * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
6 | * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7 | */
8 |
9 | // Default mixins and settings -----------------
10 | @import "../template/mixins";
11 | @import "../template/settings";
12 | // ---------------------------------------------
13 |
14 | // Include theme-specific fonts
15 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
16 |
17 | // Override theme settings (see ../template/settings.scss)
18 | $mainFont: 'Lato', sans-serif;
19 | $mainColor: #FFFFFF;
20 | $headingFont: 'Lato', sans-serif;
21 | $headingColor: #FFFFFF;
22 | $headingTextShadow: none;
23 | $headingTextTransform: none;
24 | $backgroundColor: #3F3F3F;
25 | $linkColor: #21AEDB;
26 | $linkColorHover: lighten( $linkColor, 20% );
27 | $selectionBackgroundColor: rgba(0, 0, 0, 0.99);
28 | $mainFontSize: 42px;
29 |
30 | $heading1Size: 2.074em;
31 | $heading2Size: 1.728em;
32 | $heading3Size: 1.44em;
33 | $heading4Size: 1.00em;
34 |
35 | // Theme template ------------------------------
36 | @import "../template/theme";
37 | // ---------------------------------------------
38 |
39 | .reveal pre {
40 | font-size: auto;
41 | }
42 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/source/league.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * League theme for reveal.js.
3 | *
4 | * This was the default theme pre-3.0.0.
5 | *
6 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7 | */
8 |
9 |
10 | // Default mixins and settings -----------------
11 | @import "../template/mixins";
12 | @import "../template/settings";
13 | // ---------------------------------------------
14 |
15 |
16 |
17 | // Include theme-specific fonts
18 | @import url(../../lib/font/league-gothic/league-gothic.css);
19 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
20 |
21 | // Override theme settings (see ../template/settings.scss)
22 | $headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2);
23 | $heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);
24 |
25 | // Background generator
26 | @mixin bodyBackground() {
27 | @include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) );
28 | }
29 |
30 |
31 |
32 | // Theme template ------------------------------
33 | @import "../template/theme";
34 | // ---------------------------------------------
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/source/moon.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Solarized Dark theme for reveal.js.
3 | * Author: Achim Staebler
4 | */
5 |
6 |
7 | // Default mixins and settings -----------------
8 | @import "../template/mixins";
9 | @import "../template/settings";
10 | // ---------------------------------------------
11 |
12 |
13 |
14 | // Include theme-specific fonts
15 | @import url(../../lib/font/league-gothic/league-gothic.css);
16 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
17 |
18 | /**
19 | * Solarized colors by Ethan Schoonover
20 | */
21 | html * {
22 | color-profile: sRGB;
23 | rendering-intent: auto;
24 | }
25 |
26 | // Solarized colors
27 | $base03: #002b36;
28 | $base02: #073642;
29 | $base01: #586e75;
30 | $base00: #657b83;
31 | $base0: #839496;
32 | $base1: #93a1a1;
33 | $base2: #eee8d5;
34 | $base3: #fdf6e3;
35 | $yellow: #b58900;
36 | $orange: #cb4b16;
37 | $red: #dc322f;
38 | $magenta: #d33682;
39 | $violet: #6c71c4;
40 | $blue: #268bd2;
41 | $cyan: #2aa198;
42 | $green: #859900;
43 |
44 | // Override theme settings (see ../template/settings.scss)
45 | $mainColor: $base1;
46 | $headingColor: $base2;
47 | $headingTextShadow: none;
48 | $backgroundColor: $base03;
49 | $linkColor: $blue;
50 | $linkColorHover: lighten( $linkColor, 20% );
51 | $selectionBackgroundColor: $magenta;
52 |
53 |
54 |
55 | // Theme template ------------------------------
56 | @import "../template/theme";
57 | // ---------------------------------------------
58 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/source/night.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Black theme for reveal.js.
3 | *
4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5 | */
6 |
7 |
8 | // Default mixins and settings -----------------
9 | @import "../template/mixins";
10 | @import "../template/settings";
11 | // ---------------------------------------------
12 |
13 |
14 | // Include theme-specific fonts
15 | @import url(https://fonts.googleapis.com/css?family=Montserrat:700);
16 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);
17 |
18 |
19 | // Override theme settings (see ../template/settings.scss)
20 | $backgroundColor: #111;
21 |
22 | $mainFont: 'Open Sans', sans-serif;
23 | $linkColor: #e7ad52;
24 | $linkColorHover: lighten( $linkColor, 20% );
25 | $headingFont: 'Montserrat', Impact, sans-serif;
26 | $headingTextShadow: none;
27 | $headingLetterSpacing: -0.03em;
28 | $headingTextTransform: none;
29 | $selectionBackgroundColor: #e7ad52;
30 | $mainFontSize: 30px;
31 |
32 |
33 | // Theme template ------------------------------
34 | @import "../template/theme";
35 | // ---------------------------------------------
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/source/serif.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * A simple theme for reveal.js presentations, similar
3 | * to the default theme. The accent color is brown.
4 | *
5 | * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.
6 | */
7 |
8 |
9 | // Default mixins and settings -----------------
10 | @import "../template/mixins";
11 | @import "../template/settings";
12 | // ---------------------------------------------
13 |
14 |
15 |
16 | // Override theme settings (see ../template/settings.scss)
17 | $mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
18 | $mainColor: #000;
19 | $headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
20 | $headingColor: #383D3D;
21 | $headingTextShadow: none;
22 | $headingTextTransform: none;
23 | $backgroundColor: #F0F1EB;
24 | $linkColor: #51483D;
25 | $linkColorHover: lighten( $linkColor, 20% );
26 | $selectionBackgroundColor: #26351C;
27 |
28 | .reveal a {
29 | line-height: 1.3em;
30 | }
31 |
32 |
33 | // Theme template ------------------------------
34 | @import "../template/theme";
35 | // ---------------------------------------------
36 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/source/simple.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * A simple theme for reveal.js presentations, similar
3 | * to the default theme. The accent color is darkblue.
4 | *
5 | * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.
6 | * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7 | */
8 |
9 |
10 | // Default mixins and settings -----------------
11 | @import "../template/mixins";
12 | @import "../template/settings";
13 | // ---------------------------------------------
14 |
15 |
16 |
17 | // Include theme-specific fonts
18 | @import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);
19 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
20 |
21 |
22 | // Override theme settings (see ../template/settings.scss)
23 | $mainFont: 'Lato', sans-serif;
24 | $mainColor: #000;
25 | $headingFont: 'News Cycle', Impact, sans-serif;
26 | $headingColor: #000;
27 | $headingTextShadow: none;
28 | $headingTextTransform: none;
29 | $backgroundColor: #fff;
30 | $linkColor: #00008B;
31 | $linkColorHover: lighten( $linkColor, 20% );
32 | $selectionBackgroundColor: rgba(0, 0, 0, 0.99);
33 |
34 |
35 |
36 | // Theme template ------------------------------
37 | @import "../template/theme";
38 | // ---------------------------------------------
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/source/sky.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Sky theme for reveal.js.
3 | *
4 | * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
5 | */
6 |
7 |
8 | // Default mixins and settings -----------------
9 | @import "../template/mixins";
10 | @import "../template/settings";
11 | // ---------------------------------------------
12 |
13 |
14 |
15 | // Include theme-specific fonts
16 | @import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);
17 | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);
18 |
19 |
20 | // Override theme settings (see ../template/settings.scss)
21 | $mainFont: 'Open Sans', sans-serif;
22 | $mainColor: #333;
23 | $headingFont: 'Quicksand', sans-serif;
24 | $headingColor: #333;
25 | $headingLetterSpacing: -0.08em;
26 | $headingTextShadow: none;
27 | $backgroundColor: #f7fbfc;
28 | $linkColor: #3b759e;
29 | $linkColorHover: lighten( $linkColor, 20% );
30 | $selectionBackgroundColor: #134674;
31 |
32 | // Fix links so they are not cut off
33 | .reveal a {
34 | line-height: 1.3em;
35 | }
36 |
37 | // Background generator
38 | @mixin bodyBackground() {
39 | @include radial-gradient( #add9e4, #f7fbfc );
40 | }
41 |
42 |
43 |
44 | // Theme template ------------------------------
45 | @import "../template/theme";
46 | // ---------------------------------------------
47 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/source/solarized.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Solarized Light theme for reveal.js.
3 | * Author: Achim Staebler
4 | */
5 |
6 |
7 | // Default mixins and settings -----------------
8 | @import "../template/mixins";
9 | @import "../template/settings";
10 | // ---------------------------------------------
11 |
12 |
13 |
14 | // Include theme-specific fonts
15 | @import url(../../lib/font/league-gothic/league-gothic.css);
16 | @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
17 |
18 |
19 | /**
20 | * Solarized colors by Ethan Schoonover
21 | */
22 | html * {
23 | color-profile: sRGB;
24 | rendering-intent: auto;
25 | }
26 |
27 | // Solarized colors
28 | $base03: #002b36;
29 | $base02: #073642;
30 | $base01: #586e75;
31 | $base00: #657b83;
32 | $base0: #839496;
33 | $base1: #93a1a1;
34 | $base2: #eee8d5;
35 | $base3: #fdf6e3;
36 | $yellow: #b58900;
37 | $orange: #cb4b16;
38 | $red: #dc322f;
39 | $magenta: #d33682;
40 | $violet: #6c71c4;
41 | $blue: #268bd2;
42 | $cyan: #2aa198;
43 | $green: #859900;
44 |
45 | // Override theme settings (see ../template/settings.scss)
46 | $mainColor: $base00;
47 | $headingColor: $base01;
48 | $headingTextShadow: none;
49 | $backgroundColor: $base3;
50 | $linkColor: $blue;
51 | $linkColorHover: lighten( $linkColor, 20% );
52 | $selectionBackgroundColor: $magenta;
53 |
54 | // Background generator
55 | // @mixin bodyBackground() {
56 | // @include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) );
57 | // }
58 |
59 |
60 |
61 | // Theme template ------------------------------
62 | @import "../template/theme";
63 | // ---------------------------------------------
64 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/source/white.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * White theme for reveal.js. This is the opposite of the 'black' theme.
3 | *
4 | * Copyright (C) 2015 Hakim El Hattab, http://hakim.se
5 | */
6 |
7 |
8 | // Default mixins and settings -----------------
9 | @import "../template/mixins";
10 | @import "../template/settings";
11 | // ---------------------------------------------
12 |
13 |
14 | // Include theme-specific fonts
15 | @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
16 |
17 |
18 | // Override theme settings (see ../template/settings.scss)
19 | $backgroundColor: #fff;
20 |
21 | $mainColor: #222;
22 | $headingColor: #222;
23 |
24 | $mainFontSize: 38px;
25 | $mainFont: 'Source Sans Pro', Helvetica, sans-serif;
26 | $headingFont: 'Source Sans Pro', Helvetica, sans-serif;
27 | $headingTextShadow: none;
28 | $headingLetterSpacing: normal;
29 | $headingTextTransform: uppercase;
30 | $headingFontWeight: 600;
31 | $linkColor: #2a76dd;
32 | $linkColorHover: lighten( $linkColor, 15% );
33 | $selectionBackgroundColor: lighten( $linkColor, 25% );
34 |
35 | $heading1Size: 2.5em;
36 | $heading2Size: 1.6em;
37 | $heading3Size: 1.3em;
38 | $heading4Size: 1.0em;
39 |
40 | section.has-dark-background {
41 | &, h1, h2, h3, h4, h5, h6 {
42 | color: #fff;
43 | }
44 | }
45 |
46 |
47 | // Theme template ------------------------------
48 | @import "../template/theme";
49 | // ---------------------------------------------
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/template/mixins.scss:
--------------------------------------------------------------------------------
1 | @mixin vertical-gradient( $top, $bottom ) {
2 | background: $top;
3 | background: -moz-linear-gradient( top, $top 0%, $bottom 100% );
4 | background: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) );
5 | background: -webkit-linear-gradient( top, $top 0%, $bottom 100% );
6 | background: -o-linear-gradient( top, $top 0%, $bottom 100% );
7 | background: -ms-linear-gradient( top, $top 0%, $bottom 100% );
8 | background: linear-gradient( top, $top 0%, $bottom 100% );
9 | }
10 |
11 | @mixin horizontal-gradient( $top, $bottom ) {
12 | background: $top;
13 | background: -moz-linear-gradient( left, $top 0%, $bottom 100% );
14 | background: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) );
15 | background: -webkit-linear-gradient( left, $top 0%, $bottom 100% );
16 | background: -o-linear-gradient( left, $top 0%, $bottom 100% );
17 | background: -ms-linear-gradient( left, $top 0%, $bottom 100% );
18 | background: linear-gradient( left, $top 0%, $bottom 100% );
19 | }
20 |
21 | @mixin radial-gradient( $outer, $inner, $type: circle ) {
22 | background: $outer;
23 | background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
24 | background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) );
25 | background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
26 | background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
27 | background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
28 | background: radial-gradient( center, $type cover, $inner 0%, $outer 100% );
29 | }
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/template/settings.scss:
--------------------------------------------------------------------------------
1 | // Base settings for all themes that can optionally be
2 | // overridden by the super-theme
3 |
4 | // Background of the presentation
5 | $backgroundColor: #2b2b2b;
6 |
7 | // Primary/body text
8 | $mainFont: 'Lato', sans-serif;
9 | $mainFontSize: 36px;
10 | $mainColor: #eee;
11 |
12 | // Vertical spacing between blocks of text
13 | $blockMargin: 20px;
14 |
15 | // Headings
16 | $headingMargin: 0 0 $blockMargin 0;
17 | $headingFont: 'League Gothic', Impact, sans-serif;
18 | $headingColor: #eee;
19 | $headingLineHeight: 1.2;
20 | $headingLetterSpacing: normal;
21 | $headingTextTransform: uppercase;
22 | $headingTextShadow: none;
23 | $headingFontWeight: normal;
24 | $heading1TextShadow: $headingTextShadow;
25 |
26 | $heading1Size: 3.77em;
27 | $heading2Size: 2.11em;
28 | $heading3Size: 1.55em;
29 | $heading4Size: 1.00em;
30 |
31 | // Links and actions
32 | $linkColor: #13DAEC;
33 | $linkColorHover: lighten( $linkColor, 20% );
34 |
35 | // Text selection
36 | $selectionBackgroundColor: #FF5E99;
37 | $selectionColor: #fff;
38 |
39 | // Generates the presentation background, can be overridden
40 | // to return a background image or gradient
41 | @mixin bodyBackground() {
42 | background: $backgroundColor;
43 | }
--------------------------------------------------------------------------------
/src/slides/reveal.js/css/theme/white.css:
--------------------------------------------------------------------------------
1 | /**
2 | * White theme for reveal.js. This is the opposite of the 'black' theme.
3 | *
4 | * Copyright (C) 2015 Hakim El Hattab, http://hakim.se
5 | */
6 | @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
7 | section.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {
8 | color: #fff; }
9 |
10 | /*********************************************
11 | * GLOBAL STYLES
12 | *********************************************/
13 | body {
14 | background: #fff;
15 | background-color: #fff; }
16 |
17 | .reveal {
18 | font-family: "Source Sans Pro", Helvetica, sans-serif;
19 | font-size: 38px;
20 | font-weight: normal;
21 | color: #222; }
22 |
23 | ::selection {
24 | color: #fff;
25 | background: #98bdef;
26 | text-shadow: none; }
27 |
28 | .reveal .slides > section,
29 | .reveal .slides > section > section {
30 | line-height: 1.3;
31 | font-weight: inherit; }
32 |
33 | /*********************************************
34 | * HEADERS
35 | *********************************************/
36 | .reveal h1,
37 | .reveal h2,
38 | .reveal h3,
39 | .reveal h4,
40 | .reveal h5,
41 | .reveal h6 {
42 | margin: 0 0 20px 0;
43 | color: #222;
44 | font-family: "Source Sans Pro", Helvetica, sans-serif;
45 | font-weight: 600;
46 | line-height: 1.2;
47 | letter-spacing: normal;
48 | text-transform: uppercase;
49 | text-shadow: none;
50 | word-wrap: break-word; }
51 |
52 | .reveal h1 {
53 | font-size: 2.5em; }
54 |
55 | .reveal h2 {
56 | font-size: 1.6em; }
57 |
58 | .reveal h3 {
59 | font-size: 1.3em; }
60 |
61 | .reveal h4 {
62 | font-size: 1em; }
63 |
64 | .reveal h1 {
65 | text-shadow: none; }
66 |
67 | /*********************************************
68 | * OTHER
69 | *********************************************/
70 | .reveal p {
71 | margin: 20px 0;
72 | line-height: 1.3; }
73 |
74 | /* Ensure certain elements are never larger than the slide itself */
75 | .reveal img,
76 | .reveal video,
77 | .reveal iframe {
78 | max-width: 95%;
79 | max-height: 95%; }
80 |
81 | .reveal strong,
82 | .reveal b {
83 | font-weight: bold; }
84 |
85 | .reveal em {
86 | font-style: italic; }
87 |
88 | .reveal ol,
89 | .reveal dl,
90 | .reveal ul {
91 | display: inline-block;
92 | text-align: left;
93 | margin: 0 0 0 1em; }
94 |
95 | .reveal ol {
96 | list-style-type: decimal; }
97 |
98 | .reveal ul {
99 | list-style-type: disc; }
100 |
101 | .reveal ul ul {
102 | list-style-type: square; }
103 |
104 | .reveal ul ul ul {
105 | list-style-type: circle; }
106 |
107 | .reveal ul ul,
108 | .reveal ul ol,
109 | .reveal ol ol,
110 | .reveal ol ul {
111 | display: block;
112 | margin-left: 40px; }
113 |
114 | .reveal dt {
115 | font-weight: bold; }
116 |
117 | .reveal dd {
118 | margin-left: 40px; }
119 |
120 | .reveal q,
121 | .reveal blockquote {
122 | quotes: none; }
123 |
124 | .reveal blockquote {
125 | display: block;
126 | position: relative;
127 | width: 70%;
128 | margin: 20px auto;
129 | padding: 5px;
130 | font-style: italic;
131 | background: rgba(255, 255, 255, 0.05);
132 | box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
133 |
134 | .reveal blockquote p:first-child,
135 | .reveal blockquote p:last-child {
136 | display: inline-block; }
137 |
138 | .reveal q {
139 | font-style: italic; }
140 |
141 | .reveal pre {
142 | display: block;
143 | position: relative;
144 | width: 90%;
145 | margin: 20px auto;
146 | text-align: left;
147 | font-size: 0.55em;
148 | font-family: monospace;
149 | line-height: 1.2em;
150 | word-wrap: break-word;
151 | box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }
152 |
153 | .reveal code {
154 | font-family: monospace; }
155 |
156 | .reveal pre code {
157 | display: block;
158 | padding: 5px;
159 | overflow: auto;
160 | max-height: 400px;
161 | word-wrap: normal; }
162 |
163 | .reveal table {
164 | margin: auto;
165 | border-collapse: collapse;
166 | border-spacing: 0; }
167 |
168 | .reveal table th {
169 | font-weight: bold; }
170 |
171 | .reveal table th,
172 | .reveal table td {
173 | text-align: left;
174 | padding: 0.2em 0.5em 0.2em 0.5em;
175 | border-bottom: 1px solid; }
176 |
177 | .reveal table th[align="center"],
178 | .reveal table td[align="center"] {
179 | text-align: center; }
180 |
181 | .reveal table th[align="right"],
182 | .reveal table td[align="right"] {
183 | text-align: right; }
184 |
185 | .reveal table tr:last-child td {
186 | border-bottom: none; }
187 |
188 | .reveal sup {
189 | vertical-align: super; }
190 |
191 | .reveal sub {
192 | vertical-align: sub; }
193 |
194 | .reveal small {
195 | display: inline-block;
196 | font-size: 0.6em;
197 | line-height: 1.2em;
198 | vertical-align: top; }
199 |
200 | .reveal small * {
201 | vertical-align: top; }
202 |
203 | /*********************************************
204 | * LINKS
205 | *********************************************/
206 | .reveal a {
207 | color: #2a76dd;
208 | text-decoration: none;
209 | -webkit-transition: color .15s ease;
210 | -moz-transition: color .15s ease;
211 | transition: color .15s ease; }
212 |
213 | .reveal a:hover {
214 | color: #6ca0e8;
215 | text-shadow: none;
216 | border: none; }
217 |
218 | .reveal .roll span:after {
219 | color: #fff;
220 | background: #1a53a1; }
221 |
222 | /*********************************************
223 | * IMAGES
224 | *********************************************/
225 | .reveal section img {
226 | margin: 15px 0px;
227 | background: rgba(255, 255, 255, 0.12);
228 | border: 4px solid #222;
229 | box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
230 |
231 | .reveal section img.plain {
232 | border: 0;
233 | box-shadow: none; }
234 |
235 | .reveal a img {
236 | -webkit-transition: all .15s linear;
237 | -moz-transition: all .15s linear;
238 | transition: all .15s linear; }
239 |
240 | .reveal a:hover img {
241 | background: rgba(255, 255, 255, 0.2);
242 | border-color: #2a76dd;
243 | box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
244 |
245 | /*********************************************
246 | * NAVIGATION CONTROLS
247 | *********************************************/
248 | .reveal .controls .navigate-left,
249 | .reveal .controls .navigate-left.enabled {
250 | border-right-color: #2a76dd; }
251 |
252 | .reveal .controls .navigate-right,
253 | .reveal .controls .navigate-right.enabled {
254 | border-left-color: #2a76dd; }
255 |
256 | .reveal .controls .navigate-up,
257 | .reveal .controls .navigate-up.enabled {
258 | border-bottom-color: #2a76dd; }
259 |
260 | .reveal .controls .navigate-down,
261 | .reveal .controls .navigate-down.enabled {
262 | border-top-color: #2a76dd; }
263 |
264 | .reveal .controls .navigate-left.enabled:hover {
265 | border-right-color: #6ca0e8; }
266 |
267 | .reveal .controls .navigate-right.enabled:hover {
268 | border-left-color: #6ca0e8; }
269 |
270 | .reveal .controls .navigate-up.enabled:hover {
271 | border-bottom-color: #6ca0e8; }
272 |
273 | .reveal .controls .navigate-down.enabled:hover {
274 | border-top-color: #6ca0e8; }
275 |
276 | /*********************************************
277 | * PROGRESS BAR
278 | *********************************************/
279 | .reveal .progress {
280 | background: rgba(0, 0, 0, 0.2); }
281 |
282 | .reveal .progress span {
283 | background: #2a76dd;
284 | -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
285 | -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
286 | transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
287 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/img/bg-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/img/bg-1.png
--------------------------------------------------------------------------------
/src/slides/reveal.js/img/bg-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/img/bg-2.png
--------------------------------------------------------------------------------
/src/slides/reveal.js/img/bg-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/img/bg-3.png
--------------------------------------------------------------------------------
/src/slides/reveal.js/img/bg-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/img/bg-4.png
--------------------------------------------------------------------------------
/src/slides/reveal.js/img/bg-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/img/bg-5.png
--------------------------------------------------------------------------------
/src/slides/reveal.js/img/bg-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/img/bg-6.png
--------------------------------------------------------------------------------
/src/slides/reveal.js/img/bg-7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/img/bg-7.png
--------------------------------------------------------------------------------
/src/slides/reveal.js/img/end.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/img/end.png
--------------------------------------------------------------------------------
/src/slides/reveal.js/img/title.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/img/title.png
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/css/solarized_dark.css:
--------------------------------------------------------------------------------
1 | /*
2 |
3 | Orginal Style from ethanschoonover.com/solarized (c) Jeremy Hull
4 |
5 | */
6 |
7 | .hljs {
8 | display: block;
9 | overflow-x: auto;
10 | padding: 0.5em;
11 | background: #002b36;
12 | color: #839496;
13 | -webkit-text-size-adjust: none;
14 | }
15 |
16 | .hljs-comment,
17 | .diff .hljs-header,
18 | .hljs-doctype,
19 | .hljs-pi,
20 | .lisp .hljs-string {
21 | color: #586e75;
22 | }
23 |
24 | /* Solarized Green */
25 | .hljs-keyword,
26 | .hljs-winutils,
27 | .method,
28 | .hljs-addition,
29 | .css .hljs-tag,
30 | .hljs-request,
31 | .hljs-status,
32 | .nginx .hljs-title {
33 | color: #859900;
34 | }
35 |
36 | /* Solarized Cyan */
37 | .hljs-number,
38 | .hljs-command,
39 | .hljs-string,
40 | .hljs-tag .hljs-value,
41 | .hljs-rule .hljs-value,
42 | .hljs-doctag,
43 | .tex .hljs-formula,
44 | .hljs-regexp,
45 | .hljs-hexcolor,
46 | .hljs-link_url {
47 | color: #2aa198;
48 | }
49 |
50 | /* Solarized Blue */
51 | .hljs-title,
52 | .hljs-localvars,
53 | .hljs-chunk,
54 | .hljs-decorator,
55 | .hljs-built_in,
56 | .hljs-identifier,
57 | .vhdl .hljs-literal,
58 | .hljs-id,
59 | .css .hljs-function,
60 | .hljs-name {
61 | color: #268bd2;
62 | }
63 |
64 | /* Solarized Yellow */
65 | .hljs-attribute,
66 | .hljs-variable,
67 | .lisp .hljs-body,
68 | .smalltalk .hljs-number,
69 | .hljs-constant,
70 | .hljs-class .hljs-title,
71 | .hljs-parent,
72 | .hljs-type,
73 | .hljs-link_reference {
74 | color: #b58900;
75 | }
76 |
77 | /* Solarized Orange */
78 | .hljs-preprocessor,
79 | .hljs-preprocessor .hljs-keyword,
80 | .hljs-pragma,
81 | .hljs-shebang,
82 | .hljs-symbol,
83 | .hljs-symbol .hljs-string,
84 | .diff .hljs-change,
85 | .hljs-special,
86 | .hljs-attr_selector,
87 | .hljs-subst,
88 | .hljs-cdata,
89 | .css .hljs-pseudo,
90 | .hljs-header {
91 | color: #cb4b16;
92 | }
93 |
94 | /* Solarized Red */
95 | .hljs-deletion,
96 | .hljs-important {
97 | color: #dc322f;
98 | }
99 |
100 | /* Solarized Violet */
101 | .hljs-link_label {
102 | color: #6c71c4;
103 | }
104 |
105 | .tex .hljs-formula {
106 | background: #073642;
107 | }
108 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/css/zenburn.css:
--------------------------------------------------------------------------------
1 | /*
2 | Zenburn style from voldmar.ru (c) Vladimir Epifanov
3 | based on dark.css by Ivan Sagalaev
4 | */
5 |
6 | .hljs {
7 | display: block;
8 | overflow-x: auto;
9 | padding: 0.5em;
10 | background: #3f3f3f;
11 | color: #dcdcdc;
12 | -webkit-text-size-adjust: none;
13 | }
14 |
15 | .hljs-keyword,
16 | .hljs-tag,
17 | .css .hljs-class,
18 | .css .hljs-id,
19 | .lisp .hljs-title,
20 | .nginx .hljs-title,
21 | .hljs-request,
22 | .hljs-status,
23 | .clojure .hljs-attribute {
24 | color: #e3ceab;
25 | }
26 |
27 | .django .hljs-template_tag,
28 | .django .hljs-variable,
29 | .django .hljs-filter .hljs-argument {
30 | color: #dcdcdc;
31 | }
32 |
33 | .hljs-number,
34 | .hljs-date {
35 | color: #8cd0d3;
36 | }
37 |
38 | .dos .hljs-envvar,
39 | .dos .hljs-stream,
40 | .hljs-variable,
41 | .apache .hljs-sqbracket,
42 | .hljs-name {
43 | color: #efdcbc;
44 | }
45 |
46 | .dos .hljs-flow,
47 | .diff .hljs-change,
48 | .python .exception,
49 | .python .hljs-built_in,
50 | .hljs-literal,
51 | .tex .hljs-special {
52 | color: #efefaf;
53 | }
54 |
55 | .diff .hljs-chunk,
56 | .hljs-subst {
57 | color: #8f8f8f;
58 | }
59 |
60 | .dos .hljs-keyword,
61 | .hljs-decorator,
62 | .hljs-title,
63 | .hljs-type,
64 | .diff .hljs-header,
65 | .ruby .hljs-class .hljs-parent,
66 | .apache .hljs-tag,
67 | .nginx .hljs-built_in,
68 | .tex .hljs-command,
69 | .hljs-prompt {
70 | color: #efef8f;
71 | }
72 |
73 | .dos .hljs-winutils,
74 | .ruby .hljs-symbol,
75 | .ruby .hljs-symbol .hljs-string,
76 | .ruby .hljs-string {
77 | color: #dca3a3;
78 | }
79 |
80 | .diff .hljs-deletion,
81 | .hljs-string,
82 | .hljs-tag .hljs-value,
83 | .hljs-preprocessor,
84 | .hljs-pragma,
85 | .hljs-built_in,
86 | .smalltalk .hljs-class,
87 | .smalltalk .hljs-localvars,
88 | .smalltalk .hljs-array,
89 | .css .hljs-rule .hljs-value,
90 | .hljs-attr_selector,
91 | .hljs-pseudo,
92 | .apache .hljs-cbracket,
93 | .tex .hljs-formula,
94 | .coffeescript .hljs-attribute {
95 | color: #cc9393;
96 | }
97 |
98 | .hljs-shebang,
99 | .diff .hljs-addition,
100 | .hljs-comment,
101 | .hljs-annotation,
102 | .hljs-pi,
103 | .hljs-doctype {
104 | color: #7f9f7f;
105 | }
106 |
107 | .coffeescript .javascript,
108 | .javascript .xml,
109 | .tex .hljs-formula,
110 | .xml .javascript,
111 | .xml .vbscript,
112 | .xml .css,
113 | .xml .hljs-cdata {
114 | opacity: 0.5;
115 | }
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/league-gothic/LICENSE:
--------------------------------------------------------------------------------
1 | SIL Open Font License (OFL)
2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
3 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/league-gothic/league-gothic.css:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: 'League Gothic';
3 | src: url('league-gothic.eot');
4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'),
5 | url('league-gothic.woff') format('woff'),
6 | url('league-gothic.ttf') format('truetype');
7 |
8 | font-weight: normal;
9 | font-style: normal;
10 | }
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/league-gothic/league-gothic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/league-gothic/league-gothic.eot
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/league-gothic/league-gothic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/league-gothic/league-gothic.ttf
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/league-gothic/league-gothic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/league-gothic/league-gothic.woff
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/source-sans-pro/LICENSE:
--------------------------------------------------------------------------------
1 | SIL Open Font License
2 |
3 | Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name ‘Source’. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.
4 |
5 | This Font Software is licensed under the SIL Open Font License, Version 1.1.
6 | This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL
7 |
8 | —————————————————————————————-
9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
10 | —————————————————————————————-
11 |
12 | PREAMBLE
13 | The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.
14 |
15 | The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.
16 |
17 | DEFINITIONS
18 | “Font Software” refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.
19 |
20 | “Reserved Font Name” refers to any names specified as such after the copyright statement(s).
21 |
22 | “Original Version” refers to the collection of Font Software components as distributed by the Copyright Holder(s).
23 |
24 | “Modified Version” refers to any derivative made by adding to, deleting, or substituting—in part or in whole—any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.
25 |
26 | “Author” refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.
27 |
28 | PERMISSION & CONDITIONS
29 | Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:
30 |
31 | 1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.
32 |
33 | 2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.
34 |
35 | 3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.
36 |
37 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.
38 |
39 | 5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.
40 |
41 | TERMINATION
42 | This license becomes null and void if any of the above conditions are not met.
43 |
44 | DISCLAIMER
45 | THE FONT SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/font/source-sans-pro/source-sans-pro.css:
--------------------------------------------------------------------------------
1 | @font-face {
2 | font-family: 'Source Sans Pro';
3 | src: url('source-sans-pro-regular.eot');
4 | src: url('source-sans-pro-regular.eot?#iefix') format('embedded-opentype'),
5 | url('source-sans-pro-regular.woff') format('woff'),
6 | url('source-sans-pro-regular.ttf') format('truetype');
7 | font-weight: normal;
8 | font-style: normal;
9 | }
10 |
11 | @font-face {
12 | font-family: 'Source Sans Pro';
13 | src: url('source-sans-pro-italic.eot');
14 | src: url('source-sans-pro-italic.eot?#iefix') format('embedded-opentype'),
15 | url('source-sans-pro-italic.woff') format('woff'),
16 | url('source-sans-pro-italic.ttf') format('truetype');
17 | font-weight: normal;
18 | font-style: italic;
19 | }
20 |
21 | @font-face {
22 | font-family: 'Source Sans Pro';
23 | src: url('source-sans-pro-semibold.eot');
24 | src: url('source-sans-pro-semibold.eot?#iefix') format('embedded-opentype'),
25 | url('source-sans-pro-semibold.woff') format('woff'),
26 | url('source-sans-pro-semibold.ttf') format('truetype');
27 | font-weight: 600;
28 | font-style: normal;
29 | }
30 |
31 | @font-face {
32 | font-family: 'Source Sans Pro';
33 | src: url('source-sans-pro-semibolditalic.eot');
34 | src: url('source-sans-pro-semibolditalic.eot?#iefix') format('embedded-opentype'),
35 | url('source-sans-pro-semibolditalic.woff') format('woff'),
36 | url('source-sans-pro-semibolditalic.ttf') format('truetype');
37 | font-weight: 600;
38 | font-style: italic;
39 | }
--------------------------------------------------------------------------------
/src/slides/reveal.js/lib/js/classList.js:
--------------------------------------------------------------------------------
1 | /*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js*/
2 | if(typeof document!=="undefined"&&!("classList" in document.createElement("a"))){(function(j){var a="classList",f="prototype",m=(j.HTMLElement||j.Element)[f],b=Object,k=String[f].trim||function(){return this.replace(/^\s+|\s+$/g,"")},c=Array[f].indexOf||function(q){var p=0,o=this.length;for(;p
3 | Copyright Tero Piirainen (tipiirai)
4 | License MIT / http://bit.ly/mit-license
5 | Version 0.96
6 |
7 | http://headjs.com
8 | */(function(a){function z(){d||(d=!0,s(e,function(a){p(a)}))}function y(c,d){var e=a.createElement("script");e.type="text/"+(c.type||"javascript"),e.src=c.src||c,e.async=!1,e.onreadystatechange=e.onload=function(){var a=e.readyState;!d.done&&(!a||/loaded|complete/.test(a))&&(d.done=!0,d())},(a.body||b).appendChild(e)}function x(a,b){if(a.state==o)return b&&b();if(a.state==n)return k.ready(a.name,b);if(a.state==m)return a.onpreload.push(function(){x(a,b)});a.state=n,y(a.url,function(){a.state=o,b&&b(),s(g[a.name],function(a){p(a)}),u()&&d&&s(g.ALL,function(a){p(a)})})}function w(a,b){a.state===undefined&&(a.state=m,a.onpreload=[],y({src:a.url,type:"cache"},function(){v(a)}))}function v(a){a.state=l,s(a.onpreload,function(a){a.call()})}function u(a){a=a||h;var b;for(var c in a){if(a.hasOwnProperty(c)&&a[c].state!=o)return!1;b=!0}return b}function t(a){return Object.prototype.toString.call(a)=="[object Function]"}function s(a,b){if(!!a){typeof a=="object"&&(a=[].slice.call(a));for(var c=0;c
2 |
3 |
4 |
5 |
6 |
7 | reveal.js - Markdown Demo
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
37 |
38 |
39 |
55 |
56 |
57 |
70 |
71 |
72 |
78 |
79 |
80 |
87 |
88 |
89 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
127 |
128 |
129 |
130 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/plugin/markdown/example.md:
--------------------------------------------------------------------------------
1 | # Markdown Demo
2 |
3 |
4 |
5 | ## External 1.1
6 |
7 | Content 1.1
8 |
9 | Note: This will only appear in the speaker notes window.
10 |
11 |
12 | ## External 1.2
13 |
14 | Content 1.2
15 |
16 |
17 |
18 | ## External 2
19 |
20 | Content 2.1
21 |
22 |
23 |
24 | ## External 3.1
25 |
26 | Content 3.1
27 |
28 |
29 | ## External 3.2
30 |
31 | Content 3.2
32 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/plugin/math/math.js:
--------------------------------------------------------------------------------
1 | /**
2 | * A plugin which enables rendering of math equations inside
3 | * of reveal.js slides. Essentially a thin wrapper for MathJax.
4 | *
5 | * @author Hakim El Hattab
6 | */
7 | var RevealMath = window.RevealMath || (function(){
8 |
9 | var options = Reveal.getConfig().math || {};
10 | options.mathjax = options.mathjax || 'https://cdn.mathjax.org/mathjax/latest/MathJax.js';
11 | options.config = options.config || 'TeX-AMS_HTML-full';
12 |
13 | loadScript( options.mathjax + '?config=' + options.config, function() {
14 |
15 | MathJax.Hub.Config({
16 | messageStyle: 'none',
17 | tex2jax: {
18 | inlineMath: [['$','$'],['\\(','\\)']] ,
19 | skipTags: ['script','noscript','style','textarea','pre']
20 | },
21 | skipStartupTypeset: true
22 | });
23 |
24 | // Typeset followed by an immediate reveal.js layout since
25 | // the typesetting process could affect slide height
26 | MathJax.Hub.Queue( [ 'Typeset', MathJax.Hub ] );
27 | MathJax.Hub.Queue( Reveal.layout );
28 |
29 | // Reprocess equations in slides when they turn visible
30 | Reveal.addEventListener( 'slidechanged', function( event ) {
31 |
32 | MathJax.Hub.Queue( [ 'Typeset', MathJax.Hub, event.currentSlide ] );
33 |
34 | } );
35 |
36 | } );
37 |
38 | function loadScript( url, callback ) {
39 |
40 | var head = document.querySelector( 'head' );
41 | var script = document.createElement( 'script' );
42 | script.type = 'text/javascript';
43 | script.src = url;
44 |
45 | // Wrapper for callback to make sure it only fires once
46 | var finish = function() {
47 | if( typeof callback === 'function' ) {
48 | callback.call();
49 | callback = null;
50 | }
51 | }
52 |
53 | script.onload = finish;
54 |
55 | // IE
56 | script.onreadystatechange = function() {
57 | if ( this.readyState === 'loaded' ) {
58 | finish();
59 | }
60 | }
61 |
62 | // Normal browsers
63 | head.appendChild( script );
64 |
65 | }
66 |
67 | })();
68 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/plugin/multiplex/client.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | var multiplex = Reveal.getConfig().multiplex;
3 | var socketId = multiplex.id;
4 | var socket = io.connect(multiplex.url);
5 |
6 | socket.on(multiplex.id, function(data) {
7 | // ignore data from sockets that aren't ours
8 | if (data.socketId !== socketId) { return; }
9 | if( window.location.host === 'localhost:1947' ) return;
10 |
11 | Reveal.setState(data.state);
12 | });
13 | }());
14 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/plugin/multiplex/index.js:
--------------------------------------------------------------------------------
1 | var http = require('http');
2 | var express = require('express');
3 | var fs = require('fs');
4 | var io = require('socket.io');
5 | var crypto = require('crypto');
6 |
7 | var app = express();
8 | var staticDir = express.static;
9 | var server = http.createServer(app);
10 |
11 | io = io(server);
12 |
13 | var opts = {
14 | port: process.env.PORT || 1948,
15 | baseDir : __dirname + '/../../'
16 | };
17 |
18 | io.on( 'connection', function( socket ) {
19 | socket.on('multiplex-statechanged', function(data) {
20 | if (typeof data.secret == 'undefined' || data.secret == null || data.secret === '') return;
21 | if (createHash(data.secret) === data.socketId) {
22 | data.secret = null;
23 | socket.broadcast.emit(data.socketId, data);
24 | };
25 | });
26 | });
27 |
28 | [ 'css', 'js', 'plugin', 'lib' ].forEach(function(dir) {
29 | app.use('/' + dir, staticDir(opts.baseDir + dir));
30 | });
31 |
32 | app.get("/", function(req, res) {
33 | res.writeHead(200, {'Content-Type': 'text/html'});
34 | fs.createReadStream(opts.baseDir + '/index.html').pipe(res);
35 | });
36 |
37 | app.get("/token", function(req,res) {
38 | var ts = new Date().getTime();
39 | var rand = Math.floor(Math.random()*9999999);
40 | var secret = ts.toString() + rand.toString();
41 | res.send({secret: secret, socketId: createHash(secret)});
42 | });
43 |
44 | var createHash = function(secret) {
45 | var cipher = crypto.createCipher('blowfish', secret);
46 | return(cipher.final('hex'));
47 | };
48 |
49 | // Actually listen
50 | server.listen( opts.port || null );
51 |
52 | var brown = '\033[33m',
53 | green = '\033[32m',
54 | reset = '\033[0m';
55 |
56 | console.log( brown + "reveal.js:" + reset + " Multiplex running on port " + green + opts.port + reset );
--------------------------------------------------------------------------------
/src/slides/reveal.js/plugin/multiplex/master.js:
--------------------------------------------------------------------------------
1 | (function() {
2 |
3 | // Don't emit events from inside of notes windows
4 | if ( window.location.search.match( /receiver/gi ) ) { return; }
5 |
6 | var multiplex = Reveal.getConfig().multiplex;
7 |
8 | var socket = io.connect( multiplex.url );
9 |
10 | function post() {
11 |
12 | var messageData = {
13 | state: Reveal.getState(),
14 | secret: multiplex.secret,
15 | socketId: multiplex.id
16 | };
17 |
18 | socket.emit( 'multiplex-statechanged', messageData );
19 |
20 | };
21 |
22 | // Monitor events that trigger a change in state
23 | Reveal.addEventListener( 'slidechanged', post );
24 | Reveal.addEventListener( 'fragmentshown', post );
25 | Reveal.addEventListener( 'fragmenthidden', post );
26 | Reveal.addEventListener( 'overviewhidden', post );
27 | Reveal.addEventListener( 'overviewshown', post );
28 | Reveal.addEventListener( 'paused', post );
29 | Reveal.addEventListener( 'resumed', post );
30 |
31 | }());
--------------------------------------------------------------------------------
/src/slides/reveal.js/plugin/notes-server/client.js:
--------------------------------------------------------------------------------
1 | (function() {
2 |
3 | // don't emit events from inside the previews themselves
4 | if( window.location.search.match( /receiver/gi ) ) { return; }
5 |
6 | var socket = io.connect( window.location.origin ),
7 | socketId = Math.random().toString().slice( 2 );
8 |
9 | console.log( 'View slide notes at ' + window.location.origin + '/notes/' + socketId );
10 |
11 | window.open( window.location.origin + '/notes/' + socketId, 'notes-' + socketId );
12 |
13 | /**
14 | * Posts the current slide data to the notes window
15 | */
16 | function post() {
17 |
18 | var slideElement = Reveal.getCurrentSlide(),
19 | notesElement = slideElement.querySelector( 'aside.notes' );
20 |
21 | var messageData = {
22 | notes: '',
23 | markdown: false,
24 | socketId: socketId,
25 | state: Reveal.getState()
26 | };
27 |
28 | // Look for notes defined in a slide attribute
29 | if( slideElement.hasAttribute( 'data-notes' ) ) {
30 | messageData.notes = slideElement.getAttribute( 'data-notes' );
31 | }
32 |
33 | // Look for notes defined in an aside element
34 | if( notesElement ) {
35 | messageData.notes = notesElement.innerHTML;
36 | messageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';
37 | }
38 |
39 | socket.emit( 'statechanged', messageData );
40 |
41 | }
42 |
43 | // When a new notes window connects, post our current state
44 | socket.on( 'new-subscriber', function( data ) {
45 | post();
46 | } );
47 |
48 | // When the state changes from inside of the speaker view
49 | socket.on( 'statechanged-speaker', function( data ) {
50 | Reveal.setState( data.state );
51 | } );
52 |
53 | // Monitor events that trigger a change in state
54 | Reveal.addEventListener( 'slidechanged', post );
55 | Reveal.addEventListener( 'fragmentshown', post );
56 | Reveal.addEventListener( 'fragmenthidden', post );
57 | Reveal.addEventListener( 'overviewhidden', post );
58 | Reveal.addEventListener( 'overviewshown', post );
59 | Reveal.addEventListener( 'paused', post );
60 | Reveal.addEventListener( 'resumed', post );
61 |
62 | // Post the initial state
63 | post();
64 |
65 | }());
66 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/plugin/notes-server/index.js:
--------------------------------------------------------------------------------
1 | var http = require('http');
2 | var express = require('express');
3 | var fs = require('fs');
4 | var io = require('socket.io');
5 | var _ = require('underscore');
6 | var Mustache = require('mustache');
7 |
8 | var app = express();
9 | var staticDir = express.static;
10 | var server = http.createServer(app);
11 |
12 | io = io(server);
13 |
14 | var opts = {
15 | port : 1947,
16 | baseDir : __dirname + '/../../'
17 | };
18 |
19 | io.on( 'connection', function( socket ) {
20 |
21 | socket.on( 'new-subscriber', function( data ) {
22 | socket.broadcast.emit( 'new-subscriber', data );
23 | });
24 |
25 | socket.on( 'statechanged', function( data ) {
26 | socket.broadcast.emit( 'statechanged', data );
27 | });
28 |
29 | socket.on( 'statechanged-speaker', function( data ) {
30 | socket.broadcast.emit( 'statechanged-speaker', data );
31 | });
32 |
33 | });
34 |
35 | [ 'css', 'js', 'images', 'plugin', 'lib' ].forEach( function( dir ) {
36 | app.use( '/' + dir, staticDir( opts.baseDir + dir ) );
37 | });
38 |
39 | app.get('/', function( req, res ) {
40 |
41 | res.writeHead( 200, { 'Content-Type': 'text/html' } );
42 | fs.createReadStream( opts.baseDir + '/index.html' ).pipe( res );
43 |
44 | });
45 |
46 | app.get( '/notes/:socketId', function( req, res ) {
47 |
48 | fs.readFile( opts.baseDir + 'plugin/notes-server/notes.html', function( err, data ) {
49 | res.send( Mustache.to_html( data.toString(), {
50 | socketId : req.params.socketId
51 | }));
52 | });
53 |
54 | });
55 |
56 | // Actually listen
57 | server.listen( opts.port || null );
58 |
59 | var brown = '\033[33m',
60 | green = '\033[32m',
61 | reset = '\033[0m';
62 |
63 | var slidesLocation = 'http://localhost' + ( opts.port ? ( ':' + opts.port ) : '' );
64 |
65 | console.log( brown + 'reveal.js - Speaker Notes' + reset );
66 | console.log( '1. Open the slides at ' + green + slidesLocation + reset );
67 | console.log( '2. Click on the link your JS console to go to the notes page' );
68 | console.log( '3. Advance through your slides and your notes will advance automatically' );
69 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/plugin/notes/notes.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Handles opening of and synchronization with the reveal.js
3 | * notes window.
4 | *
5 | * Handshake process:
6 | * 1. This window posts 'connect' to notes window
7 | * - Includes URL of presentation to show
8 | * 2. Notes window responds with 'connected' when it is available
9 | * 3. This window proceeds to send the current presentation state
10 | * to the notes window
11 | */
12 | var RevealNotes = (function() {
13 |
14 | function openNotes() {
15 | var jsFileLocation = document.querySelector('script[src$="notes.js"]').src; // this js file path
16 | jsFileLocation = jsFileLocation.replace(/notes\.js(\?.*)?$/, ''); // the js folder path
17 | var notesPopup = window.open( jsFileLocation + 'notes.html', 'reveal.js - Notes', 'width=1100,height=700' );
18 |
19 | /**
20 | * Connect to the notes window through a postmessage handshake.
21 | * Using postmessage enables us to work in situations where the
22 | * origins differ, such as a presentation being opened from the
23 | * file system.
24 | */
25 | function connect() {
26 | // Keep trying to connect until we get a 'connected' message back
27 | var connectInterval = setInterval( function() {
28 | notesPopup.postMessage( JSON.stringify( {
29 | namespace: 'reveal-notes',
30 | type: 'connect',
31 | url: window.location.protocol + '//' + window.location.host + window.location.pathname + window.location.search,
32 | state: Reveal.getState()
33 | } ), '*' );
34 | }, 500 );
35 |
36 | window.addEventListener( 'message', function( event ) {
37 | var data = JSON.parse( event.data );
38 | if( data && data.namespace === 'reveal-notes' && data.type === 'connected' ) {
39 | clearInterval( connectInterval );
40 | onConnected();
41 | }
42 | } );
43 | }
44 |
45 | /**
46 | * Posts the current slide data to the notes window
47 | */
48 | function post() {
49 |
50 | var slideElement = Reveal.getCurrentSlide(),
51 | notesElement = slideElement.querySelector( 'aside.notes' );
52 |
53 | var messageData = {
54 | namespace: 'reveal-notes',
55 | type: 'state',
56 | notes: '',
57 | markdown: false,
58 | whitespace: 'normal',
59 | state: Reveal.getState()
60 | };
61 |
62 | // Look for notes defined in a slide attribute
63 | if( slideElement.hasAttribute( 'data-notes' ) ) {
64 | messageData.notes = slideElement.getAttribute( 'data-notes' );
65 | messageData.whitespace = 'pre-wrap';
66 | }
67 |
68 | // Look for notes defined in an aside element
69 | if( notesElement ) {
70 | messageData.notes = notesElement.innerHTML;
71 | messageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';
72 | }
73 |
74 | notesPopup.postMessage( JSON.stringify( messageData ), '*' );
75 |
76 | }
77 |
78 | /**
79 | * Called once we have established a connection to the notes
80 | * window.
81 | */
82 | function onConnected() {
83 |
84 | // Monitor events that trigger a change in state
85 | Reveal.addEventListener( 'slidechanged', post );
86 | Reveal.addEventListener( 'fragmentshown', post );
87 | Reveal.addEventListener( 'fragmenthidden', post );
88 | Reveal.addEventListener( 'overviewhidden', post );
89 | Reveal.addEventListener( 'overviewshown', post );
90 | Reveal.addEventListener( 'paused', post );
91 | Reveal.addEventListener( 'resumed', post );
92 |
93 | // Post the initial state
94 | post();
95 |
96 | }
97 |
98 | connect();
99 | }
100 |
101 | if( !/receiver/i.test( window.location.search ) ) {
102 |
103 | // If the there's a 'notes' query set, open directly
104 | if( window.location.search.match( /(\?|\&)notes/gi ) !== null ) {
105 | openNotes();
106 | }
107 |
108 | // Open the notes when the 's' key is hit
109 | document.addEventListener( 'keydown', function( event ) {
110 | // Disregard the event if the target is editable or a
111 | // modifier is present
112 | if ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;
113 |
114 | // Disregard the event if keyboard is disabled
115 | if ( Reveal.getConfig().keyboard === false ) return;
116 |
117 | if( event.keyCode === 83 ) {
118 | event.preventDefault();
119 | openNotes();
120 | }
121 | }, false );
122 |
123 | }
124 |
125 | return { open: openNotes };
126 |
127 | })();
128 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/plugin/print-pdf/print-pdf.js:
--------------------------------------------------------------------------------
1 | /**
2 | * phantomjs script for printing presentations to PDF.
3 | *
4 | * Example:
5 | * phantomjs print-pdf.js "http://lab.hakim.se/reveal-js?print-pdf" reveal-demo.pdf
6 | *
7 | * By Manuel Bieh (https://github.com/manuelbieh)
8 | */
9 |
10 | // html2pdf.js
11 | var page = new WebPage();
12 | var system = require( 'system' );
13 |
14 | var slideWidth = system.args[3] ? system.args[3].split( 'x' )[0] : 960;
15 | var slideHeight = system.args[3] ? system.args[3].split( 'x' )[1] : 700;
16 |
17 | page.viewportSize = {
18 | width: slideWidth,
19 | height: slideHeight
20 | };
21 |
22 | // TODO
23 | // Something is wrong with these config values. An input
24 | // paper width of 1920px actually results in a 756px wide
25 | // PDF.
26 | page.paperSize = {
27 | width: Math.round( slideWidth * 2 ),
28 | height: Math.round( slideHeight * 2 ),
29 | border: 0
30 | };
31 |
32 | var inputFile = system.args[1] || 'index.html?print-pdf';
33 | var outputFile = system.args[2] || 'slides.pdf';
34 |
35 | if( outputFile.match( /\.pdf$/gi ) === null ) {
36 | outputFile += '.pdf';
37 | }
38 |
39 | console.log( 'Printing PDF (Paper size: '+ page.paperSize.width + 'x' + page.paperSize.height +')' );
40 |
41 | page.open( inputFile, function( status ) {
42 | window.setTimeout( function() {
43 | console.log( 'Printed succesfully' );
44 | page.render( outputFile );
45 | phantom.exit();
46 | }, 1000 );
47 | } );
48 |
49 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/examples/assets/image1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/test/examples/assets/image1.png
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/examples/assets/image2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/gavinr/web-appbuilder-tools-techniques-dev-summit-2016/d5075106ead6778f1e8f6b88ff7838f8029f1386/src/slides/reveal.js/test/examples/assets/image2.png
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/examples/barebones.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | reveal.js - Barebones
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | Barebones Presentation
20 | This example contains the bare minimum includes and markup required to run a reveal.js presentation.
21 |
22 |
23 |
24 | No Theme
25 | There's no theme included, so it will fall back on browser defaults.
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
39 |
40 |
41 |
42 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/examples/embedded-media.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | reveal.js - Embedded Media
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | Embedded Media Test
23 |
24 |
25 |
28 |
29 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
47 |
48 |
49 |
50 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/examples/math.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | reveal.js - Math Plugin
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | reveal.js Math Plugin
23 | A thin wrapper for MathJax
24 |
25 |
26 |
27 | The Lorenz Equations
28 |
29 | \[\begin{aligned}
30 | \dot{x} & = \sigma(y-x) \\
31 | \dot{y} & = \rho x - y - xz \\
32 | \dot{z} & = -\beta z + xy
33 | \end{aligned} \]
34 |
35 |
36 |
37 | The Cauchy-Schwarz Inequality
38 |
39 |
42 |
43 |
44 |
45 | A Cross Product Formula
46 |
47 | \[\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix}
48 | \mathbf{i} & \mathbf{j} & \mathbf{k} \\
49 | \frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \\
50 | \frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0
51 | \end{vmatrix} \]
52 |
53 |
54 |
55 | The probability of getting \(k\) heads when flipping \(n\) coins is
56 |
57 | \[P(E) = {n \choose k} p^k (1-p)^{ n-k} \]
58 |
59 |
60 |
61 | An Identity of Ramanujan
62 |
63 | \[ \frac{1}{\Bigl(\sqrt{\phi \sqrt{5}}-\phi\Bigr) e^{\frac25 \pi}} =
64 | 1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}}
65 | {1+\frac{e^{-8\pi}} {1+\ldots} } } } \]
66 |
67 |
68 |
69 | A Rogers-Ramanujan Identity
70 |
71 | \[ 1 + \frac{q^2}{(1-q)}+\frac{q^6}{(1-q)(1-q^2)}+\cdots =
72 | \prod_{j=0}^{\infty}\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\]
73 |
74 |
75 |
76 | Maxwell’s Equations
77 |
78 | \[ \begin{aligned}
79 | \nabla \times \vec{\mathbf{B}} -\, \frac1c\, \frac{\partial\vec{\mathbf{E}}}{\partial t} & = \frac{4\pi}{c}\vec{\mathbf{j}} \\ \nabla \cdot \vec{\mathbf{E}} & = 4 \pi \rho \\
80 | \nabla \times \vec{\mathbf{E}}\, +\, \frac1c\, \frac{\partial\vec{\mathbf{B}}}{\partial t} & = \vec{\mathbf{0}} \\
81 | \nabla \cdot \vec{\mathbf{B}} & = 0 \end{aligned}
82 | \]
83 |
84 |
85 |
86 |
87 | The Lorenz Equations
88 |
89 |
90 | \[\begin{aligned}
91 | \dot{x} & = \sigma(y-x) \\
92 | \dot{y} & = \rho x - y - xz \\
93 | \dot{z} & = -\beta z + xy
94 | \end{aligned} \]
95 |
96 |
97 |
98 |
99 | The Cauchy-Schwarz Inequality
100 |
101 |
102 | \[ \left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right) \]
103 |
104 |
105 |
106 |
107 | A Cross Product Formula
108 |
109 |
110 | \[\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix}
111 | \mathbf{i} & \mathbf{j} & \mathbf{k} \\
112 | \frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \\
113 | \frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0
114 | \end{vmatrix} \]
115 |
116 |
117 |
118 |
119 | The probability of getting \(k\) heads when flipping \(n\) coins is
120 |
121 |
122 | \[P(E) = {n \choose k} p^k (1-p)^{ n-k} \]
123 |
124 |
125 |
126 |
127 | An Identity of Ramanujan
128 |
129 |
130 | \[ \frac{1}{\Bigl(\sqrt{\phi \sqrt{5}}-\phi\Bigr) e^{\frac25 \pi}} =
131 | 1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}}
132 | {1+\frac{e^{-8\pi}} {1+\ldots} } } } \]
133 |
134 |
135 |
136 |
137 | A Rogers-Ramanujan Identity
138 |
139 |
140 | \[ 1 + \frac{q^2}{(1-q)}+\frac{q^6}{(1-q)(1-q^2)}+\cdots =
141 | \prod_{j=0}^{\infty}\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\]
142 |
143 |
144 |
145 |
146 | Maxwell’s Equations
147 |
148 |
149 | \[ \begin{aligned}
150 | \nabla \times \vec{\mathbf{B}} -\, \frac1c\, \frac{\partial\vec{\mathbf{E}}}{\partial t} & = \frac{4\pi}{c}\vec{\mathbf{j}} \\ \nabla \cdot \vec{\mathbf{E}} & = 4 \pi \rho \\
151 | \nabla \times \vec{\mathbf{E}}\, +\, \frac1c\, \frac{\partial\vec{\mathbf{B}}}{\partial t} & = \vec{\mathbf{0}} \\
152 | \nabla \cdot \vec{\mathbf{B}} & = 0 \end{aligned}
153 | \]
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
183 |
184 |
185 |
186 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/examples/slide-backgrounds.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | reveal.js - Slide Backgrounds
8 |
9 |
10 |
11 |
12 |
13 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 | data-background: #00ffff
33 |
34 |
35 |
36 | data-background: #bb00bb
37 |
38 |
39 |
40 | data-background: lightblue
41 |
42 |
43 |
44 |
45 | data-background: #ff0000
46 |
47 |
48 | data-background: rgba(0, 0, 0, 0.2)
49 |
50 |
51 | data-background: salmon
52 |
53 |
54 |
55 |
56 |
57 | Background applied to stack
58 |
59 |
60 | Background applied to stack
61 |
62 |
63 | Background applied to slide inside of stack
64 |
65 |
66 |
67 |
68 | Background image
69 |
70 |
71 |
72 |
73 | Background image
74 |
75 |
76 | Background image
77 |
78 |
79 |
80 |
81 | Background image
82 | data-background-size="100px" data-background-repeat="repeat" data-background-color="#111"
83 |
84 |
85 |
86 | Same background twice (1/2)
87 |
88 |
89 | Same background twice (2/2)
90 |
91 |
92 |
93 | Video background
94 |
95 |
96 |
97 | Iframe background
98 |
99 |
100 |
101 |
102 | Same background twice vertical (1/2)
103 |
104 |
105 | Same background twice vertical (2/2)
106 |
107 |
108 |
109 |
110 | Same background from horizontal to vertical (1/3)
111 |
112 |
113 |
114 | Same background from horizontal to vertical (2/3)
115 |
116 |
117 | Same background from horizontal to vertical (3/3)
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
142 |
143 |
144 |
145 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/examples/slide-transitions.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | reveal.js - Slide Transitions
8 |
9 |
10 |
11 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
32 |
33 |
36 |
37 |
38 | data-transition: zoom
39 |
40 |
41 |
42 | data-transition: zoom-in fade-out
43 |
44 |
45 |
48 |
49 |
50 | data-transition: convex
51 |
52 |
53 |
54 | data-transition: convex-in concave-out
55 |
56 |
57 |
58 |
61 |
62 | data-transition: concave
63 |
64 |
65 | data-transition: convex-in fade-out
66 |
67 |
70 |
71 |
72 |
73 | data-transition: none
74 |
75 |
76 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
99 |
100 |
101 |
102 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/qunit-1.12.0.css:
--------------------------------------------------------------------------------
1 | /**
2 | * QUnit v1.12.0 - A JavaScript Unit Testing Framework
3 | *
4 | * http://qunitjs.com
5 | *
6 | * Copyright 2012 jQuery Foundation and other contributors
7 | * Released under the MIT license.
8 | * http://jquery.org/license
9 | */
10 |
11 | /** Font Family and Sizes */
12 |
13 | #qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {
14 | font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif;
15 | }
16 |
17 | #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }
18 | #qunit-tests { font-size: smaller; }
19 |
20 |
21 | /** Resets */
22 |
23 | #qunit-tests, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {
24 | margin: 0;
25 | padding: 0;
26 | }
27 |
28 |
29 | /** Header */
30 |
31 | #qunit-header {
32 | padding: 0.5em 0 0.5em 1em;
33 |
34 | color: #8699a4;
35 | background-color: #0d3349;
36 |
37 | font-size: 1.5em;
38 | line-height: 1em;
39 | font-weight: normal;
40 |
41 | border-radius: 5px 5px 0 0;
42 | -moz-border-radius: 5px 5px 0 0;
43 | -webkit-border-top-right-radius: 5px;
44 | -webkit-border-top-left-radius: 5px;
45 | }
46 |
47 | #qunit-header a {
48 | text-decoration: none;
49 | color: #c2ccd1;
50 | }
51 |
52 | #qunit-header a:hover,
53 | #qunit-header a:focus {
54 | color: #fff;
55 | }
56 |
57 | #qunit-testrunner-toolbar label {
58 | display: inline-block;
59 | padding: 0 .5em 0 .1em;
60 | }
61 |
62 | #qunit-banner {
63 | height: 5px;
64 | }
65 |
66 | #qunit-testrunner-toolbar {
67 | padding: 0.5em 0 0.5em 2em;
68 | color: #5E740B;
69 | background-color: #eee;
70 | overflow: hidden;
71 | }
72 |
73 | #qunit-userAgent {
74 | padding: 0.5em 0 0.5em 2.5em;
75 | background-color: #2b81af;
76 | color: #fff;
77 | text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;
78 | }
79 |
80 | #qunit-modulefilter-container {
81 | float: right;
82 | }
83 |
84 | /** Tests: Pass/Fail */
85 |
86 | #qunit-tests {
87 | list-style-position: inside;
88 | }
89 |
90 | #qunit-tests li {
91 | padding: 0.4em 0.5em 0.4em 2.5em;
92 | border-bottom: 1px solid #fff;
93 | list-style-position: inside;
94 | }
95 |
96 | #qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running {
97 | display: none;
98 | }
99 |
100 | #qunit-tests li strong {
101 | cursor: pointer;
102 | }
103 |
104 | #qunit-tests li a {
105 | padding: 0.5em;
106 | color: #c2ccd1;
107 | text-decoration: none;
108 | }
109 | #qunit-tests li a:hover,
110 | #qunit-tests li a:focus {
111 | color: #000;
112 | }
113 |
114 | #qunit-tests li .runtime {
115 | float: right;
116 | font-size: smaller;
117 | }
118 |
119 | .qunit-assert-list {
120 | margin-top: 0.5em;
121 | padding: 0.5em;
122 |
123 | background-color: #fff;
124 |
125 | border-radius: 5px;
126 | -moz-border-radius: 5px;
127 | -webkit-border-radius: 5px;
128 | }
129 |
130 | .qunit-collapsed {
131 | display: none;
132 | }
133 |
134 | #qunit-tests table {
135 | border-collapse: collapse;
136 | margin-top: .2em;
137 | }
138 |
139 | #qunit-tests th {
140 | text-align: right;
141 | vertical-align: top;
142 | padding: 0 .5em 0 0;
143 | }
144 |
145 | #qunit-tests td {
146 | vertical-align: top;
147 | }
148 |
149 | #qunit-tests pre {
150 | margin: 0;
151 | white-space: pre-wrap;
152 | word-wrap: break-word;
153 | }
154 |
155 | #qunit-tests del {
156 | background-color: #e0f2be;
157 | color: #374e0c;
158 | text-decoration: none;
159 | }
160 |
161 | #qunit-tests ins {
162 | background-color: #ffcaca;
163 | color: #500;
164 | text-decoration: none;
165 | }
166 |
167 | /*** Test Counts */
168 |
169 | #qunit-tests b.counts { color: black; }
170 | #qunit-tests b.passed { color: #5E740B; }
171 | #qunit-tests b.failed { color: #710909; }
172 |
173 | #qunit-tests li li {
174 | padding: 5px;
175 | background-color: #fff;
176 | border-bottom: none;
177 | list-style-position: inside;
178 | }
179 |
180 | /*** Passing Styles */
181 |
182 | #qunit-tests li li.pass {
183 | color: #3c510c;
184 | background-color: #fff;
185 | border-left: 10px solid #C6E746;
186 | }
187 |
188 | #qunit-tests .pass { color: #528CE0; background-color: #D2E0E6; }
189 | #qunit-tests .pass .test-name { color: #366097; }
190 |
191 | #qunit-tests .pass .test-actual,
192 | #qunit-tests .pass .test-expected { color: #999999; }
193 |
194 | #qunit-banner.qunit-pass { background-color: #C6E746; }
195 |
196 | /*** Failing Styles */
197 |
198 | #qunit-tests li li.fail {
199 | color: #710909;
200 | background-color: #fff;
201 | border-left: 10px solid #EE5757;
202 | white-space: pre;
203 | }
204 |
205 | #qunit-tests > li:last-child {
206 | border-radius: 0 0 5px 5px;
207 | -moz-border-radius: 0 0 5px 5px;
208 | -webkit-border-bottom-right-radius: 5px;
209 | -webkit-border-bottom-left-radius: 5px;
210 | }
211 |
212 | #qunit-tests .fail { color: #000000; background-color: #EE5757; }
213 | #qunit-tests .fail .test-name,
214 | #qunit-tests .fail .module-name { color: #000000; }
215 |
216 | #qunit-tests .fail .test-actual { color: #EE5757; }
217 | #qunit-tests .fail .test-expected { color: green; }
218 |
219 | #qunit-banner.qunit-fail { background-color: #EE5757; }
220 |
221 |
222 | /** Result */
223 |
224 | #qunit-testresult {
225 | padding: 0.5em 0.5em 0.5em 2.5em;
226 |
227 | color: #2b81af;
228 | background-color: #D2E0E6;
229 |
230 | border-bottom: 1px solid white;
231 | }
232 | #qunit-testresult .module-name {
233 | font-weight: bold;
234 | }
235 |
236 | /** Fixture */
237 |
238 | #qunit-fixture {
239 | position: absolute;
240 | top: -10000px;
241 | left: -10000px;
242 | width: 1000px;
243 | height: 1000px;
244 | }
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/test-markdown-element-attributes.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | reveal.js - Test Markdown Element Attributes
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
74 |
75 |
76 |
77 |
91 |
92 |
99 |
100 |
109 |
110 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/test-markdown-element-attributes.js:
--------------------------------------------------------------------------------
1 |
2 |
3 | Reveal.addEventListener( 'ready', function() {
4 |
5 | QUnit.module( 'Markdown' );
6 |
7 | test( 'Vertical separator', function() {
8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 4, 'found four slides' );
9 | });
10 |
11 |
12 | test( 'Attributes on element header in vertical slides', function() {
13 | strictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.fade-out' ).length, 1, 'found one vertical slide with class fragment.fade-out on header' );
14 | strictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.shrink' ).length, 1, 'found one vertical slide with class fragment.shrink on header' );
15 | });
16 |
17 | test( 'Attributes on element paragraphs in vertical slides', function() {
18 | strictEqual( document.querySelectorAll( '.reveal .slides section>section p.fragment.grow' ).length, 2, 'found a vertical slide with two paragraphs with class fragment.grow' );
19 | });
20 |
21 | test( 'Attributes on element list items in vertical slides', function() {
22 | strictEqual( document.querySelectorAll( '.reveal .slides section>section li.fragment.grow' ).length, 3, 'found a vertical slide with three list items with class fragment.grow' );
23 | });
24 |
25 | test( 'Attributes on element paragraphs in horizontal slides', function() {
26 | strictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-red' ).length, 4, 'found a horizontal slide with four paragraphs with class fragment.grow' );
27 | });
28 | test( 'Attributes on element list items in horizontal slides', function() {
29 | strictEqual( document.querySelectorAll( '.reveal .slides section li.fragment.highlight-green' ).length, 5, 'found a horizontal slide with five list items with class fragment.roll-in' );
30 | });
31 | test( 'Attributes on element list items in horizontal slides', function() {
32 | strictEqual( document.querySelectorAll( '.reveal .slides section img.reveal.stretch' ).length, 1, 'found a horizontal slide with stretched image, class img.reveal.stretch' );
33 | });
34 |
35 | test( 'Attributes on elements in vertical slides with default element attribute separator', function() {
36 | strictEqual( document.querySelectorAll( '.reveal .slides section h2.fragment.highlight-red' ).length, 2, 'found two h2 titles with fragment highlight-red in vertical slides with default element attribute separator' );
37 | });
38 |
39 | test( 'Attributes on elements in single slides with default element attribute separator', function() {
40 | strictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-blue' ).length, 3, 'found three elements with fragment highlight-blue in single slide with default element attribute separator' );
41 | });
42 |
43 | } );
44 |
45 | Reveal.initialize();
46 |
47 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/test-markdown-slide-attributes.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | reveal.js - Test Markdown Attributes
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
57 |
58 |
89 |
90 |
96 |
97 |
103 |
104 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/test-markdown-slide-attributes.js:
--------------------------------------------------------------------------------
1 |
2 |
3 | Reveal.addEventListener( 'ready', function() {
4 |
5 | QUnit.module( 'Markdown' );
6 |
7 | test( 'Vertical separator', function() {
8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 6, 'found six vertical slides' );
9 | });
10 |
11 | test( 'Id on slide', function() {
12 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section#slide2' ).length, 1, 'found one slide with id slide2' );
13 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section a[href="#/slide2"]' ).length, 1, 'found one slide with a link to slide2' );
14 | });
15 |
16 | test( 'data-background attributes', function() {
17 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background="#A0C66B"]' ).length, 1, 'found one vertical slide with data-background="#A0C66B"' );
18 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background="#ff0000"]' ).length, 1, 'found one vertical slide with data-background="#ff0000"' );
19 | strictEqual( document.querySelectorAll( '.reveal .slides>section[data-background="#C6916B"]' ).length, 1, 'found one slide with data-background="#C6916B"' );
20 | });
21 |
22 | test( 'data-transition attributes', function() {
23 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition="zoom"]' ).length, 1, 'found one vertical slide with data-transition="zoom"' );
24 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition="fade"]' ).length, 1, 'found one vertical slide with data-transition="fade"' );
25 | strictEqual( document.querySelectorAll( '.reveal .slides section [data-transition="zoom"]' ).length, 1, 'found one slide with data-transition="zoom"' );
26 | });
27 |
28 | test( 'data-background attributes with default separator', function() {
29 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background="#A7C66B"]' ).length, 1, 'found one vertical slide with data-background="#A0C66B"' );
30 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background="#f70000"]' ).length, 1, 'found one vertical slide with data-background="#ff0000"' );
31 | strictEqual( document.querySelectorAll( '.reveal .slides>section[data-background="#C7916B"]' ).length, 1, 'found one slide with data-background="#C6916B"' );
32 | });
33 |
34 | test( 'data-transition attributes with default separator', function() {
35 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition="concave"]' ).length, 1, 'found one vertical slide with data-transition="zoom"' );
36 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition="page"]' ).length, 1, 'found one vertical slide with data-transition="fade"' );
37 | strictEqual( document.querySelectorAll( '.reveal .slides section [data-transition="concave"]' ).length, 1, 'found one slide with data-transition="zoom"' );
38 | });
39 |
40 | test( 'data-transition attributes with inline content', function() {
41 | strictEqual( document.querySelectorAll( '.reveal .slides>section[data-background="#ff0000"]' ).length, 3, 'found three horizontal slides with data-background="#ff0000"' );
42 | });
43 |
44 | } );
45 |
46 | Reveal.initialize();
47 |
48 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/test-markdown.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | reveal.js - Test Markdown
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/test-markdown.js:
--------------------------------------------------------------------------------
1 |
2 |
3 | Reveal.addEventListener( 'ready', function() {
4 |
5 | QUnit.module( 'Markdown' );
6 |
7 | test( 'Vertical separator', function() {
8 | strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );
9 | });
10 |
11 |
12 | } );
13 |
14 | Reveal.initialize();
15 |
16 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/test-pdf.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | reveal.js - Test PDF exports
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | 1
25 |
26 |
27 |
28 |
39 |
40 |
41 |
42 | 3.1
43 |
44 | 4.1
45 | 4.2
46 | 4.3
47 |
48 |
49 |
50 |
57 |
58 |
59 | 3.3
60 |
61 | 3.3.1
62 | 3.3.2
63 | 3.3.3
64 |
65 |
66 |
67 |
68 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/test-pdf.js:
--------------------------------------------------------------------------------
1 |
2 | Reveal.addEventListener( 'ready', function() {
3 |
4 | // Only one test for now, we're mainly ensuring that there
5 | // are no execution errors when running PDF mode
6 |
7 | test( 'Reveal.isReady', function() {
8 | strictEqual( Reveal.isReady(), true, 'returns true' );
9 | });
10 |
11 |
12 | } );
13 |
14 | Reveal.initialize({ pdf: true });
15 |
16 |
--------------------------------------------------------------------------------
/src/slides/reveal.js/test/test.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | reveal.js - Tests
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | 1
24 |
25 |
26 |
27 |
28 |
29 |
30 |
41 |
42 |
43 |
44 | 3.1
45 |
46 | 4.1
47 | 4.2
48 | 4.3
49 |
50 |
51 |
52 |
60 |
61 |
62 | 3.3
63 |
64 | 3.3.1
65 | 3.3.2
66 | 3.3.3
67 |
68 |
69 |
70 |
71 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
--------------------------------------------------------------------------------
/src/slides/thank-you.md:
--------------------------------------------------------------------------------
1 | ## Thank You! Any Questions?
2 |
3 |
4 | grehkemper@esri.com -
5 | @gavinrehkemper
6 |
7 | twayson@esri.com -
8 | @tomwayson
9 |
10 | These slides and sample code at: esriurl.com/wabtools2016
11 | Please rate this session in the Esri Events mobile app!
--------------------------------------------------------------------------------
/src/slides/what-is-web-appbuilder.md:
--------------------------------------------------------------------------------
1 |
2 | ## What is Web AppBuilder?
3 |
4 |
5 | ---
6 |
7 | ## Builder Experience
8 |
9 | Note: Brings "builder" experience from Flex/Silverlight to JavaScript
10 |
11 | ---
12 |
13 | ## When to use Web AppBuilder
14 |
15 | - Good for:
16 | - Multi-purpose apps that need to run on multiple devices
17 | - Creating a suite of custom apps with consistent style/behavior
18 | - Empowering non-devlopers to create apps
19 | - Other frameworks/templates might be better for:
20 | - Specific, custom web apps, with specialized workflows
21 | - When there is a template that does almost all of app functionality
22 |
23 | ---
24 |
25 | ## What's new in WAB 2.0 Beta
26 |
27 | [](http://webappbuilderdemos.s3-website-us-east-1.amazonaws.com/waterfront/)
28 |
29 | ---
30 |
31 | 
32 |
33 | ---
34 |
35 | 
36 |
37 |
38 |
39 |
--------------------------------------------------------------------------------