Skip to content

Commit

Permalink
presentation v3
Browse files Browse the repository at this point in the history
  • Loading branch information
debel committed Apr 30, 2017
1 parent 20f2082 commit 43d27ed
Show file tree
Hide file tree
Showing 7 changed files with 568 additions and 525 deletions.
21 changes: 13 additions & 8 deletions build/bundle.css
Original file line number Diff line number Diff line change
Expand Up @@ -1736,11 +1736,16 @@ based on dark.css by Ivan Sagalaev
font-weight: bold;
}

.inline-code {
color: salmon;
background-color: #636363;
}

.warning {
color: salmon;
}
.overflown {
padding-bottom: 40px !important;
overflow: visible !important;
}

.inline-code {
color: salmon;
background-color: #636363;
}

.warning {
color: salmon;
}
30 changes: 18 additions & 12 deletions build/bundle.js

Large diffs are not rendered by default.

21 changes: 13 additions & 8 deletions css/main.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
.inline-code {
color: salmon;
background-color: #636363;
}

.warning {
color: salmon;
}
.overflown {
padding-bottom: 40px !important;
overflow: visible !important;
}

.inline-code {
color: salmon;
background-color: #636363;
}

.warning {
color: salmon;
}
72 changes: 36 additions & 36 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
const path = require('path');
const gulp = require('gulp');
const concat = require('gulp-concat');

const resources = {
css: [
"./bower_components/reveal.js/css/reveal.css",
"./bower_components/reveal.js/css/theme/night.css",
"./bower_components/reveal.js/lib/css/zenburn.css",
"./css/*.css"
],
js: [
"./bower_components/reveal.js/lib/js/head.min.js",
"./bower_components/reveal.js/js/reveal.js",
"./bower_components/reveal.js/plugin/highlight/highlight.js",
"./js/*.js"
]
};

const build = (resurce) => new Promise((y) => {
gulp.src(resources[resurce])
.pipe(concat('bundle.' + resurce))
.pipe(gulp.dest('build/'))
.on('end', () => y);
});

gulp.task('default', (done) => {
return Promise.all([
build('css'),
build('js')
]).then(done);
});

gulp.task('watch', () => {
gulp.watch(['index.html', 'js/*.js', 'css/*.css'], ['default']);
});
const path = require('path');
const gulp = require('gulp');
const concat = require('gulp-concat');

const resources = {
css: [
"./bower_components/reveal.js/css/reveal.css",
"./bower_components/reveal.js/css/theme/night.css",
"./bower_components/reveal.js/lib/css/zenburn.css",
"./css/*.css"
],
js: [
"./bower_components/reveal.js/lib/js/head.min.js",
"./bower_components/reveal.js/js/reveal.js",
"./bower_components/reveal.js/plugin/highlight/highlight.js",
"./js/*.js"
]
};

const build = (resurce) => new Promise((done) => {
gulp.src(resources[resurce])
.pipe(concat('bundle.' + resurce))
.pipe(gulp.dest('build/'))
.on('end', () => done);
});

gulp.task('default', (done) => {
return Promise.all([
build('css'),
build('js')
]).then(done);
});

gulp.task('watch', () => {
gulp.watch(['index.html', 'js/*.js', 'css/*.css'], ['default']);
});
Loading

0 comments on commit 43d27ed

Please sign in to comment.