From f04e24a3d274f6e64c5db5a368a77d09e6b15f65 Mon Sep 17 00:00:00 2001 From: Lars Moelleken Date: Sun, 2 Nov 2014 22:34:29 +0100 Subject: [PATCH] [+]: use "libsass" & "CSSWring" --- Gruntfile.js | 121 ++++++++++++++--- css-min/extra-styles.css | 4 + css-min/extra-styles.css.map | 1 + css/extra-styles.css | 255 ++++++++++++++++------------------- css/extra-styles.css.map | 8 +- index.html | 4 +- package.json | 11 +- 7 files changed, 238 insertions(+), 166 deletions(-) create mode 100644 css-min/extra-styles.css create mode 100644 css-min/extra-styles.css.map diff --git a/Gruntfile.js b/Gruntfile.js index 921ddba..0318b01 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,48 +1,137 @@ +/** + * # Grunt + * A task manager for auto compiling and validating code + * + * ## Set up + * Make sure the you have nodejs running on your machine + * Install Grunt with npm `npm install -g grunt-cli` + * Install Grunt packages `npm install` + * + * ## Config + * The configuration settings are found in `package.json`. + * + * ## Running + * You can type `grunt ` to run any of rules in the `initConfig` function + * e.g. `grunt compass` to compile the scss files to css + * + * You can also run a sub-task by adding `:` + * e.g. `grunt uglify:js` to compile to javaScript header file + * + * ## Helper Commands + * There are a number of helper command at the end of the file + * - default (`grunt`) will watch the folder and compile when files are saved + */ + +// # Globbing +// for performance reasons we're only matching one level down: +// 'test/spec/{,*/}*.js' +// use this if you want to recursively match all subfolders: +// 'test/spec/**/*.js' + module.exports = function(grunt) { + 'use strict'; + + // require it at the top and pass in the grunt instance + require('time-grunt')(grunt); grunt.initConfig({ - sass: { + + pkg: grunt.file.readJSON('package.json'), + + meta: { + banner: '<%= pkg.name %> by <%= pkg.author %> (<%= grunt.template.today("yyyy-mm-dd, HH:MM") %>)', + bannerJS: + '/*\n' + + ' * <%= meta.banner %>\n' + + ' */' + }, + + clean: { + build: ["js-min/*", "css/*", "css-min/*"] + }, + + libsass: { dist: { options: { - style: 'expanded' + //loadPath: ['vendor/bower/bootstrap-sass/lib'], + sourcemap: true }, files: [{ expand: true, - cwd: 'scss', - src: ['extra-styles.scss'], - dest: 'css', + cwd: 'scss/', + src: ['**/extra-styles.scss'], + dest: 'css/', ext: '.css' }] } }, + autoprefixer: { options: { - browsers: ['last 999 version'] + browsers: ['last 100 version'], + map: true + }, + multiple_files: { + expand: true, + flatten: true, + src: 'css/*.css', + dest: 'css/' + } + }, + + csswring: { + options: { + banner: '<%= meta.banner %>\n', + map: true, + preserveHacks: true }, - no_dest: { - src: 'css/extra-style.css' + minify: { + expand: true, + flatten: true, + src: ['css/*.css'], + dest: 'css-min/' } }, + watch: { + + html: { + files: ['*.html'], + options: { + livereload: true + } + }, + sass: { - files: ['scss/extra-styles.scss'], - tasks: ['sass','autoprefixer'], + files: ['scss/**/*.scss'], + tasks: ['libsass:dist', 'autoprefixer', 'csswring:minify'], options: { - spawn: false + livereload: true, + spawn : false // for grunt-contrib-watch v0.5.0+, "nospawn: true" for lower versions. } } + }, + serve: { options: { port: 9000 } } + }); - grunt.loadNpmTasks('grunt-contrib-sass'); - grunt.loadNpmTasks('grunt-autoprefixer'); - grunt.loadNpmTasks('grunt-contrib-watch'); - grunt.loadNpmTasks('grunt-serve'); + // load all plugins from the "package.json"-file + require("matchdep").filterDev("grunt-*").forEach(grunt.loadNpmTasks); + + grunt.registerTask('default', ['watch']); + grunt.registerTask('server', ['serve']); + grunt.registerTask('clean-build', ['clean:build']); + + grunt.registerTask( + 'build', + 'Build this website ... yeaahhh!', + [ 'clean:build', 'libsass:dist', 'autoprefixer', 'csswring:minify', 'serve'] + ); - grunt.registerTask('default', ['sass','autoprefixer', 'serve']); }; \ No newline at end of file diff --git a/css-min/extra-styles.css b/css-min/extra-styles.css new file mode 100644 index 0000000..f8b7a4a --- /dev/null +++ b/css-min/extra-styles.css @@ -0,0 +1,4 @@ +/* DO-EPIC-SHIT by (2014-11-02, 22:33) + */ +body{background:-webkit-gradient(linear,left top,left bottom,from(#111),to(#333));background:-webkit-linear-gradient(top,#111,#333);background:-moz-linear-gradient(top,#111,#333);background:-o-linear-gradient(top,#111,#333);background:linear-gradient(to bottom,#111,#333)}.reveal{font-size:60px}.reveal h1{font-size:2em}.reveal h2{font-size:1.25em}.reveal h3{font-size:1.1em}.reveal h4{font-size:1em}.reveal h1,.reveal h2,.reveal h3,.reveal h4,.reveal h5,.reveal h6,.reveal ol,.reveal ul,.reveal p,.reveal table,.reveal pre{margin-bottom:2rem}html.inverted .reveal h1,html.inverted .reveal h2,html.inverted .reveal h3,html.inverted .reveal h4,html.inverted .reveal h5,html.inverted .reveal h6,html.inverted .reveal ol,html.inverted .reveal ul,html.inverted .reveal p,html.inverted .reveal table,html.inverted .reveal pre{color:#FFF;text-shadow:1px 1px 2px #000,1px -1px 2px #000,-1px -1px 2px #000,-1px 1px 2px #000,0 0 4px #000,0 0 4px #000,0 0 4px #000,0 0 4px #000,0 0 8px rgba(0,0,0,.6),0 0 8px rgba(0,0,0,.6),0 0 8px rgba(0,0,0,.6)}.reveal pre code{font-size:60px;line-height:65px;max-height:700px;-webkit-filter:none;filter:none;text-shadow:none;-webkit-box-shadow:inset 0 0 0 2px #666,0 0 4px 1px rgba(0,0,0,.6);-moz-box-shadow:inset 0 0 0 2px #666,0 0 4px 1px rgba(0,0,0,.6);box-shadow:inset 0 0 0 2px #666,0 0 4px 1px rgba(0,0,0,.6)}html.faded .reveal .backgrounds{opacity:.5;background-blend-mode:multiply}html.grayscaled .reveal .backgrounds{-webkit-filter:greyscale(1);filter:greyscale(1)}.reveal .right{margin-left:33%}.reveal pre+pre{margin-top:-1em}.reveal section img,.reveal section video{border:none;background:transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;-webkit-filter:drop-shadow(0 0 1px #CCC) drop-shadow(0 0 10px #FFF);filter:drop-shadow(0 0 1px #CCC) drop-shadow(0 0 10px #FFF)}.reveal li{margin-bottom:1rem}.reveal table{table-layout:fixed;width:100%;max-width:1900px;margin-left:auto;margin-right:auto;padding:1em 0;font-size:1em;border-top:1px solid currentcolor;border-bottom:1px solid currentcolor}.smaller .reveal table{font-size:.8em}.reveal table th,.reveal table td{padding:.1em .2em;white-space:nowrap;text-align:center;border-bottom:.05em dotted #666}.reveal table th:first-child,.reveal table td:first-child{text-align:left}.reveal table th img,.reveal table td img{margin:0;border:none;background:transparent;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.reveal video{width:auto;height:80%}.reveal .datatable+table{font-size:.5em;line-height:1.4;border-collapse:collapse}.reveal .datatable+table tr:nth-child(even){background:rgba(255,255,255,.6)}.reveal .datatable+table th,.reveal .datatable+table td{text-align:left}.reveal blockquote{quotes:"“" "”" "‘" "’";position:relative;margin-bottom:1rem;padding:1rem;background-color:rgba(0,0,0,.9);font-style:italic;text-align:left}.reveal blockquote>*:last-child{margin-bottom:0}.reveal blockquote:before,.reveal blockquote:after{position:absolute;font-family:Times,serif;font-size:150%;font-weight:700}.reveal blockquote:before{top:0;right:102%;content:open-quote}.reveal blockquote:after{bottom:-20px;left:102%;content:close-quote;vertical-align:bottom}.reveal .multicolumn{font-size:.6em;-webkit-column-count:2;-moz-column-count:2;-ms-column-count:2;column-count:2} +/*# sourceMappingURL=extra-styles.css.map */ \ No newline at end of file diff --git a/css-min/extra-styles.css.map b/css-min/extra-styles.css.map new file mode 100644 index 0000000..5559b68 --- /dev/null +++ b/css-min/extra-styles.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../css/scss/extra-styles.scss"],"names":[],"mappings":";;AAAA,KACC,6EAAA,CAAA,iDAAA,CAAA,8CAAA,CAAA,4CAAA,CAAA,+CAAA,AAGD,CAHa,OAIZ,eAAD,AAAC,CAAW,UAEN,cAAN,AAAM,CAAW,UACX,iBAAN,AAAM,CAAW,UACX,gBAAN,AAAM,CAAW,UACX,cAAN,AAAM,CAAW,2HAGf,mBAAF,AAAE,CAAe,qRAGd,WACA,CADA,4MACA,AAEH,CAF4B,gBAKxB,eACA,CADA,gBAEF,CADE,gBAEF,CADA,mBACA,CAAA,WACA,CADA,gBAEA,CADA,kEACA,CAAA,+DAAA,CAAA,0DAAA,AACF,CAD8B,+BAI5B,WACA,CADA,8BACA,AACF,CADyB,oCAGvB,4BAAA,CAAA,mBAAA,AACF,CADU,cAGR,gBAAA,AACF,CADe,eAIb,gBAAA,AACF,CADc,yCAKZ,YACA,CADA,sBAEA,CADA,uBACA,CAAA,oBAAA,CAAA,eACA,CADA,mEACA,CAAA,2DAAA,AACF,CADkC,UAIhC,mBAAA,AACF,CADiB,aAIf,mBACA,CADA,UAEA,CADA,gBAEA,CADA,gBAEA,CADA,iBAEA,CADA,aAEA,CADA,aAEA,CADA,iCAEA,CADA,oCACF,AAAE,CAAe,sBAGd,eAAA,AACH,CADc,iCAIX,kBACA,CADA,kBAEA,CADA,iBAEA,CADA,+BACH,AAAG,CAAe,yDAGd,gBAAA,AACJ,CADgB,yCAIZ,SACA,CADA,WAEA,CADA,sBAEA,CADA,uBACA,CAAA,oBAAA,CAAA,eAAA,AAGJ,CAHgB,aAMd,WACA,CADA,UACA,AACF,CADU,wBAIR,eACA,CADA,eAEA,CADA,wBACF,AAAE,CAAiB,2CAGhB,gCAAA,AACH,CADe,uDAGZ,gBAAA,AAEH,CAFgB,kBAKd,uBACA,CADA,iBAEA,CADA,kBAEA,CADA,YAEA,CADA,+BAEA,CADA,iBAEA,CADA,eACF,AAAE,CAAY,+BAGX,gBAAA,AACH,CADkB,kDAIf,kBACA,CADA,uBAEA,CADA,cAEA,CADA,eACA,AACH,CADgB,yBAGb,MACA,CADA,UAEA,CADA,kBACA,AACH,CADY,wBAGT,aACA,CADA,SAEA,CADA,mBAEA,CADA,qBACA,AAEH,CAFmB,oBAKjB,eACA,CADA,sBAEA,CADA,mBAEA,CADA,kBAGA,CAFA,cAEA,CAAc","file":"extra-styles.css"} \ No newline at end of file diff --git a/css/extra-styles.css b/css/extra-styles.css index fddfdc9..13ba706 100644 --- a/css/extra-styles.css +++ b/css/extra-styles.css @@ -1,141 +1,120 @@ -@charset "UTF-8"; body { - background: linear-gradient(to bottom, #111, #333); -} + background: -webkit-gradient(linear, left top, left bottom, from(#111), to(#333)); + background: -webkit-linear-gradient(top, #111, #333); + background: -moz-linear-gradient(top, #111, #333); + background: -o-linear-gradient(top, #111, #333); + background: linear-gradient(to bottom, #111, #333); } .reveal { - font-size: 60px; -} -.reveal h1 { - font-size: 2em; -} -.reveal h2 { - font-size: 1.25em; -} -.reveal h3 { - font-size: 1.1em; -} -.reveal h4 { - font-size: 1em; -} -.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal ol, .reveal ul, .reveal p, .reveal table, .reveal pre { - margin-bottom: 2rem; -} -html.inverted .reveal h1, html.inverted .reveal h2, html.inverted .reveal h3, html.inverted .reveal h4, html.inverted .reveal h5, html.inverted .reveal h6, html.inverted .reveal ol, html.inverted .reveal ul, html.inverted .reveal p, html.inverted .reveal table, html.inverted .reveal pre { - color: #FFF; - text-shadow: 1px 1px 2px #000, 1px -1px 2px #000, -1px -1px 2px #000, -1px 1px 2px #000, 0 0 4px #000, 0 0 4px #000, 0 0 4px #000, 0 0 4px #000, 0 0 8px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 0, 0, 0.6); -} -.reveal pre code { - font-size: 60px; - line-height: 65px; - max-height: 700px; - filter: none; - text-shadow: none; - box-shadow: inset 0 0 0 2px #666, 0 0 4px 1px rgba(0, 0, 0, 0.6); -} -html.faded .reveal .backgrounds { - opacity: 0.5; - background-blend-mode: multiply; -} -html.grayscaled .reveal .backgrounds { - filter: greyscale(1); -} -.reveal .right { - margin-left: 33%; -} -.reveal pre + pre { - margin-top: -1em; -} -.reveal section img, -.reveal section video { - border: none; - background: transparent; - box-shadow: none; - filter: drop-shadow(0 0 1px #CCC) drop-shadow(0 0 10px #FFF); -} -.reveal li { - margin-bottom: 1rem; -} -.reveal table { - table-layout: fixed; - width: 100%; - max-width: 1900px; - margin-left: auto; - margin-right: auto; - padding: 1em 0; - font-size: 1em; - border-top: 1px solid currentcolor; - border-bottom: 1px solid currentcolor; -} -.smaller .reveal table { - font-size: 0.8em; -} -.reveal table th, .reveal table td { - padding: 0.1em 0.2em; - white-space: nowrap; - text-align: center; - border-bottom: 0.05em dotted #666; -} -.reveal table th:first-child, .reveal table td:first-child { - text-align: left; -} -.reveal table th img, .reveal table td img { - margin: 0; - border: none; - background: transparent; - box-shadow: none; -} -.reveal video { - width: auto; - height: 80%; -} -.reveal .datatable + table { - font-size: 0.5em; - line-height: 1.4; - border-collapse: collapse; -} -.reveal .datatable + table tr:nth-child(even) { - background: rgba(255, 255, 255, 0.6); -} -.reveal .datatable + table th, .reveal .datatable + table td { - text-align: left; -} -.reveal blockquote { - quotes: "ÔÇ£" "ÔÇØ" "ÔÇÿ" "ÔÇÖ"; - position: relative; - margin-bottom: 1rem; - padding: 1rem; - background-color: rgba(0, 0, 0, 0.9); - font-style: italic; - text-align: left; -} -.reveal blockquote > *:last-child { - margin-bottom: 0; -} -.reveal blockquote:before, .reveal blockquote:after { - position: absolute; - font-family: Times, serif; - font-size: 150%; - font-weight: bold; -} -.reveal blockquote:before { - top: 0; - right: 102%; - content: open-quote; -} -.reveal blockquote:after { - bottom: -20px; - left: 102%; - content: close-quote; - vertical-align: bottom; -} -.reveal .multicolumn { - font-size: 0.6em; - -webkit-column-count: 2; - -moz-column-count: 2; - -ms-column-count: 2; - -o-column-count: 2; - column-count: 2; -} - -/*# sourceMappingURL=extra-styles.css.map */ + font-size: 60px; } + .reveal h1 { + font-size: 2em; } + .reveal h2 { + font-size: 1.25em; } + .reveal h3 { + font-size: 1.1em; } + .reveal h4 { + font-size: 1em; } + .reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal ol, .reveal ul, .reveal p, .reveal table, .reveal pre { + margin-bottom: 2rem; } + html.inverted .reveal h1, html.inverted .reveal h2, html.inverted .reveal h3, html.inverted .reveal h4, html.inverted .reveal h5, html.inverted .reveal h6, html.inverted .reveal ol, html.inverted .reveal ul, html.inverted .reveal p, html.inverted .reveal table, html.inverted .reveal pre { + color: #FFF; + text-shadow: 1px 1px 2px #000, 1px -1px 2px #000, -1px -1px 2px #000, -1px 1px 2px #000, 0 0 4px #000, 0 0 4px #000, 0 0 4px #000, 0 0 4px #000, 0 0 8px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 0, 0, 0.6), 0 0 8px rgba(0, 0, 0, 0.6); } + .reveal pre code { + font-size: 60px; + line-height: 65px; + max-height: 700px; + -webkit-filter: none; + filter: none; + text-shadow: none; + -webkit-box-shadow: inset 0 0 0 2px #666, 0 0 4px 1px rgba(0, 0, 0, 0.6); + -moz-box-shadow: inset 0 0 0 2px #666, 0 0 4px 1px rgba(0, 0, 0, 0.6); + box-shadow: inset 0 0 0 2px #666, 0 0 4px 1px rgba(0, 0, 0, 0.6); } + html.faded .reveal .backgrounds { + opacity: 0.5; + background-blend-mode: multiply; } + html.grayscaled .reveal .backgrounds { + -webkit-filter: greyscale(1); + filter: greyscale(1); } + .reveal .right { + margin-left: 33%; } + .reveal pre + pre { + margin-top: -1em; } + .reveal section img, .reveal section video { + border: none; + background: transparent; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; + -webkit-filter: drop-shadow(0 0 1px #CCC) drop-shadow(0 0 10px #FFF); + filter: drop-shadow(0 0 1px #CCC) drop-shadow(0 0 10px #FFF); } + .reveal li { + margin-bottom: 1rem; } + .reveal table { + table-layout: fixed; + width: 100%; + max-width: 1900px; + margin-left: auto; + margin-right: auto; + padding: 1em 0; + font-size: 1em; + border-top: 1px solid currentcolor; + border-bottom: 1px solid currentcolor; } + .smaller .reveal table { + font-size: 0.8em; } + .reveal table th, .reveal table td { + padding: 0.1em 0.2em; + white-space: nowrap; + text-align: center; + border-bottom: 0.05em dotted #666; } + .reveal table th:first-child, .reveal table td:first-child { + text-align: left; } + .reveal table th img, .reveal table td img { + margin: 0; + border: none; + background: transparent; + -webkit-box-shadow: none; + -moz-box-shadow: none; + box-shadow: none; } + .reveal video { + width: auto; + height: 80%; } + .reveal .datatable + table { + font-size: 0.5em; + line-height: 1.4; + border-collapse: collapse; } + .reveal .datatable + table tr:nth-child(even) { + background: rgba(255, 255, 255, 0.6); } + .reveal .datatable + table th, .reveal .datatable + table td { + text-align: left; } + .reveal blockquote { + quotes: "“" "”" "‘" "’"; + position: relative; + margin-bottom: 1rem; + padding: 1rem; + background-color: rgba(0, 0, 0, 0.9); + font-style: italic; + text-align: left; } + .reveal blockquote > *:last-child { + margin-bottom: 0; } + .reveal blockquote:before, .reveal blockquote:after { + position: absolute; + font-family: Times, serif; + font-size: 150%; + font-weight: bold; } + .reveal blockquote:before { + top: 0; + right: 102%; + content: open-quote; } + .reveal blockquote:after { + bottom: -20px; + left: 102%; + content: close-quote; + vertical-align: bottom; } + .reveal .multicolumn { + font-size: 0.6em; + -webkit-column-count: 2; + -moz-column-count: 2; + -ms-column-count: 2; + column-count: 2; } +/*# sourceMappingURL=extra-styles.css.map */ \ No newline at end of file diff --git a/css/extra-styles.css.map b/css/extra-styles.css.map index d4e3a6a..45d5f2e 100644 --- a/css/extra-styles.css.map +++ b/css/extra-styles.css.map @@ -1,7 +1 @@ -{ -"version": 3, -"mappings": ";AAAA,IAAK;EACJ,UAAU,EAAE,sCAAsC;;;AAGnD,OAAQ;EACP,SAAS,EAAE,IAAI;;AAEf,UAAG;EAAE,SAAS,EAAE,GAAG;;AACnB,UAAG;EAAE,SAAS,EAAE,MAAM;;AACtB,UAAG;EAAE,SAAS,EAAE,KAAK;;AACrB,UAAG;EAAE,SAAS,EAAE,GAAG;;AAEnB,qIAA8C;EAC7C,aAAa,EAAE,IAAI;;AAEnB,+RAAgB;EACf,KAAK,EAAE,IAAI;EACX,WAAW,EAAE,sNAAgB;;AAI/B,gBAAS;EACN,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;EACnB,UAAU,EAAE,KAAK;EACjB,MAAM,EAAE,IAAI;EACZ,WAAW,EAAE,IAAI;EACjB,UAAU,EAAE,oDAAoB;;AAGjC,+BAA0B;EACzB,OAAO,EAAE,GAAG;EACZ,qBAAqB,EAAE,QAAQ;;AAEhC,oCAA+B;EAC9B,MAAM,EAAE,YAAY;;AAErB,cAAO;EACN,WAAW,EAAE,GAAG;;AAGjB,iBAAU;EACT,UAAU,EAAE,IAAI;;AAGjB;qBACc;EACb,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,WAAW;EACvB,UAAU,EAAE,IAAI;EAChB,MAAM,EAAE,oDAAoD;;AAG7D,UAAG;EACF,aAAa,EAAE,IAAI;;AAGpB,aAAO;EACN,YAAY,EAAE,KAAK;EACnB,KAAK,EAAE,IAAI;EACX,SAAS,EAAE,MAAM;EACjB,WAAW,EAAE,IAAI;EACjB,YAAY,EAAE,IAAI;EAClB,OAAO,EAAE,KAAK;EACd,SAAS,EAAE,GAAG;EACd,UAAU,EAAE,sBAAsB;EAClC,aAAa,EAAE,sBAAsB;;AAErC,sBAAW;EACV,SAAS,EAAE,KAAK;;AAGjB,kCAAO;EACN,OAAO,EAAE,WAAW;EACpB,WAAW,EAAE,MAAM;EACnB,UAAU,EAAG,MAAM;EACnB,aAAa,EAAE,kBAAkB;;AAEjC,0DAAc;EACb,UAAU,EAAE,IAAI;;AAGjB,0CAAI;EACH,MAAM,EAAE,CAAC;EACT,MAAM,EAAE,IAAI;EACZ,UAAU,EAAE,WAAW;EACvB,UAAU,EAAE,IAAI;;AAKnB,aAAM;EACL,KAAK,EAAE,IAAI;EACX,MAAM,EAAE,GAAG;;AAGZ,0BAAmB;EAClB,SAAS,EAAE,KAAK;EAChB,WAAW,EAAE,GAAG;EAChB,eAAe,EAAE,QAAQ;;AAEzB,6CAAmB;EAClB,UAAU,EAAE,wBAAoB;;AAEjC,4DAAO;EACN,UAAU,EAAG,IAAI;;AAInB,kBAAW;EACV,MAAM,EAAE,uBAAuB;EAC/B,QAAQ,EAAE,QAAQ;EAClB,aAAa,EAAE,IAAI;EACnB,OAAO,EAAE,IAAI;EACb,gBAAgB,EAAE,kBAAc;EAChC,UAAU,EAAE,MAAM;EAClB,UAAU,EAAE,IAAI;;AAEhB,iCAAe;EACd,aAAa,EAAE,CAAC;;AAEjB,mDACQ;EACP,QAAQ,EAAE,QAAQ;EAClB,WAAW,EAAE,YAAY;EACzB,SAAS,EAAE,IAAI;EACf,WAAW,EAAE,IAAI;;AAElB,yBAAS;EACR,GAAG,EAAE,CAAC;EACN,KAAK,EAAE,IAAI;EACX,OAAO,EAAE,UAAU;;AAEpB,wBAAQ;EACP,MAAM,EAAE,KAAK;EACb,IAAI,EAAE,IAAI;EACV,OAAO,EAAE,WAAW;EACpB,cAAc,EAAE,MAAM;;AAIxB,oBAAa;EACZ,SAAS,EAAE,KAAK;EAChB,oBAAoB,EAAE,CAAC;EACvB,iBAAiB,EAAE,CAAC;EACpB,gBAAgB,EAAE,CAAC;EACnB,eAAe,EAAE,CAAC;EAClB,YAAY,EAAE,CAAC", -"sources": ["../scss/extra-styles.scss"], -"names": [], -"file": "extra-styles.css" -} +{"version":3,"sources":["scss/extra-styles.scss"],"names":[],"mappings":"AAAA;EACC,mFAAY;EAAZ,sDAAY;EAAZ,mDAAY;EAAZ,iDAAY;EAAZ,oDAAY,EAAA;;AAGb;EACC,iBAAW,EAAA;EAAZ;IAEM,gBAAW,EAAA;EAAjB;IACM,mBAAW,EAAA;EAAjB;IACM,kBAAW,EAAA;EAAjB;IACM,gBAAW,EAAA;EAAjB;IAGE,qBAAe,EAAA;IAAjB;MAGG,aAAO;MACP,qOAAyB,EAAA;EAE5B;IAGI,iBAAW;IACX,mBAAa;IACf,mBAAY;IACZ,sBAAQ;YAAR,cAAQ;IACR,mBAAa;IACb,0EAA4B;OAA5B,uEAA4B;YAA5B,kEAA4B,EAAA;EAC9B;IAGE,cAAS;IACT,iCAAuB,EAAA;EACzB;IAEE,8BAAQ;YAAR,sBAAQ,EAAA;EACV;IAEE,kBAAa,EAAA;EACf;IAGE,kBAAY,EAAA;EACd;IAIE,cAAQ;IACR,yBAAY;IACZ,0BAAY;OAAZ,uBAAY;YAAZ,kBAAY;IACZ,sEAAgC;YAAhC,8DAAgC,EAAA;EAClC;IAGE,qBAAe,EAAA;EACjB;IAGE,qBAAc;IACd,aAAO;IACP,mBAAW;IACX,mBAAa;IACb,oBAAc;IACd,gBAAS;IACT,gBAAW;IACX,oCAAY;IACZ,uCAAe,EAAA;IAAjB;MAGG,kBAAW,EAAA;IACd;MAGG,sBAAS;MACT,qBAAa;MACb,oBAAa;MACb,mCAAe,EAAA;MAAlB;QAGI,kBAAY,EAAA;MAChB;QAGI,WAAQ;QACR,cAAQ;QACR,yBAAY;QACZ,0BAAY;WAAZ,uBAAY;gBAAZ,kBAAY,EAAA;EAGhB;IAGE,aAAO;IACP,aAAQ,EAAA;EACV;IAGE,kBAAW;IACX,kBAAa;IACb,2BAAiB,EAAA;IAAnB;MAGG,sCAAY,EAAA;IACf;MAEG,kBAAa,EAAA;EAEhB;IAGE,yBAAQ;IACR,oBAAU;IACV,qBAAe;IACf,eAAS;IACT,sCAAkB;IAClB,oBAAY;IACZ,kBAAY,EAAA;IAAd;MAGG,kBAAe,EAAA;IAClB;MAGG,oBAAU;MACV,2BAAa;MACb,iBAAW;MACX,mBAAa,EAAA;IAChB;MAEG,QAAK;MACL,aAAO;MACP,qBAAS,EAAA;IACZ;MAEG,eAAQ;MACR,YAAM;MACN,sBAAS;MACT,wBAAgB,EAAA;EAEnB;IAGE,kBAAW;IACX,yBAAsB;IACtB,sBAAmB;IACnB,qBAAkB;IAElB,iBAAc,EAAA","file":"extra-styles.css"} \ No newline at end of file diff --git a/index.html b/index.html index d62e72b..7415ff2 100644 --- a/index.html +++ b/index.html @@ -20,9 +20,9 @@ - + - +