diff --git a/.gitignore b/.gitignore index 9d12d40..f84b556 100644 --- a/.gitignore +++ b/.gitignore @@ -2,20 +2,15 @@ node_modules/ .sass-cache/ .cache/ public/ -content/folio-images -content/client-images -content/blog-images -content/user-images +content/ .ftpconfig .vscode/ config.development.json *.swp -/_migrations/ /config.json config/config.json brain/models/_backup/ /_maintenance/ -/migrations *.DS_Store /forfipamo site-settings.json \ No newline at end of file diff --git a/brain/app.js b/brain/app.js index 8fb1d0d..befe22d 100644 --- a/brain/app.js +++ b/brain/app.js @@ -53,8 +53,8 @@ var mailer = require('./api/mail/mailer'); var auth = require('./api/v1/auth'); // API PATHS -app.use('/api/post', postLibrary); -app.use('/api/settings', settings); +//app.use('/api/post', postLibrary); +//app.use('/api/settings', settings); app.use('/api/mail', mailer); app.use('/api/v1/auth', auth); // PAGES diff --git a/config/migrations/20181109165352-clip-featured-to-post.js b/config/migrations/20181109165352-clip-featured-to-post.js deleted file mode 100644 index c896c88..0000000 --- a/config/migrations/20181109165352-clip-featured-to-post.js +++ /dev/null @@ -1,21 +0,0 @@ -'use strict'; - -module.exports = { - up: (queryInterface, Sequelize) => { - return queryInterface.addColumn('Posts', 'featured', { - type: Sequelize.BOOLEAN, - unique: false, - allowNull: true, - defaultValue: false - }); - }, - - down: (queryInterface, Sequelize) => { - return queryInterface.removeColumn('Posts', 'featured', { - type: Sequelize.BOOLEAN, - unique: false, - allowNull: true, - defaultValue: false - }); - } -}; \ No newline at end of file diff --git a/config/migrations/20181109173027-clip-published-to-post.js b/config/migrations/20181109173027-clip-published-to-post.js deleted file mode 100644 index 8e92bb6..0000000 --- a/config/migrations/20181109173027-clip-published-to-post.js +++ /dev/null @@ -1,21 +0,0 @@ -'use strict'; - -module.exports = { - up: (queryInterface, Sequelize) => { - return queryInterface.addColumn('Posts', 'published', { - type: Sequelize.BOOLEAN, - unique: false, - allowNull: true, - defaultValue: false - }); - }, - - down: (queryInterface, Sequelize) => { - return queryInterface.removeColumn('Posts', 'published', { - type: Sequelize.BOOLEAN, - unique: false, - allowNull: true, - defaultValue: false - }); - } -}; \ No newline at end of file diff --git a/content/fipamo_email.html b/content/fipamo_email.html deleted file mode 100644 index 910080b..0000000 --- a/content/fipamo_email.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - Email title or subject - - - - - - - - - - - - -
- - - - - -
- - - - - - - - - - - - -
- - HEADER - -
- - BIG BODY - -
- - footer text - -
- - -
- -
- - - - \ No newline at end of file diff --git a/public/admin/index.html b/public/admin/index.html deleted file mode 100644 index 2e1ca9f..0000000 --- a/public/admin/index.html +++ /dev/null @@ -1 +0,0 @@ -This is the admin sections \ No newline at end of file diff --git a/public/index.html b/public/index.html deleted file mode 100644 index f21ee3f..0000000 --- a/public/index.html +++ /dev/null @@ -1 +0,0 @@ -What up, doe \ No newline at end of file diff --git a/themes/dash/assets/css/dash.css b/themes/dash/assets/css/dash.css deleted file mode 100644 index 126a823..0000000 --- a/themes/dash/assets/css/dash.css +++ /dev/null @@ -1,2923 +0,0 @@ -/** -------------------------------- --- Bulma -------------------------------- -* */ -@-moz-keyframes spinAround { - from { - transform: rotate(0deg); - } - to { - transform: rotate(359deg); - } -} -@-webkit-keyframes spinAround { - from { - transform: rotate(0deg); - } - to { - transform: rotate(359deg); - } -} -@-o-keyframes spinAround { - from { - transform: rotate(0deg); - } - to { - transform: rotate(359deg); - } -} -@keyframes spinAround { - from { - transform: rotate(0deg); - } - to { - transform: rotate(359deg); - } -} -.column { - display: block; - flex-basis: 0; - flex-grow: 1; - flex-shrink: 1; - padding: 0.75rem; -} -.columns.is-mobile > .column.is-narrow { - flex: none; -} -.columns.is-mobile > .column.is-full { - flex: none; - width: 100%; -} -.columns.is-mobile > .column.is-three-quarters { - flex: none; - width: 75%; -} -.columns.is-mobile > .column.is-two-thirds { - flex: none; - width: 66.6666%; -} -.columns.is-mobile > .column.is-half { - flex: none; - width: 50%; -} -.columns.is-mobile > .column.is-one-third { - flex: none; - width: 33.3333%; -} -.columns.is-mobile > .column.is-one-quarter { - flex: none; - width: 25%; -} -.columns.is-mobile > .column.is-one-fifth { - flex: none; - width: 20%; -} -.columns.is-mobile > .column.is-two-fifths { - flex: none; - width: 40%; -} -.columns.is-mobile > .column.is-three-fifths { - flex: none; - width: 60%; -} -.columns.is-mobile > .column.is-four-fifths { - flex: none; -} -.columns.is-mobile > .column.is-offset-three-quarters { - margin-left: 75%; -} -.columns.is-mobile > .column.is-offset-two-thirds { - margin-left: 66.6666%; -} -.columns.is-mobile > .column.is-offset-half { - margin-left: 50%; -} -.columns.is-mobile > .column.is-offset-one-third { - margin-left: 33.3333%; -} -.columns.is-mobile > .column.is-offset-one-quarter { - margin-left: 25%; -} -.columns.is-mobile > .column.is-offset-one-fifth { - margin-left: 20%; -} -.columns.is-mobile > .column.is-offset-two-fifths { - margin-left: 40%; -} -.columns.is-mobile > .column.is-offset-three-fifths { - margin-left: 60%; -} -.columns.is-mobile > .column.is-offset-four-fifths { - margin-left: 80%; -} -.columns.is-mobile > .column.is-1 { - flex: none; - width: 8.333333333333332%; -} -.columns.is-mobile > .column.is-offset-1 { - margin-left: 8.333333333333332%; -} -.columns.is-mobile > .column.is-2 { - flex: none; - width: 16.666666666666664%; -} -.columns.is-mobile > .column.is-offset-2 { - margin-left: 16.666666666666664%; -} -.columns.is-mobile > .column.is-3 { - flex: none; - width: 25%; -} -.columns.is-mobile > .column.is-offset-3 { - margin-left: 25%; -} -.columns.is-mobile > .column.is-4 { - flex: none; - width: 33.33333333333333%; -} -.columns.is-mobile > .column.is-offset-4 { - margin-left: 33.33333333333333%; -} -.columns.is-mobile > .column.is-5 { - flex: none; - width: 41.66666666666667%; -} -.columns.is-mobile > .column.is-offset-5 { - margin-left: 41.66666666666667%; -} -.columns.is-mobile > .column.is-6 { - flex: none; - width: 50%; -} -.columns.is-mobile > .column.is-offset-6 { - margin-left: 50%; -} -.columns.is-mobile > .column.is-7 { - flex: none; - width: 58.333333333333336%; -} -.columns.is-mobile > .column.is-offset-7 { - margin-left: 58.333333333333336%; -} -.columns.is-mobile > .column.is-8 { - flex: none; - width: 66.66666666666666%; -} -.columns.is-mobile > .column.is-offset-8 { - margin-left: 66.66666666666666%; -} -.columns.is-mobile > .column.is-9 { - flex: none; - width: 75%; -} -.columns.is-mobile > .column.is-offset-9 { - margin-left: 75%; -} -.columns.is-mobile > .column.is-10 { - flex: none; - width: 83.33333333333334%; -} -.columns.is-mobile > .column.is-offset-10 { - margin-left: 83.33333333333334%; -} -.columns.is-mobile > .column.is-11 { - flex: none; - width: 91.66666666666666%; -} -.columns.is-mobile > .column.is-offset-11 { - margin-left: 91.66666666666666%; -} -.columns.is-mobile > .column.is-12 { - flex: none; - width: 100%; -} -.columns.is-mobile > .column.is-offset-12 { - margin-left: 100%; -} -@media screen and (max-width: 768px) { - .column.is-narrow-mobile { - flex: none; - } - .column.is-full-mobile { - flex: none; - width: 100%; - } - .column.is-three-quarters-mobile { - flex: none; - width: 75%; - } - .column.is-two-thirds-mobile { - flex: none; - width: 66.6666%; - } - .column.is-half-mobile { - flex: none; - width: 50%; - } - .column.is-one-third-mobile { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-mobile { - flex: none; - width: 25%; - } - .column.is-one-fifth-mobile { - flex: none; - width: 20%; - } - .column.is-two-fifths-mobile { - flex: none; - width: 40%; - } - .column.is-three-fifths-mobile { - flex: none; - width: 60%; - } - .column.is-four-fifths-mobile { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-mobile { - margin-left: 75%; - } - .column.is-offset-two-thirds-mobile { - margin-left: 66.6666%; - } - .column.is-offset-half-mobile { - margin-left: 50%; - } - .column.is-offset-one-third-mobile { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-mobile { - margin-left: 25%; - } - .column.is-offset-one-fifth-mobile { - margin-left: 20%; - } - .column.is-offset-two-fifths-mobile { - margin-left: 40%; - } - .column.is-offset-three-fifths-mobile { - margin-left: 60%; - } - .column.is-offset-four-fifths-mobile { - margin-left: 80%; - } - .column.is-1-mobile { - flex: none; - width: 8.333333333333332%; - } - .column.is-offset-1-mobile { - margin-left: 8.333333333333332%; - } - .column.is-2-mobile { - flex: none; - width: 16.666666666666664%; - } - .column.is-offset-2-mobile { - margin-left: 16.666666666666664%; - } - .column.is-3-mobile { - flex: none; - width: 25%; - } - .column.is-offset-3-mobile { - margin-left: 25%; - } - .column.is-4-mobile { - flex: none; - width: 33.33333333333333%; - } - .column.is-offset-4-mobile { - margin-left: 33.33333333333333%; - } - .column.is-5-mobile { - flex: none; - width: 41.66666666666667%; - } - .column.is-offset-5-mobile { - margin-left: 41.66666666666667%; - } - .column.is-6-mobile { - flex: none; - width: 50%; - } - .column.is-offset-6-mobile { - margin-left: 50%; - } - .column.is-7-mobile { - flex: none; - width: 58.333333333333336%; - } - .column.is-offset-7-mobile { - margin-left: 58.333333333333336%; - } - .column.is-8-mobile { - flex: none; - width: 66.66666666666666%; - } - .column.is-offset-8-mobile { - margin-left: 66.66666666666666%; - } - .column.is-9-mobile { - flex: none; - width: 75%; - } - .column.is-offset-9-mobile { - margin-left: 75%; - } - .column.is-10-mobile { - flex: none; - width: 83.33333333333334%; - } - .column.is-offset-10-mobile { - margin-left: 83.33333333333334%; - } - .column.is-11-mobile { - flex: none; - width: 91.66666666666666%; - } - .column.is-offset-11-mobile { - margin-left: 91.66666666666666%; - } - .column.is-12-mobile { - flex: none; - width: 100%; - } - .column.is-offset-12-mobile { - margin-left: 100%; - } -} -@media screen and (min-width: 769px), print { - .column.is-narrow, - .column.is-narrow-tablet { - flex: none; - } - .column.is-full, - .column.is-full-tablet { - flex: none; - width: 100%; - } - .column.is-three-quarters, - .column.is-three-quarters-tablet { - flex: none; - width: 75%; - } - .column.is-two-thirds, - .column.is-two-thirds-tablet { - flex: none; - width: 66.6666%; - } - .column.is-half, - .column.is-half-tablet { - flex: none; - width: 50%; - } - .column.is-one-third, - .column.is-one-third-tablet { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter, - .column.is-one-quarter-tablet { - flex: none; - width: 25%; - } - .column.is-one-fifth, - .column.is-one-fifth-tablet { - flex: none; - width: 20%; - } - .column.is-two-fifths, - .column.is-two-fifths-tablet { - flex: none; - width: 40%; - } - .column.is-three-fifths, - .column.is-three-fifths-tablet { - flex: none; - width: 60%; - } - .column.is-four-fifths, - .column.is-four-fifths-tablet { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters, - .column.is-offset-three-quarters-tablet { - margin-left: 75%; - } - .column.is-offset-two-thirds, - .column.is-offset-two-thirds-tablet { - margin-left: 66.6666%; - } - .column.is-offset-half, - .column.is-offset-half-tablet { - margin-left: 50%; - } - .column.is-offset-one-third, - .column.is-offset-one-third-tablet { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter, - .column.is-offset-one-quarter-tablet { - margin-left: 25%; - } - .column.is-offset-one-fifth, - .column.is-offset-one-fifth-tablet { - margin-left: 20%; - } - .column.is-offset-two-fifths, - .column.is-offset-two-fifths-tablet { - margin-left: 40%; - } - .column.is-offset-three-fifths, - .column.is-offset-three-fifths-tablet { - margin-left: 60%; - } - .column.is-offset-four-fifths, - .column.is-offset-four-fifths-tablet { - margin-left: 80%; - } - .column.is-1, - .column.is-1-tablet { - flex: none; - width: 8.333333333333332%; - } - .column.is-offset-1, - .column.is-offset-1-tablet { - margin-left: 8.333333333333332%; - } - .column.is-2, - .column.is-2-tablet { - flex: none; - width: 16.666666666666664%; - } - .column.is-offset-2, - .column.is-offset-2-tablet { - margin-left: 16.666666666666664%; - } - .column.is-3, - .column.is-3-tablet { - flex: none; - width: 25%; - } - .column.is-offset-3, - .column.is-offset-3-tablet { - margin-left: 25%; - } - .column.is-4, - .column.is-4-tablet { - flex: none; - width: 33.33333333333333%; - } - .column.is-offset-4, - .column.is-offset-4-tablet { - margin-left: 33.33333333333333%; - } - .column.is-5, - .column.is-5-tablet { - flex: none; - width: 41.66666666666667%; - } - .column.is-offset-5, - .column.is-offset-5-tablet { - margin-left: 41.66666666666667%; - } - .column.is-6, - .column.is-6-tablet { - flex: none; - width: 50%; - } - .column.is-offset-6, - .column.is-offset-6-tablet { - margin-left: 50%; - } - .column.is-7, - .column.is-7-tablet { - flex: none; - width: 58.333333333333336%; - } - .column.is-offset-7, - .column.is-offset-7-tablet { - margin-left: 58.333333333333336%; - } - .column.is-8, - .column.is-8-tablet { - flex: none; - width: 66.66666666666666%; - } - .column.is-offset-8, - .column.is-offset-8-tablet { - margin-left: 66.66666666666666%; - } - .column.is-9, - .column.is-9-tablet { - flex: none; - width: 75%; - } - .column.is-offset-9, - .column.is-offset-9-tablet { - margin-left: 75%; - } - .column.is-10, - .column.is-10-tablet { - flex: none; - width: 83.33333333333334%; - } - .column.is-offset-10, - .column.is-offset-10-tablet { - margin-left: 83.33333333333334%; - } - .column.is-11, - .column.is-11-tablet { - flex: none; - width: 91.66666666666666%; - } - .column.is-offset-11, - .column.is-offset-11-tablet { - margin-left: 91.66666666666666%; - } - .column.is-12, - .column.is-12-tablet { - flex: none; - width: 100%; - } - .column.is-offset-12, - .column.is-offset-12-tablet { - margin-left: 100%; - } -} -@media screen and (max-width: 1023px) { - .column.is-narrow-touch { - flex: none; - } - .column.is-full-touch { - flex: none; - width: 100%; - } - .column.is-three-quarters-touch { - flex: none; - width: 75%; - } - .column.is-two-thirds-touch { - flex: none; - width: 66.6666%; - } - .column.is-half-touch { - flex: none; - width: 50%; - } - .column.is-one-third-touch { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-touch { - flex: none; - width: 25%; - } - .column.is-one-fifth-touch { - flex: none; - width: 20%; - } - .column.is-two-fifths-touch { - flex: none; - width: 40%; - } - .column.is-three-fifths-touch { - flex: none; - width: 60%; - } - .column.is-four-fifths-touch { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-touch { - margin-left: 75%; - } - .column.is-offset-two-thirds-touch { - margin-left: 66.6666%; - } - .column.is-offset-half-touch { - margin-left: 50%; - } - .column.is-offset-one-third-touch { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-touch { - margin-left: 25%; - } - .column.is-offset-one-fifth-touch { - margin-left: 20%; - } - .column.is-offset-two-fifths-touch { - margin-left: 40%; - } - .column.is-offset-three-fifths-touch { - margin-left: 60%; - } - .column.is-offset-four-fifths-touch { - margin-left: 80%; - } - .column.is-1-touch { - flex: none; - width: 8.333333333333332%; - } - .column.is-offset-1-touch { - margin-left: 8.333333333333332%; - } - .column.is-2-touch { - flex: none; - width: 16.666666666666664%; - } - .column.is-offset-2-touch { - margin-left: 16.666666666666664%; - } - .column.is-3-touch { - flex: none; - width: 25%; - } - .column.is-offset-3-touch { - margin-left: 25%; - } - .column.is-4-touch { - flex: none; - width: 33.33333333333333%; - } - .column.is-offset-4-touch { - margin-left: 33.33333333333333%; - } - .column.is-5-touch { - flex: none; - width: 41.66666666666667%; - } - .column.is-offset-5-touch { - margin-left: 41.66666666666667%; - } - .column.is-6-touch { - flex: none; - width: 50%; - } - .column.is-offset-6-touch { - margin-left: 50%; - } - .column.is-7-touch { - flex: none; - width: 58.333333333333336%; - } - .column.is-offset-7-touch { - margin-left: 58.333333333333336%; - } - .column.is-8-touch { - flex: none; - width: 66.66666666666666%; - } - .column.is-offset-8-touch { - margin-left: 66.66666666666666%; - } - .column.is-9-touch { - flex: none; - width: 75%; - } - .column.is-offset-9-touch { - margin-left: 75%; - } - .column.is-10-touch { - flex: none; - width: 83.33333333333334%; - } - .column.is-offset-10-touch { - margin-left: 83.33333333333334%; - } - .column.is-11-touch { - flex: none; - width: 91.66666666666666%; - } - .column.is-offset-11-touch { - margin-left: 91.66666666666666%; - } - .column.is-12-touch { - flex: none; - width: 100%; - } - .column.is-offset-12-touch { - margin-left: 100%; - } -} -@media screen and (min-width: 1024px) { - .column.is-narrow-desktop { - flex: none; - } - .column.is-full-desktop { - flex: none; - width: 100%; - } - .column.is-three-quarters-desktop { - flex: none; - width: 75%; - } - .column.is-two-thirds-desktop { - flex: none; - width: 66.6666%; - } - .column.is-half-desktop { - flex: none; - width: 50%; - } - .column.is-one-third-desktop { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-desktop { - flex: none; - width: 25%; - } - .column.is-one-fifth-desktop { - flex: none; - width: 20%; - } - .column.is-two-fifths-desktop { - flex: none; - width: 40%; - } - .column.is-three-fifths-desktop { - flex: none; - width: 60%; - } - .column.is-four-fifths-desktop { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-desktop { - margin-left: 75%; - } - .column.is-offset-two-thirds-desktop { - margin-left: 66.6666%; - } - .column.is-offset-half-desktop { - margin-left: 50%; - } - .column.is-offset-one-third-desktop { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-desktop { - margin-left: 25%; - } - .column.is-offset-one-fifth-desktop { - margin-left: 20%; - } - .column.is-offset-two-fifths-desktop { - margin-left: 40%; - } - .column.is-offset-three-fifths-desktop { - margin-left: 60%; - } - .column.is-offset-four-fifths-desktop { - margin-left: 80%; - } - .column.is-1-desktop { - flex: none; - width: 8.333333333333332%; - } - .column.is-offset-1-desktop { - margin-left: 8.333333333333332%; - } - .column.is-2-desktop { - flex: none; - width: 16.666666666666664%; - } - .column.is-offset-2-desktop { - margin-left: 16.666666666666664%; - } - .column.is-3-desktop { - flex: none; - width: 25%; - } - .column.is-offset-3-desktop { - margin-left: 25%; - } - .column.is-4-desktop { - flex: none; - width: 33.33333333333333%; - } - .column.is-offset-4-desktop { - margin-left: 33.33333333333333%; - } - .column.is-5-desktop { - flex: none; - width: 41.66666666666667%; - } - .column.is-offset-5-desktop { - margin-left: 41.66666666666667%; - } - .column.is-6-desktop { - flex: none; - width: 50%; - } - .column.is-offset-6-desktop { - margin-left: 50%; - } - .column.is-7-desktop { - flex: none; - width: 58.333333333333336%; - } - .column.is-offset-7-desktop { - margin-left: 58.333333333333336%; - } - .column.is-8-desktop { - flex: none; - width: 66.66666666666666%; - } - .column.is-offset-8-desktop { - margin-left: 66.66666666666666%; - } - .column.is-9-desktop { - flex: none; - width: 75%; - } - .column.is-offset-9-desktop { - margin-left: 75%; - } - .column.is-10-desktop { - flex: none; - width: 83.33333333333334%; - } - .column.is-offset-10-desktop { - margin-left: 83.33333333333334%; - } - .column.is-11-desktop { - flex: none; - width: 91.66666666666666%; - } - .column.is-offset-11-desktop { - margin-left: 91.66666666666666%; - } - .column.is-12-desktop { - flex: none; - width: 100%; - } - .column.is-offset-12-desktop { - margin-left: 100%; - } -} -@media screen and (min-width: 1216px) { - .column.is-narrow-widescreen { - flex: none; - } - .column.is-full-widescreen { - flex: none; - width: 100%; - } - .column.is-three-quarters-widescreen { - flex: none; - width: 75%; - } - .column.is-two-thirds-widescreen { - flex: none; - width: 66.6666%; - } - .column.is-half-widescreen { - flex: none; - width: 50%; - } - .column.is-one-third-widescreen { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-widescreen { - flex: none; - width: 25%; - } - .column.is-one-fifth-widescreen { - flex: none; - width: 20%; - } - .column.is-two-fifths-widescreen { - flex: none; - width: 40%; - } - .column.is-three-fifths-widescreen { - flex: none; - width: 60%; - } - .column.is-four-fifths-widescreen { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-widescreen { - margin-left: 75%; - } - .column.is-offset-two-thirds-widescreen { - margin-left: 66.6666%; - } - .column.is-offset-half-widescreen { - margin-left: 50%; - } - .column.is-offset-one-third-widescreen { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-widescreen { - margin-left: 25%; - } - .column.is-offset-one-fifth-widescreen { - margin-left: 20%; - } - .column.is-offset-two-fifths-widescreen { - margin-left: 40%; - } - .column.is-offset-three-fifths-widescreen { - margin-left: 60%; - } - .column.is-offset-four-fifths-widescreen { - margin-left: 80%; - } - .column.is-1-widescreen { - flex: none; - width: 8.333333333333332%; - } - .column.is-offset-1-widescreen { - margin-left: 8.333333333333332%; - } - .column.is-2-widescreen { - flex: none; - width: 16.666666666666664%; - } - .column.is-offset-2-widescreen { - margin-left: 16.666666666666664%; - } - .column.is-3-widescreen { - flex: none; - width: 25%; - } - .column.is-offset-3-widescreen { - margin-left: 25%; - } - .column.is-4-widescreen { - flex: none; - width: 33.33333333333333%; - } - .column.is-offset-4-widescreen { - margin-left: 33.33333333333333%; - } - .column.is-5-widescreen { - flex: none; - width: 41.66666666666667%; - } - .column.is-offset-5-widescreen { - margin-left: 41.66666666666667%; - } - .column.is-6-widescreen { - flex: none; - width: 50%; - } - .column.is-offset-6-widescreen { - margin-left: 50%; - } - .column.is-7-widescreen { - flex: none; - width: 58.333333333333336%; - } - .column.is-offset-7-widescreen { - margin-left: 58.333333333333336%; - } - .column.is-8-widescreen { - flex: none; - width: 66.66666666666666%; - } - .column.is-offset-8-widescreen { - margin-left: 66.66666666666666%; - } - .column.is-9-widescreen { - flex: none; - width: 75%; - } - .column.is-offset-9-widescreen { - margin-left: 75%; - } - .column.is-10-widescreen { - flex: none; - width: 83.33333333333334%; - } - .column.is-offset-10-widescreen { - margin-left: 83.33333333333334%; - } - .column.is-11-widescreen { - flex: none; - width: 91.66666666666666%; - } - .column.is-offset-11-widescreen { - margin-left: 91.66666666666666%; - } - .column.is-12-widescreen { - flex: none; - width: 100%; - } - .column.is-offset-12-widescreen { - margin-left: 100%; - } -} -@media screen and (min-width: 1408px) { - .column.is-narrow-fullhd { - flex: none; - } - .column.is-full-fullhd { - flex: none; - width: 100%; - } - .column.is-three-quarters-fullhd { - flex: none; - width: 75%; - } - .column.is-two-thirds-fullhd { - flex: none; - width: 66.6666%; - } - .column.is-half-fullhd { - flex: none; - width: 50%; - } - .column.is-one-third-fullhd { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-fullhd { - flex: none; - width: 25%; - } - .column.is-one-fifth-fullhd { - flex: none; - width: 20%; - } - .column.is-two-fifths-fullhd { - flex: none; - width: 40%; - } - .column.is-three-fifths-fullhd { - flex: none; - width: 60%; - } - .column.is-four-fifths-fullhd { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-fullhd { - margin-left: 75%; - } - .column.is-offset-two-thirds-fullhd { - margin-left: 66.6666%; - } - .column.is-offset-half-fullhd { - margin-left: 50%; - } - .column.is-offset-one-third-fullhd { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-fullhd { - margin-left: 25%; - } - .column.is-offset-one-fifth-fullhd { - margin-left: 20%; - } - .column.is-offset-two-fifths-fullhd { - margin-left: 40%; - } - .column.is-offset-three-fifths-fullhd { - margin-left: 60%; - } - .column.is-offset-four-fifths-fullhd { - margin-left: 80%; - } - .column.is-1-fullhd { - flex: none; - width: 8.333333333333332%; - } - .column.is-offset-1-fullhd { - margin-left: 8.333333333333332%; - } - .column.is-2-fullhd { - flex: none; - width: 16.666666666666664%; - } - .column.is-offset-2-fullhd { - margin-left: 16.666666666666664%; - } - .column.is-3-fullhd { - flex: none; - width: 25%; - } - .column.is-offset-3-fullhd { - margin-left: 25%; - } - .column.is-4-fullhd { - flex: none; - width: 33.33333333333333%; - } - .column.is-offset-4-fullhd { - margin-left: 33.33333333333333%; - } - .column.is-5-fullhd { - flex: none; - width: 41.66666666666667%; - } - .column.is-offset-5-fullhd { - margin-left: 41.66666666666667%; - } - .column.is-6-fullhd { - flex: none; - width: 50%; - } - .column.is-offset-6-fullhd { - margin-left: 50%; - } - .column.is-7-fullhd { - flex: none; - width: 58.333333333333336%; - } - .column.is-offset-7-fullhd { - margin-left: 58.333333333333336%; - } - .column.is-8-fullhd { - flex: none; - width: 66.66666666666666%; - } - .column.is-offset-8-fullhd { - margin-left: 66.66666666666666%; - } - .column.is-9-fullhd { - flex: none; - width: 75%; - } - .column.is-offset-9-fullhd { - margin-left: 75%; - } - .column.is-10-fullhd { - flex: none; - width: 83.33333333333334%; - } - .column.is-offset-10-fullhd { - margin-left: 83.33333333333334%; - } - .column.is-11-fullhd { - flex: none; - width: 91.66666666666666%; - } - .column.is-offset-11-fullhd { - margin-left: 91.66666666666666%; - } - .column.is-12-fullhd { - flex: none; - width: 100%; - } - .column.is-offset-12-fullhd { - margin-left: 100%; - } -} -.columns { - margin-left: -0.75rem; - margin-right: -0.75rem; - margin-top: -0.75rem; -} -.columns:last-child { - margin-bottom: -0.75rem; -} -.columns:not(:last-child) { - margin-bottom: calc(1.5rem - 0.75rem); -} -.columns.is-centered { - justify-content: center; -} -.columns.is-gapless { - margin-left: 0; - margin-right: 0; - margin-top: 0; -} -.columns.is-gapless > .column { - margin: 0; - padding: 0 !important; -} -.columns.is-gapless:not(:last-child) { - margin-bottom: 1.5rem; -} -.columns.is-gapless:last-child { - margin-bottom: 0; -} -.columns.is-mobile { - display: flex; -} -.columns.is-multiline { - flex-wrap: wrap; -} -.columns.is-vcentered { - align-items: center; -} -@media screen and (min-width: 769px), print { - .columns:not(.is-desktop) { - display: flex; - } -} -@media screen and (min-width: 1024px) { - .columns.is-desktop { - display: flex; - } -} -.columns.is-variable { - --columnGap: 0.75rem; - margin-left: calc(-1 * var(--columnGap)); - margin-right: calc(-1 * var(--columnGap)); -} -.columns.is-variable .column { - padding-left: var(--columnGap); - padding-right: var(--columnGap); -} -.columns.is-variable.is-0 { - --columnGap: 0rem; -} -.columns.is-variable.is-1 { - --columnGap: 0.25rem; -} -.columns.is-variable.is-2 { - --columnGap: 0.5rem; -} -.columns.is-variable.is-3 { - --columnGap: 0.75rem; -} -.columns.is-variable.is-4 { - --columnGap: 1rem; -} -.columns.is-variable.is-5 { - --columnGap: 1.25rem; -} -.columns.is-variable.is-6 { - --columnGap: 1.5rem; -} -.columns.is-variable.is-7 { - --columnGap: 1.75rem; -} -.columns.is-variable.is-8 { - --columnGap: 2rem; -} -/** -------------------------------- --- Colors -------------------------------- -* */ -/** -------------------------------- --- Mixins -------------------------------- -* */ -/** -------------------------------- --- Normalize -------------------------------- -* */ -html { - line-height: 1.15; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; -} -body { - margin: 0; -} -article, -aside, -footer, -header, -nav, -section { - display: block; -} -h1 { - font-size: 2em; - margin: 0.67em 0; -} -figcaption, -figure, -main { - display: block; -} -figure { - margin: 1em 40px; -} -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} -pre { - font-family: monospace, monospace; - font-size: 1em; -} -a { - background-color: transparent; - -webkit-text-decoration-skip: objects; -} -a:active, -a:hover { - outline-width: 0; -} -abbr[title] { - border-bottom: none; - text-decoration: underline; - text-decoration: underline dotted; -} -b, -strong { - font-weight: inherit; - font-weight: bolder; -} -code, -kbd, -samp { - font-family: monospace, monospace; - font-size: 1em; -} -dfn { - font-style: italic; -} -mark { - background-color: #ff0; - color: #000; -} -small { - font-size: 80%; -} -sub, -sup { - font-size: 60%; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sub { - bottom: -0.25em; -} -sup { - top: -0.55em; - background: #c1cdd7; - color: #374857; - border-radius: 2px; - padding: 0 2px 0 2px; - margin: 0 2px 0 0; -} -audio, -video { - display: inline-block; -} -audio:not([controls]) { - display: none; - height: 0; -} -img { - border-style: none; -} -svg:not(:root) { - overflow: hidden; -} -button, -input, -optgroup, -select, -textarea { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; -} -button, -input { - overflow: visible; -} -button, -select { - text-transform: none; -} -button, -html [type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; -} -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner, -button::-moz-focus-inner { - border-style: none; - padding: 0; -} -[type="button"]:-moz-focusring, -[type="reset"]:-moz-focusring, -[type="submit"]:-moz-focusring, -button:-moz-focusring { - outline: 1px dotted ButtonText; -} -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} -legend { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; -} -progress { - display: inline-block; - vertical-align: baseline; -} -textarea { - overflow: auto; -} -[type="checkbox"], -[type="radio"] { - box-sizing: border-box; - padding: 0; -} -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} -[type="search"] { - -webkit-appearance: textfield; - outline-offset: -2px; -} -[type="search"]::-webkit-search-cancel-button, -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} -::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; -} -details, -menu { - display: block; -} -summary { - display: list-item; -} -canvas { - display: inline-block; -} -template { - display: none; -} -[hidden] { - display: none; -} -/** -------------------------------- --- Typography -------------------------------- -* */ -@font-face { - font-weight: 300; - font-style: normal; - font-family: 'Apercu'; - src: url("fonts/Apercu-Light.eot"), url("fonts/Apercu-Light.eot?#iefix") format('embedded-opentype'), url("fonts/Apercu-Light.woff2") format('woff2'), url("fonts/Apercu-Light.woff") format('woff'), url("fonts/Apercu-Light.ttf") format('truetype'), url("fonts/Apercu-Light.svg?#Apercu") format('svg'); -} -@font-face { - font-weight: 300; - font-style: italic; - font-family: 'Apercu'; - src: url("fonts/Apercu-LightItalic.eot"), url("fonts/Apercu-LightItalic.eot?#iefix") format('embedded-opentype'), url("fonts/Apercu-LightItalic.woff2") format('woff2'), url("fonts/Apercu-LightItalic.woff") format('woff'), url("fonts/Apercu-LightItalic.ttf") format('truetype'), url("fonts/Apercu-LightItalic.svg?#Apercu") format('svg'); -} -@font-face { - font-weight: 400; - font-style: normal; - font-family: 'Apercu'; - src: url("fonts/Apercu.eot"), url("fonts/Apercu.eot?#iefix") format('embedded-opentype'), url("fonts/Apercu.woff2") format('woff2'), url("fonts/Apercu.woff") format('woff'), url("fonts/Apercu.ttf") format('truetype'), url("fonts/Apercu.svg?#Apercu") format('svg'); -} -@font-face { - font-weight: 400; - font-style: italic; - font-family: 'Apercu'; - src: url("fonts/Apercu-Italic.eot"), url("fonts/Apercu-Italic.eot?#iefix") format('embedded-opentype'), url("fonts/Apercu-Italic.woff2") format('woff2'), url("fonts/Apercu-Italic.woff") format('woff'), url("fonts/Apercu-Italic.ttf") format('truetype'), url("fonts/Apercu-Italic.svg?#Apercu") format('svg'); -} -@font-face { - font-weight: 500; - font-style: normal; - font-family: 'Apercu'; - src: url("fonts/Apercu-Medium.eot"), url("fonts/Apercu-Medium.eot?#iefix") format('embedded-opentype'), url("fonts/Apercu-Medium.woff2") format('woff2'), url("fonts/Apercu-Medium.woff") format('woff'), url("fonts/Apercu-Medium.ttf") format('truetype'), url("fonts/Apercu-Medium.svg?#Apercu") format('svg'); -} -@font-face { - font-weight: 500; - font-style: italic; - font-family: 'Apercu'; - src: url("fonts/Apercu-MediumItalic.eot"), url("fonts/Apercu-MediumItalic.eot?#iefix") format('embedded-opentype'), url("fonts/Apercu-MediumItalic.woff2") format('woff2'), url("fonts/Apercu-MediumItalic.woff") format('woff'), url("fonts/Apercu-MediumItalic.ttf") format('truetype'), url("fonts/Apercu-MediumItalic.svg?#Apercu") format('svg'); -} -@font-face { - font-weight: 600; - font-style: normal; - font-weight: bold; - font-family: 'Apercu'; - src: url("fonts/Apercu-Bold.eot"), url("fonts/Apercu-Bold.eot?#iefix") format('embedded-opentype'), url("fonts/Apercu-Bold.woff2") format('woff2'), url("fonts/Apercu-Bold.woff") format('woff'), url("fonts/Apercu-Bold.ttf") format('truetype'), url("fonts/Apercu-Bold.svg?#Apercu") format('svg'); -} -@font-face { - font-weight: 600; - font-style: italic; - font-weight: bold; - font-family: 'Apercu'; - src: url("fonts/Apercu-BoldItalic.eot"), url("fonts/Apercu-BoldItalic.eot?#iefix") format('embedded-opentype'), url("fonts/Apercu-BoldItalic.woff2") format('woff2'), url("fonts/Apercu-BoldItalic.woff") format('woff'), url("fonts/Apercu-BoldItalic.ttf") format('truetype'), url("fonts/Apercu-Bold.svg?#Apercu") format('svg'); -} -@font-face { - font-weight: 400; - font-style: normal; - font-family: 'Apercu-Mono'; - src: url("fonts/Apercu-Mono.eot"), url("fonts/Apercu-Mono.eot?#iefix") format('embedded-opentype'), url("fonts/Apercu-Mono.woff2") format('woff2'), url("fonts/Apercu-Mono.woff") format('woff'), url("fonts/Apercu-Mono.ttf") format('truetype'), url("fonts/Apercu-Mono.svg?#Apercu") format('svg'); -} -h1, -h2, -h3 { - color: #f2f1ef; -} -h1 { - font-size: 2em; - font-weight: 400; -} -h2 { - font-size: 1.75em; - font-weight: 400; -} -h3 { - font-size: 1.5em; - font-weight: 300; -} -/** -------------------------------- --- Main Structure -------------------------------- -* */ -html, -body { - background-color: #161d23; - font: 400 1em 'Apercu', Helvetica, Arial, sans-serif; - height: 100%; -} -a { - font: 300 1em 'Apercu', Helvetica, Arial, sans-serif; - color: #b2cce5; - text-decoration: underline; - -moz-transition: all 0.1s linear; - -webkit-transition: all 0.1s linear; - -o-transition: all 0.1s linear; - transition: all 0.1s linear; -} -a:hover { - color: #bad1e8; -} -svg.icons { - width: 30px; - fill: #b2cce5; -} -#loader { - position: fixed; - z-index: 2000; - height: 100%; - width: 100%; - display: flex; - align-items: center; - justify-content: center; - display: none; - visibility: hidden; -} -#loader i { - color: #f5ab35; -} -.blog-container { - width: 100%; -} -.main-container { - margin: 0 auto; - z-index: 10; - position: relative; -} -.main-container section header { - width: 100%; - max-width: 900px; - margin: 0 auto; -} -.main-container section header #wrapper { - padding: 0.75rem; -} -.main-container section header #wrapper #left, -.main-container section header #wrapper #right { - width: 50%; - display: inline-block; - vertical-align: top; -} -.main-container section header #wrapper #left #the-logo, -.main-container section header #wrapper #right #the-logo { - width: 40px; -} -.main-container section header #wrapper #right { - text-align: right; - color: #f2f1ef; -} -.main-container section header #wrapper #right a { - text-decoration-color: #fc6399; -} -.main-container section header #wrapper #right label#the-title { - font-size: 1.2em; - font-weight: 400; - color: #f5ab35; - text-decoration: none; - display: block; - line-height: 0.8; -} -.main-container section header #wrapper #right #dash-menu { - text-align: right; -} -::-moz-selection { - background-color: #fc6399; - color: #f2f1ef; -} -::selection { - background-color: #fc6399; - color: #f2f1ef; -} -::-o-selection { - background-color: #fc6399; - color: #f2f1ef; -} -::-ms-selection { - background-color: #fc6399; - color: #f2f1ef; -} -::-webkit-selection { - background-color: #fc6399; - color: #f2f1ef; -} -@media only screen and (max-width: 800px) { - .main-container section header #wrapper #left, - .main-container section header #wrapper #right { - display: inline-block; - } -} -@media only screen and (max-width: 480px) { - .main-container section header #wrapper #left { - width: 30%; - } - .main-container section header #wrapper #right { - width: 70%; - } -} -/** -------------------------------- --- Index -------------------------------- -* */ -#dash-index-content { - width: 100%; - height: 100%; - margin: 0 auto; -} -#dash-index-content #dash-index { - width: 100%; - height: 100%; - z-index: 10; - position: relative; -} -#dash-index-content #dash-index #dash-index-wrapper { - width: 100%; - height: 100%; - margin: 0 auto; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-login { - width: 100%; - max-width: 900px; - margin: 0 auto; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-login #dash-form { - width: 300px; - padding: 0.75em; - background: #374857; - border-radius: 3px; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-login #dash-form input { - width: 290px; - margin: 0 0 10px 0; - height: 30px; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-login #dash-form button { - width: 300px; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-menu { - padding: 10px; - width: 90%; - max-width: 900px; - margin: 50px auto; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-menu a { - display: inline-block; - vertical-align: top; - background: #161d23; - width: 30%; - padding: 5px; - border-radius: 3px; - color: #f2f1ef; - margin: 0 10px 10px 0; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-menu a:hover { - background: #1c242c; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-menu a svg { - display: inline-block; - vertical-align: top; - fill: #f2f1ef; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-menu a label { - display: inline-block; - margin-top: 5px; - width: 85%; - text-align: center; - cursor: pointer; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent { - width: 100%; - max-width: 900px; - height: 100%; - padding: 5px 0 0 0; - margin: 0 auto; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list { - padding: 0.75em; - position: relative; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list .recent-header { - height: 50px; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list .recent-header h3 { - vertical-align: top; - display: inline-block; - width: 50%; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list .recent-header .index-menu { - width: 50%; - text-align: right; - vertical-align: top; - display: inline-block; - margin: 24px 0 24px 0; - right: 10px; - color: #f2f1ef; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list .recent-header .index-menu a { - text-decoration-color: #fc6399; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a.post-link { - font-size: 1.5em; - font-weight: 300; - display: inline-block; - border-radius: 3px; - vertical-align: top; - text-decoration: none; - position: relative; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a.post-link label { - font-size: 0.7em; - font-weight: 700; - color: #161d23; - padding: 5px; - vertical-align: top; - display: inline-block; - width: 60%; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a.post-link span { - float: right; - vertical-align: top; - display: inline-block; - font-family: 'Apercu-mono'; - font-size: 0.5em; - padding: 7px; - color: #161d23; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a.post-link div { - width: 100%; - background: #f2f1ef; - position: absolute; - bottom: 0; - border-radius: 0 0 3px 3px; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a:nth-child(3) { - width: 100%; - margin-bottom: 20px; - height: 500px; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a:nth-child(4) { - width: 49%; - height: 275px; - margin: 0 15px 15px 0; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a:nth-child(5) { - width: 49%; - height: 550px; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a:nth-child(6) { - width: 49%; - height: 550px; - margin: -260px 15px 0 0; -} -#dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a:nth-child(7) { - width: 49%; - height: 275px; - margin: 15px 0 0 0; -} -@media only screen and (max-width: 768px) { - #dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a:nth-child(4), - #dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a:nth-child(6) { - width: 48.9%; - } -} -@media only screen and (max-width: 640px) { - #dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a:nth-child(4), - #dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a:nth-child(6) { - width: 48.5%; - } -} -@media only screen and (max-width: 480px) { - #dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list .recent-header h3 { - width: 40%; - } - #dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list .recent-header .index-menu { - width: 60%; - } - #dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a:nth-child(3), - #dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a:nth-child(4), - #dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a:nth-child(5), - #dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a:nth-child(6), - #dash-index-content #dash-index #dash-index-wrapper #dash-recent #recent-list a:nth-child(7) { - width: 100%; - margin: 15px 0 0 0; - height: 400px; - } -} -/** -------------------------------- --- Settings -------------------------------- -* */ -#site-background { - margin: 0 0 10px 0; -} -#site-background img { - width: 100%; - border-radius: 0; - overflow: hidden; - cursor: pointer; -} -#site-background label { - position: absolute; - color: #f2f1ef; - margin: 5px; - background: #161d23; - padding: 5px; - border-radius: 3px; -} -#site-background input { - visibility: hidden; - display: none; -} -#settings-index { - width: 94%; - max-width: 900px; - margin: 0 auto; -} -#settings-index #settings-index-wrapper { - padding: 0.75rem; -} -#settings-index #settings-index-wrapper button { - margin-top: 5px; - width: 100%; - height: 45px; -} -#settings-index #settings-index-wrapper #member-settings, -#settings-index #settings-index-wrapper #site-settings, -#settings-index #settings-index-wrapper #option-settings { - background: #374857; - padding: 5px; - border-radius: 5px 0 5px 0; - width: 100%; - margin: 20px auto; -} -#settings-index #settings-index-wrapper #member-settings label, -#settings-index #settings-index-wrapper #site-settings label, -#settings-index #settings-index-wrapper #option-settings label { - font-family: 'Apercu-Mono'; - color: #f2f1ef; -} -#settings-index #settings-index-wrapper #member-settings input, -#settings-index #settings-index-wrapper #site-settings input, -#settings-index #settings-index-wrapper #option-settings input { - width: 95%; - margin: 0 5px 10px 0; - height: 30px; - padding: 10px; -} -#settings-index #settings-index-wrapper #member-settings #member-avatar-drop, -#settings-index #settings-index-wrapper #site-settings #member-avatar-drop, -#settings-index #settings-index-wrapper #option-settings #member-avatar-drop { - display: inline-block; - margin: 0 0 10px 0; -} -#settings-index #settings-index-wrapper #member-settings #member-avatar-drop img, -#settings-index #settings-index-wrapper #site-settings #member-avatar-drop img, -#settings-index #settings-index-wrapper #option-settings #member-avatar-drop img { - width: 100%; - border-radius: 5px; - overflow: hidden; - cursor: pointer; -} -#settings-index #settings-index-wrapper #member-settings #member-avatar-drop input, -#settings-index #settings-index-wrapper #site-settings #member-avatar-drop input, -#settings-index #settings-index-wrapper #option-settings #member-avatar-drop input { - visibility: hidden; - display: none; -} -#settings-index #settings-index-wrapper #member-settings #member-info, -#settings-index #settings-index-wrapper #site-settings #member-info, -#settings-index #settings-index-wrapper #option-settings #member-info { - vertical-align: top; - display: inline-block; - width: 100%; -} -#settings-index #settings-index-wrapper #member-settings #member-info input, -#settings-index #settings-index-wrapper #site-settings #member-info input, -#settings-index #settings-index-wrapper #option-settings #member-info input { - width: 95%; - margin: 0 5px 10px 0; -} -#settings-index #settings-index-wrapper #member-settings textarea, -#settings-index #settings-index-wrapper #site-settings textarea, -#settings-index #settings-index-wrapper #option-settings textarea { - background: #161d23; - width: 95%; - height: 155px; - color: #b2cce5; - padding: 10px; -} -#settings-index #settings-index-wrapper #option-settings #theme-settings a { - width: 95%; - margin: 0 5px 5px 0; - height: 25px; - padding: 10px; - display: inline-block; -} -#settings-index #settings-index-wrapper #option-settings #theme-settings a[data-enabled='false'] { - background: #161d23; - color: #b2cce5; - border-radius: 3px; -} -#settings-index #settings-index-wrapper #option-settings #theme-settings a[data-enabled='true'] { - background: #b2cce5; - color: #374857; - border-radius: 3px; -} -#settings-index #settings-index-wrapper #option-settings #theme-settings a[data-enabled='true'] svg { - fill: #374857; - display: inline-block; - float: right; -} -#settings-index #settings-index-wrapper #option-settings #mail-settings { - min-height: 240px; -} -#settings-index #settings-index-wrapper #option-settings #mail-settings a.mail-option { - float: right; - font-family: 'Apercu-Mono'; - font-size: 0.9em; - border-radius: 3px; - text-decoration: none; - margin: 0 0 0 5px; -} -#settings-index #settings-index-wrapper #option-settings #mail-settings a.mail-option[data-enabled='true'] { - color: #fc6399; -} -#settings-index #settings-index-wrapper #option-settings #mail-settings a.mail-option[data-enabled='false'] { - color: #f2f1ef; -} -#settings-index #settings-index-wrapper #option-settings #mail-settings input { - margin: 0 5px 5px 0; - vertical-align: top; -} -#settings-index #settings-index-wrapper #option-settings #mail-settings div[data-enabled='false'] { - display: none; - visibility: hidden; -} -/** -------------------------------- --- Navigation -------------------------------- -* */ -#nav-index { - width: 100%; - max-width: 900px; - margin: 0 auto; -} -#nav-index #nav-index-wrapper { - padding: 0.75rem; -} -#nav-index #nav-index-wrapper #nav-pages .nav-item { - display: block; - width: 98%; - background: #374857; - border-radius: 3px; - color: #f2f1ef; - height: 30px; - padding: 10px; - margin: 0 0 10px 0; - font-size: 1.5em; - cursor: move; -} -#nav-index #nav-index-wrapper #nav-pages label { - display: inline-block; - vertical-align: middle; - padding: 0; - margin: -15px 0 0 10px; - cursor: move; -} -#nav-index #nav-index-wrapper #nav-pages #nav-btns { - float: right; -} -#nav-index #nav-index-wrapper #nav-pages #nav-btns button { - font-size: 0.8em; - margin: 0 0 0 10px; -} -@media only screen and (max-width: 375px) { - #nav-index #nav-index-wrapper #nav-pages .nav-item { - width: 94.5%; - font-size: 1em; - } - #nav-index #nav-index-wrapper #nav-pages .nav-item label { - width: 47%; - vertical-align: top; - margin-top: 0px; - line-height: 1em; - } -} -@media only screen and (max-width: 320px) { - #nav-index #nav-index-wrapper #nav-pages .nav-item { - width: 94.5%; - font-size: 1em; - } - #nav-index #nav-index-wrapper #nav-pages .nav-item label { - width: 37%; - vertical-align: top; - margin-top: 0px; - line-height: 1em; - } -} -/** -------------------------------- --- Forms -------------------------------- -* */ -form { - display: inline-block; -} -input[type=email], -input[type=password], -input[type=text] { - border: 0; - border-radius: 3px; - padding: 5px; - font: 1em 'Apercu-Mono'; - display: inline-block; - background-color: #161d23; - color: #b2cce5; -} -textarea { - border: 0; - border-radius: 3px; - color: $type02; - font: 15px 'Apercu-Mono'; -} -button, -input[type=submit] { - background: #fc6399; - color: #161d23; - font: 1em 'Apercu-Mono'; - border-radius: 3px; - position: relative; - cursor: pointer; - border: 0; -} -select { - font: 1em 'Apercu-Mono'; - border: 1px solid #b2cce5; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - color: #374857; -} -::-webkit-input-placeholder { - font: 1em 'Apercu-Mono'; - color: #b2cce5; -} -:-moz-placeholder { -/* Firefox 18- */ - font: 1em 'Apercu-Mono'; - color: #b2cce5; -} -::-moz-placeholder { -/* Firefox 19+ */ - font: 1em 'Apercu-Mono'; - color: #b2cce5; -} -:-ms-input-placeholder { - font: 1em 'Apercu-Mono'; - color: #b2cce5; -} -/** -------------------------------- --- Blog -------------------------------- -* */ -#post-index { - width: 100%; - max-width: 900px; - margin: 0 auto; -} -#post-index #post-index-wrapper { - padding: 0.75rem; - overflow: hidden; -} -#post-index #post-index-wrapper #post-index-menu { - color: #f2f1ef; -} -#post-index #post-index-wrapper #post-index-menu a { - text-decoration-color: #fc6399; -} -#post-index #post-index-wrapper #post-index-menu a.add-new-post { - display: inline-block; - background: #fc6399; - border-radius: 3px; - padding: 3px; - color: #f2f1ef; - text-align: center; - margin-bottom: 10px; - float: right; -} -#post-index #post-index-wrapper #post-index-menu .current-filter { - color: #fc6399; - text-decoration-color: #b2cce5; -} -#post-index #post-index-wrapper #posts-list { - margin: 20px 0 0 0; -} -#post-index #post-index-wrapper #posts-list a.post-link { - background: #f2f1ef; - display: inline-block; - vertical-align: top; - width: 100%; - text-decoration: none; - margin: 0 0 20px 0; - border-radius: 3px; - overflow: hidden; - color: #161d23; -} -#post-index #post-index-wrapper #posts-list a.post-link label { - font-size: 2em; - font-weight: 500; - padding: 10px; - display: inline-block; - vertical-align: top; - width: 100%; -} -#post-index #post-index-wrapper #posts-list a.post-link span { - display: inline-block; - vertical-align: top; - font-size: 0.8em; - font-family: 'Apercu-Mono'; - width: 50%; - padding: 0 0 0 10px; -} -#post-index #post-index-wrapper #posts-list a.post-link div.post-bg { - width: 100%; - height: 350px; - background-color: #fc6399; -} -#post-index #post-index-wrapper #posts-list a.post-link p { - padding: 5px 10px 5px 10px; - font-size: 1.2em; - font-weight: 400; -} -#post-edit-index { - width: 100%; - overflow: hidden; -} -#post-edit-index #post-edit-index-wrapper { - width: 100%; -} -#post-edit-index #post-edit-index-wrapper #post-header { - max-width: 900px; - margin: 0 auto; - padding: 0.75rem; -} -#post-edit-index #post-edit-index-wrapper #post-header #post-title #post_title { - background: #354554; - font-family: 'Apercu'; - width: 97.6%; - height: 140px; - font-size: 1.5em; - color: #f2f1ef; - padding: 5px; - margin: 0 0 5px 0; -} -#post-edit-index #post-edit-index-wrapper #post-header #post-title #post-date { - background: #32414e; - border-radius: 0 3px 3px 0; - width: 39.5%; - font-family: 'Apercu'; - color: #fc6399; - height: 30px; - vertical-align: top; - text-align: center; -} -#post-edit-index #post-edit-index-wrapper #post-header #post-title #calendar-icon { - background: #2f3d4a; - border-radius: 3px 0 0 3px; - display: inline-block; - padding: 2.9px; - color: #b2cce5; -} -#post-edit-index #post-edit-index-wrapper #post-header #post-title #post-options { - display: inline-block; - vertical-align: top; - width: 49%; - padding: 0 0 0 3px; -} -#post-edit-index #post-edit-index-wrapper #post-header #post-title #post-options button:nth-child(1) { - border-radius: 3px 0 0 3px; -} -#post-edit-index #post-edit-index-wrapper #post-header #post-title #post-options button:nth-child(4) { - border-radius: 0 3px 3px 0; -} -#post-edit-index #post-edit-index-wrapper #post-header #post-title #post-options button { - width: 25%; - height: 39px; - -moz-transition: all 0.3s linear; - -webkit-transition: all 0.3s linear; - -o-transition: all 0.3s linear; - transition: all 0.3s linear; - margin: 0; - border-radius: 0; - display: inline-block; - vertical-align: top; - text-align: center; -} -#post-edit-index #post-edit-index-wrapper #post-header #post-title #post-options button[data-active='false'] { - background: #b2cce5; -} -#post-edit-index #post-edit-index-wrapper #post-header #post-title #post-options button[data-active='false'] svg { - fill: #374857; -} -#post-edit-index #post-edit-index-wrapper #post-header #post-title #post-options button[data-active='true'] { - background: #f5ab35; -} -#post-edit-index #post-edit-index-wrapper #post-header #post-title #post-options button[data-active='true'] svg { - fill: #553604; -} -#post-edit-index #post-edit-index-wrapper #post-header #post-meta #post_tags { - background: #354554; - font-family: 'Apercu'; - width: 97.6%; - height: 140px; - color: #b2cce5; - padding: 5px; - margin: 0 0 5px 0; -} -#post-edit-index #post-edit-index-wrapper #post-header #post-meta #featured-image-upload, -#post-edit-index #post-edit-index-wrapper #post-header #post-meta #post-image-upload { - display: none; -} -#post-edit-index #post-edit-index-wrapper #post-feature { - width: 100%; -} -#post-edit-index #post-edit-index-wrapper #post-feature #featured-image-drop { - display: flex; - align-items: center; - justify-content: center; - width: 100%; - min-height: 200px; - background: #1c242c; - color: #374857; - vertical-align: middle; - font-family: 'Apercu-Mono'; -} -#post-edit-index #post-edit-index-wrapper #post-feature #featured-image-drop label { - cursor: pointer; -} -#post-edit-index #post-edit-index-wrapper #post-feature #featured-image-drop img { - width: 100%; - margin: 0; - padding: 0; -} -#post-edit-index #post-edit-index-wrapper #post-feature #featured-new-image-btn { - position: absolute; - margin: 20px; -} -#post-edit-index #post-edit-index-wrapper #post-feature #featured-new-image-btn #new-feature-upload { - padding-top: 4px; - background: #f2f1ef; -} -#post-edit-index #post-edit-index-wrapper #post-feature #featured-new-image-btn #new-feature-upload svg { - fill: #fc6399; -} -#post-edit-index #post-edit-index-wrapper #edit-post { - width: 100%; - max-width: 900px; - margin: 0 auto; -} -#post-edit-index #post-edit-index-wrapper #edit-post #edit-post-wrapper { - width: 98%; - max-width: 900px; - margin: 0 auto; - border-radius: 5px; - background: #32414e; -} -#post-edit-index #post-edit-index-wrapper #edit-post #edit-post-wrapper pre code { - font-family: 'Apercu-Mono'; - padding: 5px; - border-radius: 5px; - line-height: 1.6em; - font-size: 1.25em; - color: #bebebe; - word-wrap: normal; - white-space: pre-wrap; - line-break: normal; - -webkit-line-break: normal; - -o-line-break: normal; - -moz-line-break: normal; - display: inline-block; - width: 100%; - max-width: 900px; -} -@media only screen and (max-width: 800px) { - #post-edit-index #post-edit-index-wrapper #post-header #post-title #post-date { - width: 37.6%; - } -} -@media only screen and (max-width: 768px) { - #post-edit-index #post-edit-index-wrapper #post-header #post-title #post-date { - width: 43.1%; - } - #post-edit-index #post-edit-index-wrapper #post-header #post-meta #edit-control { - max-width: 100%; - } - #post-edit-index #post-edit-index-wrapper #post-header #post-meta #edit-control button { - width: 9.91%; - } -} -@media only screen and (max-width: 640px) { - #post-edit-index #post-edit-index-wrapper #post-header #post-title #post-date { - width: 42%; - } -} -@media only screen and (max-width: 480px) { - #post-index #post-index-wrapper #post-index-menu a { - font-size: 0.95em; - } - #post-index #post-index-wrapper #post-index-menu a label { - display: none; - visibility: hidden; - } - #post-edit-index #post-edit-index-wrapper #post-header #post-title #post-options { - margin: 5px 0 0 0; - width: 100%; - padding: 0; - } - #post-edit-index #post-edit-index-wrapper #post-header #post-title #post-date { - width: 89.2%; - } - #post-edit-index #post-edit-index-wrapper #post-header #post-meta #edit-control button { - width: 9.91%; - } -} -@media only screen and (max-width: 320px) { - #post-index #post-index-wrapper #post-index-menu a { - font-size: 0.95em; - } - #post-index #post-index-wrapper #post-index-menu a label { - display: none; - visibility: hidden; - } - #post-edit-index #post-edit-index-wrapper #post-header #post-title #post_title { - width: 96.4%; - } - #post-edit-index #post-edit-index-wrapper #post-header #post-title #post-options { - margin: 5px 0 0 0; - width: 100%; - padding: 0; - } - #post-edit-index #post-edit-index-wrapper #post-header #post-title #post-date { - width: 83.1%; - } - #post-edit-index #post-edit-index-wrapper #post-header #post-meta #post_tags { - width: 96.4%; - } - #post-edit-index #post-edit-index-wrapper #post-header #post-meta #edit-control .content-editor-btn-icon svg.icons { - width: 20px; - } - #post-edit-index #post-edit-index-wrapper #post-header #post-meta #edit-control .post-sumbit-btn svg.icons { - width: 20px; - } - #post-edit-index #post-edit-index-wrapper #post-header #post-meta #edit-control button { - width: 10%; - } -} -/** -------------------------------- --- Editor -------------------------------- -* */ -.dp-modal { - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - background: rgba(17,22,26,0.75); - z-index: 2000; -} -.dp { - position: relative; - background: #374857; - box-shadow: 2px 2px 16px rgba(0,0,0,0.25); - line-height: 1.4; - border-radius: 4px; - max-height: 400px; - z-index: 5000; - padding-top: 6px; - overflow: hidden; - -webkit-tap-highlight-color: transparent; -} -.dp:before { - content: ' '; - height: 6px; - position: absolute; - top: 0; - left: 0; - right: 0; - background: #fc6399; -} -.dp-permanent .dp { - padding-top: 0; - border: 1px solid #eee; - box-shadow: none; -} -.dp-permanent .dp:before { - display: none; -} -.dp-cal { - min-height: 300px; -} -.dp-below { - position: absolute; - font-size: 0.8em; - width: 400px; - max-width: 90vw; -} -.dp-permanent { - position: relative; - font-size: 0.8em; - width: 400px; - max-width: 100vw; -} -.dp-permanent .dp { - z-index: 0; -} -.dp-modal .dp { - position: absolute; - top: 50%; - left: 50%; - max-width: 600px; - width: calc(100% - 4em); - transform: translate(-50%, -50%); - animation: slide-up 0.3s forwards; -} -.dp-months { - padding: 24px; -} -.dp-years { - box-sizing: border-box; - max-height: 400px; - padding: 8px 0; - overflow: auto !important /* HACK for Chrome on Android */; -} -.dp-cal-month, -.dp-cal-year, -.dp-day, -.dp-month, -.dp-year { - box-sizing: border-box; - text-align: center; - text-decoration: none; - position: relative; - color: #f2f1ef; - border-radius: 2px; - border: 0; - background: transparent; -} -.dp-cal-header { - position: relative; - text-align: center; - padding-bottom: 16px; - background: #32414e; -} -.dp-next, -.dp-prev { - position: absolute; - width: 30px; - height: 30px; - overflow: hidden; - top: 14px; - color: #1c242c; - border-radius: 2px; - border: 0; - background: transparent; -} -.dp-next:focus, -.dp-prev:focus, -.dp-next:hover, -.dp-prev:hover { - outline: none; - color: inherit; -} -.dp-prev { - left: 24px; -} -.dp-next { - right: 24px; -} -.dp-prev:before, -.dp-next:before { - content: ''; - border: 2px solid; - width: 10px; - height: 10px; - display: inline-block; - transform: rotate(-45deg); - transition: border-color 0.2s; - margin: 9px 0 40px 4px; -} -.dp-prev:before { - border-right: 0; - border-bottom: 0; -} -.dp-next:before { - border-left: 0; - border-top: 0; - margin-left: 0; - margin-right: 4px; -} -.dp-cal-month, -.dp-cal-year { - display: inline-block; - font-size: 1.4em; - padding: 16px 8px 8px; - outline: none; -} -.dp-cal-footer { - text-align: center; - background: #32414e; -} -.dp-day-today:after { - content: ''; - height: 0; - width: 0; - border: 7px solid #fc6399; - border-bottom-color: transparent; - border-left-color: transparent; - position: absolute; - top: 0; - right: 0; -} -.dp-close, -.dp-clear, -.dp-today { - box-sizing: border-box; - display: inline-block; - width: 33%; - padding: 8px; - text-decoration: none; - color: #1c242c; - border: 0; - background: transparent; -} -.dp-permanent .dp-close, -.dp-permanent .dp-clear { - display: none; -} -.dp-close:active, -.dp-clear:active, -.dp-today:active, -.dp-next:active, -.dp-prev:active, -.dp-cal-month:active, -.dp-cal-year:active { - background: #fc6399; - color: #f2f1ef; -} -@media screen and (min-device-width: 1200px) { - .dp-close:hover, - .dp-close:focus, - .dp-clear:hover, - .dp-clear:focus, - .dp-today:hover, - .dp-today:focus, - .dp-next:hover, - .dp-next:focus, - .dp-prev:hover, - .dp-prev:focus, - .dp-cal-month:focus, - .dp-cal-month:hover, - .dp-cal-year:hover, - .dp-cal-year:focus { - background: #fc6399; - color: #f2f1ef; - } -} -.dp-col-header, -.dp-day { - width: 14.28571429%; - display: inline-block; - padding: 8px; - text-align: center; -} -.dp-col-header { - color: #aaa; - text-transform: uppercase; - font-weight: 300; - font-size: 0.8em; - padding: 8px 0; -} -.dp-month { - width: 33%; - display: inline-block; - padding: 8px; -} -.dp-year { - display: block; - padding: 8px 40px; - width: 100%; -} -.dp-edge-day { - color: #aaa; -} -.dp-day:hover, -.dp-month:hover, -.dp-year:hover, -.dp-current:focus, -.dp-current, -.dp-day:focus, -.dp-month:focus, -.dp-year:focus { - outline: none; - background: #212b34; - color: #f2f1ef; -} -.dp-selected:hover, -.dp-selected:focus, -.dp-selected { - background: #fc6399; - color: #161d23; -} -.dp-day-disabled { - background: transparent; - color: #ddd; -} -.dp-day-disabled:focus, -.dp-day-disabled:hover { - background: #ddd; -} -.dp-focuser { - position: absolute; - z-index: 0; - top: 50%; - left: 50%; -} -@media (max-width: 480px), (max-height: 480px) { - .dp-modal .dp { - font-size: 0.9em; - width: auto; - width: 100%; - } - .dp-day-of-week, - .dp-day { - padding: 8px; - } -} -@-moz-keyframes slide-up { - 0% { - transform: translate(-50%, 100%); - } - 100% { - transform: translate(-50%, -50%); - } -} -@-webkit-keyframes slide-up { - 0% { - transform: translate(-50%, 100%); - } - 100% { - transform: translate(-50%, -50%); - } -} -@-o-keyframes slide-up { - 0% { - transform: translate(-50%, 100%); - } - 100% { - transform: translate(-50%, -50%); - } -} -@keyframes slide-up { - 0% { - transform: translate(-50%, 100%); - } - 100% { - transform: translate(-50%, -50%); - } -} -#edit-control { - top: 1px; - border-radius: 3px; - width: 100%; - max-width: 425px; - z-index: 2000; -} -#edit-control button:nth-child(1) { - border-radius: 3px 0 0 3px; -} -#edit-control button:nth-child(10) { - border-radius: 0 3px 3px 0; -} -#edit-control button { - background: #b2cce5; - width: 10%; - height: 39px; - -moz-transition: all 0.3s linear; - -webkit-transition: all 0.3s linear; - -o-transition: all 0.3s linear; - transition: all 0.3s linear; - margin: 0; - border-radius: 0; - display: inline-block; - vertical-align: top; - text-align: center; -} -#edit-control button:hover { - background: #75a4d0; -} -#edit-control #option-update { - padding: 5px 5px 1px 5px; - display: inline-block; - vertical-align: top; - text-align: center; -} -#edit-control .icon-hide { - display: none; - visibility: hidden; -} -#edit-control .submit-start { - background: #f2f1ef; -} -#edit-control .submit-start svg { - fill: #32cd32; -} -#edit-control .submit-cool { - background: #32cd32; -} -#edit-control .submit-cool svg { - fill: #f2f1ef; -} -#edit-control .submit-delete { - background: #f64747 !important; -} -#edit-control .submit-delete svg { - fill: #f2f1ef !important; -} -#edit-control #option-date { - height: 30px; - padding-top: 6px; -} -#edit-control #option-date svg { - margin: -13px 5px 0 0; - display: inline-block; - vertical-align: top; - fill: #f2f1ef; -} -#edit-control .content-editor-btn-icon { - padding: 5px 5px 1px 5px; - color: #374857; -} -#edit-control .content-editor-btn-icon svg { - fill: #374857; -} -#edit-control .content-editor-btn-text { - padding: 5px; - color: #374857; -} -#edit-control #option-bold { - font-weight: bold; - text-decoration: none; -} -#edit-control #option-italic { - font-weight: bold; - text-decoration: none; - font-style: italic; -} -#edit-control #option-strikethrough { - font-weight: bold; - text-decoration: line-through; - font-style: italic; -} -.hljs { - display: block; - overflow-x: auto; - padding: 0.5em; - background: #344453; -} -.hljs, -.hljs-subst { - color: #ebdbb2; -} -.hljs-deletion, -.hljs-formula, -.hljs-keyword .hljs-selector-tag { - color: #bebebe; - font-style: italic; -} -.hljs-link { - color: #fc6399; -} -.hljs-built_in, -.hljs-emphasis, -.hljs-name, -.hljs-quote, -.hljs-strong, -.hljs-title, -.hljs-variable { - color: #ffa07a; -} -.hljs-attr, -.hljs-params, -.hljs-template-tag, -.hljs-type { - color: #89c4f4; -} -.hljs-builtin-name, -.hljs-doctag, -.hljs-literal, -.hljs-number { - color: #8f3f71; -} -.hljs-code, -.hljs-meta, -.hljs-regexp, -.hljs-selector-id, -.hljs-template-variable { - color: #f5ab35; -} -.hljs-addition, -.hljs-meta-string, -.hljs-section, -.hljs-selector-attr, -.hljs-selector-class, -.hljs-string, -.hljs-symbol { - color: #f6dd74; -} -.hljs-attribute, -.hljs-bullet, -.hljs-class, -.hljs-function, -.hljs-function .hljs-keyword, -.hljs-meta-keyword, -.hljs-selector-pseudo, -.hljs-tag { - color: #8ea4b8; -} -.hljs-comment { - color: #928374; -} -.hljs-link_label, -.hljs-literal, -.hljs-number { - color: #d3869b; -} -.hljs-comment, -.hljs-emphasis { - font-style: italic; -} -.hljs-section, -.hljs-strong, -.hljs-tag { - font-weight: normal; -} -/*# sourceMappingURL=dash.css.map */ \ No newline at end of file diff --git a/themes/dash/assets/css/dash.css.map b/themes/dash/assets/css/dash.css.map deleted file mode 100644 index ecbb1c8..0000000 --- a/themes/dash/assets/css/dash.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../src/styles/dash.styl","../../../../node_modules/bulma.styl/stylus/utilities/animations.styl","../../../../node_modules/bulma.styl/stylus/grid/columns.styl","../../../../node_modules/bulma.styl/stylus/utilities/mixins.styl","../../src/styles/main/_normalize.styl","../../src/styles/main/_typography.styl","../../src/styles/main/_structure.styl","../../src/styles/main/_mixins.styl","../../src/styles/main/_index.styl","../../src/styles/main/_settings.styl","../../src/styles/main/_navigation.styl","../../src/styles/main/_forms.styl","../../src/styles/main/_posts.styl","../../src/styles/main/_calendar.styl","../../src/styles/main/_editor.styl","../../src/styles/main/_editor-highlight.styl"],"names":[],"mappings":"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","file":"dash.css"} \ No newline at end of file diff --git a/themes/dash/assets/css/fonts/Apercu-Bold.eot b/themes/dash/assets/css/fonts/Apercu-Bold.eot deleted file mode 100644 index ffceffd..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Bold.eot and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Bold.svg b/themes/dash/assets/css/fonts/Apercu-Bold.svg deleted file mode 100644 index 37210b2..0000000 --- a/themes/dash/assets/css/fonts/Apercu-Bold.svg +++ /dev/null @@ -1,4581 +0,0 @@ - - - - -Created by FontForge 20170910 at Fri Aug 27 16:44:03 2010 - By Jimmy Wärting -Copyright (c) 2009 by The Entente (AS & EH). All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/dash/assets/css/fonts/Apercu-Bold.ttf b/themes/dash/assets/css/fonts/Apercu-Bold.ttf deleted file mode 100644 index 0dfd34d..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Bold.ttf and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Bold.woff b/themes/dash/assets/css/fonts/Apercu-Bold.woff deleted file mode 100644 index 708358f..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Bold.woff and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Bold.woff2 b/themes/dash/assets/css/fonts/Apercu-Bold.woff2 deleted file mode 100644 index e9e80e0..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Bold.woff2 and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-BoldItalic.eot b/themes/dash/assets/css/fonts/Apercu-BoldItalic.eot deleted file mode 100644 index 18bd588..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-BoldItalic.eot and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-BoldItalic.svg b/themes/dash/assets/css/fonts/Apercu-BoldItalic.svg deleted file mode 100644 index 95986e8..0000000 --- a/themes/dash/assets/css/fonts/Apercu-BoldItalic.svg +++ /dev/null @@ -1,5663 +0,0 @@ - - - - -Created by FontForge 20170910 at Fri Aug 27 16:47:27 2010 - By Jimmy Wärting -Copyright (c) 2009 by The Entente (AS & EH). All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/dash/assets/css/fonts/Apercu-BoldItalic.ttf b/themes/dash/assets/css/fonts/Apercu-BoldItalic.ttf deleted file mode 100644 index 8aee819..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-BoldItalic.ttf and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-BoldItalic.woff b/themes/dash/assets/css/fonts/Apercu-BoldItalic.woff deleted file mode 100644 index 72ca78b..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-BoldItalic.woff and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-BoldItalic.woff2 b/themes/dash/assets/css/fonts/Apercu-BoldItalic.woff2 deleted file mode 100644 index 3bfcea5..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-BoldItalic.woff2 and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Italic.eot b/themes/dash/assets/css/fonts/Apercu-Italic.eot deleted file mode 100644 index b26c326..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Italic.eot and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Italic.svg b/themes/dash/assets/css/fonts/Apercu-Italic.svg deleted file mode 100644 index 078b409..0000000 --- a/themes/dash/assets/css/fonts/Apercu-Italic.svg +++ /dev/null @@ -1,6595 +0,0 @@ - - - - -Created by FontForge 20170910 at Fri Aug 27 23:34:37 2010 - By Jimmy Wärting -Copyright (c) 2009 by The Entente (AS & EH). All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/dash/assets/css/fonts/Apercu-Italic.ttf b/themes/dash/assets/css/fonts/Apercu-Italic.ttf deleted file mode 100644 index 881ab10..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Italic.ttf and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Italic.woff b/themes/dash/assets/css/fonts/Apercu-Italic.woff deleted file mode 100644 index 0fc77b5..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Italic.woff and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Italic.woff2 b/themes/dash/assets/css/fonts/Apercu-Italic.woff2 deleted file mode 100644 index bdb7c1e..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Italic.woff2 and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Light.eot b/themes/dash/assets/css/fonts/Apercu-Light.eot deleted file mode 100644 index 14771a7..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Light.eot and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Light.svg b/themes/dash/assets/css/fonts/Apercu-Light.svg deleted file mode 100644 index 3e438c8..0000000 --- a/themes/dash/assets/css/fonts/Apercu-Light.svg +++ /dev/null @@ -1,4265 +0,0 @@ - - - - -Created by FontForge 20170910 at Fri Aug 27 16:26:01 2010 - By Jimmy Wärting -Copyright (c) 2009 by The Entente (AS & EH). All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/dash/assets/css/fonts/Apercu-Light.ttf b/themes/dash/assets/css/fonts/Apercu-Light.ttf deleted file mode 100644 index 17a1b8c..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Light.ttf and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Light.woff b/themes/dash/assets/css/fonts/Apercu-Light.woff deleted file mode 100644 index 7df8053..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Light.woff and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Light.woff2 b/themes/dash/assets/css/fonts/Apercu-Light.woff2 deleted file mode 100644 index 4b1ab57..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Light.woff2 and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-LightItalic.eot b/themes/dash/assets/css/fonts/Apercu-LightItalic.eot deleted file mode 100644 index a2e6365..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-LightItalic.eot and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-LightItalic.svg b/themes/dash/assets/css/fonts/Apercu-LightItalic.svg deleted file mode 100644 index 334f2d6..0000000 --- a/themes/dash/assets/css/fonts/Apercu-LightItalic.svg +++ /dev/null @@ -1,5937 +0,0 @@ - - - - -Created by FontForge 20170910 at Fri Aug 27 16:31:39 2010 - By Jimmy Wärting -Copyright (c) 2009 by The Entente (AS & EH). All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/dash/assets/css/fonts/Apercu-LightItalic.ttf b/themes/dash/assets/css/fonts/Apercu-LightItalic.ttf deleted file mode 100644 index 6f8dbe1..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-LightItalic.ttf and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-LightItalic.woff b/themes/dash/assets/css/fonts/Apercu-LightItalic.woff deleted file mode 100644 index 33cae0e..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-LightItalic.woff and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-LightItalic.woff2 b/themes/dash/assets/css/fonts/Apercu-LightItalic.woff2 deleted file mode 100644 index 8265ef1..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-LightItalic.woff2 and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Medium.eot b/themes/dash/assets/css/fonts/Apercu-Medium.eot deleted file mode 100644 index 2a5de8b..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Medium.eot and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Medium.svg b/themes/dash/assets/css/fonts/Apercu-Medium.svg deleted file mode 100644 index 84a0546..0000000 --- a/themes/dash/assets/css/fonts/Apercu-Medium.svg +++ /dev/null @@ -1,5562 +0,0 @@ - - - - -Created by FontForge 20170910 at Fri Aug 27 16:42:11 2010 - By Jimmy Wärting -Copyright (c) 2009 by The Entente (AS & EH). All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/dash/assets/css/fonts/Apercu-Medium.ttf b/themes/dash/assets/css/fonts/Apercu-Medium.ttf deleted file mode 100644 index 887f529..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Medium.ttf and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Medium.woff b/themes/dash/assets/css/fonts/Apercu-Medium.woff deleted file mode 100644 index 56b9a2b..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Medium.woff and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Medium.woff2 b/themes/dash/assets/css/fonts/Apercu-Medium.woff2 deleted file mode 100644 index 9f56f34..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Medium.woff2 and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-MediumItalic.eot b/themes/dash/assets/css/fonts/Apercu-MediumItalic.eot deleted file mode 100644 index f77dcba..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-MediumItalic.eot and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-MediumItalic.svg b/themes/dash/assets/css/fonts/Apercu-MediumItalic.svg deleted file mode 100644 index 0a82ef8..0000000 --- a/themes/dash/assets/css/fonts/Apercu-MediumItalic.svg +++ /dev/null @@ -1,5771 +0,0 @@ - - - - -Created by FontForge 20170910 at Fri Aug 27 16:45:39 2010 - By Jimmy Wärting -Copyright (c) 2009 by The Entente (AS & EH). All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/dash/assets/css/fonts/Apercu-MediumItalic.ttf b/themes/dash/assets/css/fonts/Apercu-MediumItalic.ttf deleted file mode 100644 index ae21e3c..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-MediumItalic.ttf and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-MediumItalic.woff b/themes/dash/assets/css/fonts/Apercu-MediumItalic.woff deleted file mode 100644 index c29f095..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-MediumItalic.woff and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-MediumItalic.woff2 b/themes/dash/assets/css/fonts/Apercu-MediumItalic.woff2 deleted file mode 100644 index 8b567dc..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-MediumItalic.woff2 and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Mono.eot b/themes/dash/assets/css/fonts/Apercu-Mono.eot deleted file mode 100644 index b646405..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Mono.eot and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Mono.svg b/themes/dash/assets/css/fonts/Apercu-Mono.svg deleted file mode 100644 index 756a3d9..0000000 --- a/themes/dash/assets/css/fonts/Apercu-Mono.svg +++ /dev/null @@ -1,670 +0,0 @@ - - - - -Created by FontForge 20170910 at Fri Aug 27 16:54:26 2010 - By Jimmy Wärting -Copyright (c) 2009 by The Entente (AS & EH). All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/dash/assets/css/fonts/Apercu-Mono.ttf b/themes/dash/assets/css/fonts/Apercu-Mono.ttf deleted file mode 100644 index a2564e6..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Mono.ttf and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Mono.woff b/themes/dash/assets/css/fonts/Apercu-Mono.woff deleted file mode 100644 index ed12662..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Mono.woff and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu-Mono.woff2 b/themes/dash/assets/css/fonts/Apercu-Mono.woff2 deleted file mode 100644 index 901a460..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu-Mono.woff2 and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu.eot b/themes/dash/assets/css/fonts/Apercu.eot deleted file mode 100644 index c26a7d0..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu.eot and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu.svg b/themes/dash/assets/css/fonts/Apercu.svg deleted file mode 100644 index f747ddd..0000000 --- a/themes/dash/assets/css/fonts/Apercu.svg +++ /dev/null @@ -1,5062 +0,0 @@ - - - - -Created by FontForge 20170910 at Fri Aug 27 16:36:11 2010 - By Jimmy Wärting -Copyright (c) 2009 by The Entente (AS & EH). All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/dash/assets/css/fonts/Apercu.ttf b/themes/dash/assets/css/fonts/Apercu.ttf deleted file mode 100644 index 8db7aee..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu.ttf and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu.woff b/themes/dash/assets/css/fonts/Apercu.woff deleted file mode 100644 index 330181c..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu.woff and /dev/null differ diff --git a/themes/dash/assets/css/fonts/Apercu.woff2 b/themes/dash/assets/css/fonts/Apercu.woff2 deleted file mode 100644 index 3e8fd7e..0000000 Binary files a/themes/dash/assets/css/fonts/Apercu.woff2 and /dev/null differ diff --git a/themes/dash/assets/images/bg-samon-wave.png b/themes/dash/assets/images/bg-samon-wave.png deleted file mode 100644 index bc32bc4..0000000 Binary files a/themes/dash/assets/images/bg-samon-wave.png and /dev/null differ diff --git a/themes/dash/assets/images/bg-teal-pattern.png b/themes/dash/assets/images/bg-teal-pattern.png deleted file mode 100644 index ddeee30..0000000 Binary files a/themes/dash/assets/images/bg-teal-pattern.png and /dev/null differ diff --git a/themes/dash/assets/images/clouds.jpg b/themes/dash/assets/images/clouds.jpg deleted file mode 100644 index 2e706c9..0000000 Binary files a/themes/dash/assets/images/clouds.jpg and /dev/null differ diff --git a/themes/dash/assets/images/current.png b/themes/dash/assets/images/current.png deleted file mode 100644 index 5fff846..0000000 Binary files a/themes/dash/assets/images/current.png and /dev/null differ diff --git a/themes/dash/assets/images/eye-beamz.png b/themes/dash/assets/images/eye-beamz.png deleted file mode 100644 index e3b8586..0000000 Binary files a/themes/dash/assets/images/eye-beamz.png and /dev/null differ diff --git a/themes/dash/assets/images/sprite.svg b/themes/dash/assets/images/sprite.svg deleted file mode 100644 index 565e7ab..0000000 --- a/themes/dash/assets/images/sprite.svg +++ /dev/null @@ -1,823 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - instagram-with-circle - - instagram - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/themes/dash/assets/images/the-logo.svg b/themes/dash/assets/images/the-logo.svg deleted file mode 100644 index 0cc3a50..0000000 --- a/themes/dash/assets/images/the-logo.svg +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/dash/assets/js/dash.min.js b/themes/dash/assets/js/dash.min.js deleted file mode 100644 index 7efd7be..0000000 --- a/themes/dash/assets/js/dash.min.js +++ /dev/null @@ -1,9216 +0,0 @@ -// modules are defined as an array -// [ module function, map of requires ] -// -// map of requires is short require name -> numeric require -// -// anything defined in a previous bundle is accessed via the -// orig method which is the require for previous bundles -parcelRequire = (function (modules, cache, entry, globalName) { - // Save the require from previous bundle to this closure if any - var previousRequire = typeof parcelRequire === 'function' && parcelRequire; - var nodeRequire = typeof require === 'function' && require; - - function newRequire(name, jumped) { - if (!cache[name]) { - if (!modules[name]) { - // if we cannot find the module within our internal map or - // cache jump to the current global require ie. the last bundle - // that was added to the page. - var currentRequire = typeof parcelRequire === 'function' && parcelRequire; - if (!jumped && currentRequire) { - return currentRequire(name, true); - } - - // If there are other bundles on this page the require from the - // previous one is saved to 'previousRequire'. Repeat this as - // many times as there are bundles until the module is found or - // we exhaust the require chain. - if (previousRequire) { - return previousRequire(name, true); - } - - // Try the node require function if it exists. - if (nodeRequire && typeof name === 'string') { - return nodeRequire(name); - } - - var err = new Error('Cannot find module \'' + name + '\''); - err.code = 'MODULE_NOT_FOUND'; - throw err; - } - - localRequire.resolve = resolve; - localRequire.cache = {}; - - var module = cache[name] = new newRequire.Module(name); - - modules[name][0].call(module.exports, localRequire, module, module.exports, this); - } - - return cache[name].exports; - - function localRequire(x){ - return newRequire(localRequire.resolve(x)); - } - - function resolve(x){ - return modules[name][1][x] || x; - } - } - - function Module(moduleName) { - this.id = moduleName; - this.bundle = newRequire; - this.exports = {}; - } - - newRequire.isParcelRequire = true; - newRequire.Module = Module; - newRequire.modules = modules; - newRequire.cache = cache; - newRequire.parent = previousRequire; - newRequire.register = function (id, exports) { - modules[id] = [function (require, module) { - module.exports = exports; - }, {}]; - }; - - var error; - for (var i = 0; i < entry.length; i++) { - try { - newRequire(entry[i]); - } catch (e) { - // Save first error but execute all entries - if (!error) { - error = e; - } - } - } - - if (entry.length) { - // Expose entry point to Node, AMD or browser globals - // Based on https://github.com/ForbesLindesay/umd/blob/master/template.js - var mainExports = newRequire(entry[entry.length - 1]); - - // CommonJS - if (typeof exports === "object" && typeof module !== "undefined") { - module.exports = mainExports; - - // RequireJS - } else if (typeof define === "function" && define.amd) { - define(function () { - return mainExports; - }); - - // ",rE:!0,sL:["actionscript","javascript","handlebars","xml"]}},{cN:"tag",b:"",c:[{cN:"name",b:/[^\/><\s]+/,r:0},t]}]}});hljs.registerLanguage("markdown",function(e){return{aliases:["md","mkdown","mkd"],c:[{cN:"section",v:[{b:"^#{1,6}",e:"$"},{b:"^.+?\\n[=-]{2,}$"}]},{b:"<",e:">",sL:"xml",r:0},{cN:"bullet",b:"^([*+-]|(\\d+\\.))\\s+"},{cN:"strong",b:"[*_]{2}.+?[*_]{2}"},{cN:"emphasis",v:[{b:"\\*.+?\\*"},{b:"_.+?_",r:0}]},{cN:"quote",b:"^>\\s+",e:"$"},{cN:"code",v:[{b:"^```w*s*$",e:"^```s*$"},{b:"`.+?`"},{b:"^( {4}| )",e:"$",r:0}]},{b:"^[-\\*]{3,}",e:"$"},{b:"\\[.+?\\][\\(\\[].*?[\\)\\]]",rB:!0,c:[{cN:"string",b:"\\[",e:"\\]",eB:!0,rE:!0,r:0},{cN:"link",b:"\\]\\(",e:"\\)",eB:!0,eE:!0},{cN:"symbol",b:"\\]\\[",e:"\\]",eB:!0,eE:!0}],r:10},{b:/^\[[^\n]+\]:/,rB:!0,c:[{cN:"symbol",b:/\[/,e:/\]/,eB:!0,eE:!0},{cN:"link",b:/:\s*/,e:/$/,eB:!0}]}]}}); \ No newline at end of file diff --git a/themes/dash/src/styles/dash.styl b/themes/dash/src/styles/dash.styl deleted file mode 100644 index 3a69e07..0000000 --- a/themes/dash/src/styles/dash.styl +++ /dev/null @@ -1,75 +0,0 @@ -/** -------------------------------- --- Bulma -------------------------------- -* */ -@import '../../../../node_modules/bulma.styl/stylus/utilities/_all' -@import '../../../../node_modules/bulma.styl/stylus/grid/columns' -/** -------------------------------- --- Colors -------------------------------- -* */ -@import 'main/_colors' -/** -------------------------------- --- Mixins -------------------------------- -* */ -@import 'main/_mixins' -/** -------------------------------- --- Normalize -------------------------------- -* */ -@import 'main/_normalize' -/** -------------------------------- --- Typography -------------------------------- -* */ -@import 'main/_typography' -/** -------------------------------- --- Main Structure -------------------------------- -* */ -@import 'main/_structure' -/** -------------------------------- --- Index -------------------------------- -* */ -@import 'main/_index' -/** -------------------------------- --- Settings -------------------------------- -* */ -@import 'main/_settings' -/** -------------------------------- --- Navigation -------------------------------- -* */ -@import 'main/_navigation' -/** -------------------------------- --- Forms -------------------------------- -* */ -@import 'main/_forms' -/** -------------------------------- --- Blog -------------------------------- -* */ -@import 'main/_posts' -/** -------------------------------- --- Editor -------------------------------- -* */ -@import 'main/_calendar' -@import 'main/_editor' -@import 'main/_editor-highlight' diff --git a/themes/dash/src/styles/main/_calendar.styl b/themes/dash/src/styles/main/_calendar.styl deleted file mode 100644 index cfd3fba..0000000 --- a/themes/dash/src/styles/main/_calendar.styl +++ /dev/null @@ -1,245 +0,0 @@ -// TINY DATE -.dp-modal - position fixed - top 0 - left 0 - right 0 - bottom 0 - // background rgba(255, 255, 255, 0.75) - background-opacity($primary - 70%, 0.75) - z-index 2000 - -.dp - position relative - background $primary // #FFF - box-shadow 2px 2px 16px rgba(0, 0, 0, 0.25) - line-height 1.4 - border-radius 4px - max-height 400px - z-index 5000 - padding-top 6px - overflow hidden - -webkit-tap-highlight-color transparent - -.dp:before - content ' ' - height 6px - position absolute - top 0 - left 0 - right 0 - background $highlight - // background linear-gradient(-90deg, #3B99FC 0%, #8AEFC8 100%) - -.dp-permanent .dp - padding-top 0 - border 1px solid #EEE - box-shadow none - -.dp-permanent .dp:before - display none - -.dp-cal - min-height 300px - -.dp-below - position absolute - font-size 0.8em - width 400px - max-width 90vw - -.dp-permanent - position relative - font-size 0.8em - width 400px - max-width 100vw - -.dp-permanent .dp - z-index 0 - -.dp-modal .dp - position absolute - top 50% - left 50% - max-width 600px - width calc(100% - 4em) - transform translate(-50%, -50%) - animation slide-up 0.3s forwards - -.dp-months - padding 24px - -.dp-years - box-sizing border-box - max-height 400px - padding 8px 0 - overflow auto !important /* HACK for Chrome on Android */ - -.dp-cal-month, .dp-cal-year, .dp-day, .dp-month, .dp-year - box-sizing border-box - text-align center - text-decoration none - position relative - color $white - border-radius 2px - border 0 - background transparent - -.dp-cal-header - position relative - text-align center - padding-bottom 16px - background $primary - 10% - -.dp-next, .dp-prev - position absolute - width 30px - height 30px - overflow hidden - top 14px - color $primary - 50% - border-radius 2px - border 0 - background transparent - -.dp-next:focus, .dp-prev:focus, .dp-next:hover, .dp-prev:hover - outline none - color inherit - -.dp-prev - left 24px - -.dp-next - right 24px - -.dp-prev:before, .dp-next:before - content '' - border 2px solid - width 10px - height 10px - display inline-block - transform rotate(-45deg) - transition border-color 0.2s - margin 9px 0 40px 4px - -.dp-prev:before - border-right 0 - border-bottom 0 - -.dp-next:before - border-left 0 - border-top 0 - margin-left 0 - margin-right 4px - -.dp-cal-month, .dp-cal-year - display inline-block - font-size 1.4em - padding 16px 8px 8px - outline none - -.dp-cal-footer - text-align center - background $primary - 10% - -.dp-day-today:after - content '' - height 0 - width 0 - border 7px solid $highlight - border-bottom-color transparent - border-left-color transparent - position absolute - top 0 - right 0 - -.dp-close, .dp-clear, .dp-today - box-sizing border-box - display inline-block - width 33% - padding 8px - text-decoration none - color $primary - 50% - border 0 - background transparent - -.dp-permanent .dp-close, .dp-permanent .dp-clear - display none - -.dp-close:active, .dp-clear:active, .dp-today:active, .dp-next:active, .dp-prev:active, .dp-cal-month:active, .dp-cal-year:active - background $highlight - color $white - -@media screen and (min-device-width: 1200px) - .dp-close:hover, .dp-close:focus, .dp-clear:hover, .dp-clear:focus, .dp-today:hover, .dp-today:focus, .dp-next:hover, .dp-next:focus, .dp-prev:hover, .dp-prev:focus, .dp-cal-month:focus, .dp-cal-month:hover, .dp-cal-year:hover, .dp-cal-year:focus - background $highlight - color $white - -.dp-col-header, .dp-day - width 14.28571429% - display inline-block - padding 8px - text-align center - -.dp-col-header - color #AAA - text-transform uppercase - font-weight 300 - font-size 0.8em - padding 8px 0 - -.dp-month - width 33% - display inline-block - padding 8px - -.dp-year - display block - padding 8px 40px - width 100% - -.dp-edge-day - color #AAA - -.dp-day:hover, .dp-month:hover, .dp-year:hover, .dp-current:focus, .dp-current, .dp-day:focus, .dp-month:focus, .dp-year:focus - outline none - background $primary - 40% - color $white - -.dp-selected:hover, .dp-selected:focus, .dp-selected - background $highlight - color $primary - 60% - -.dp-day-disabled - background transparent - color #DDD - -.dp-day-disabled:focus, .dp-day-disabled:hover - background #DDD - -.dp-focuser - position absolute - z-index 0 - top 50% - left 50% - -/** -------------------------------- --- Responsive -------------------------------- -* */ -@media (max-width: 480px), (max-height: 480px) - .dp-modal .dp - font-size 0.9em - width auto - width 100% - - .dp-day-of-week, .dp-day - padding 8px - -@keyframes slide-up - 0% - transform translate(-50%, 100%) - - 100% - transform translate(-50%, -50%) \ No newline at end of file diff --git a/themes/dash/src/styles/main/_colors.styl b/themes/dash/src/styles/main/_colors.styl deleted file mode 100644 index 89b678c..0000000 --- a/themes/dash/src/styles/main/_colors.styl +++ /dev/null @@ -1,19 +0,0 @@ -$primary = #374857; -//$primary = #200317; deep sexy purple -$secondary = #b2cce5; -$tertiary = #f5ab35; -$highlight = #fc6399; -$white = #f2f1ef; -$grey = #abb7b7; -$black = #32302f; - -//editor colors -$eventCool = #32cd32 -$eventLame = #F64747 - -$editorPrimary = #bebebe; -$editorSecondary = #ffa07a; -$editorTertiary = #89c4f4; -$editorString = #f6dd74; - -//Bulma overrides diff --git a/themes/dash/src/styles/main/_editor-highlight.styl b/themes/dash/src/styles/main/_editor-highlight.styl deleted file mode 100644 index 0161aa1..0000000 --- a/themes/dash/src/styles/main/_editor-highlight.styl +++ /dev/null @@ -1,46 +0,0 @@ - -.hljs - display block - overflow-x auto - padding 0.5em - background $primary - 5% - -.hljs, .hljs-subst - color #ebdbb2 - -.hljs-deletion, .hljs-formula, .hljs-keyword .hljs-selector-tag - color $editorPrimary - font-style italic - -.hljs-link - color $highlight - -.hljs-built_in, .hljs-emphasis, .hljs-name, .hljs-quote, .hljs-strong, .hljs-title, .hljs-variable - color $editorSecondary - -.hljs-attr, .hljs-params, .hljs-template-tag, .hljs-type - color $editorTertiary - -.hljs-builtin-name, .hljs-doctag, .hljs-literal, .hljs-number - color #8f3f71 - -.hljs-code, .hljs-meta, .hljs-regexp, .hljs-selector-id, .hljs-template-variable - color $tertiary - -.hljs-addition, .hljs-meta-string, .hljs-section, .hljs-selector-attr, .hljs-selector-class, .hljs-string, .hljs-symbol - color $editorString - -.hljs-attribute, .hljs-bullet, .hljs-class, .hljs-function, .hljs-function .hljs-keyword, .hljs-meta-keyword, .hljs-selector-pseudo, .hljs-tag - color $primary + 50% - -.hljs-comment - color #928374 - -.hljs-link_label, .hljs-literal, .hljs-number - color #d3869b - -.hljs-comment, .hljs-emphasis - font-style italic - -.hljs-section, .hljs-strong, .hljs-tag - font-weight normal diff --git a/themes/dash/src/styles/main/_editor.styl b/themes/dash/src/styles/main/_editor.styl deleted file mode 100644 index 0fd3547..0000000 --- a/themes/dash/src/styles/main/_editor.styl +++ /dev/null @@ -1,94 +0,0 @@ -#edit-control - // margin 10px - top 1px - border-radius 3px - // background-opacity($primary - 10%, 0.50) - width 100% - max-width 425px - z-index 2000 - - button:nth-child(1) - border-radius 3px 0 0 3px - button:nth-child(10) - border-radius 0 3px 3px 0 - - button - background $secondary - width 10% - height 39px - object-transitions(0.3s) - margin 0 - border-radius 0 - display inline-block - vertical-align top - text-align center - button:hover - background: $secondary - 20% - - #option-update - padding 5px 5px 1px 5px - display inline-block - vertical-align top - text-align center - - .icon-hide - display none - visibility hidden - - .submit-start - background $white - - svg - fill $eventCool - - .submit-cool - background $eventCool - - svg - fill $white - - .submit-delete - background $eventLame !important - - svg - fill $white !important - - - - #option-date - height 30px - padding-top 6px - - svg - margin -13px 5px 0 0 - display inline-block - vertical-align top - fill $white - - .content-editor-btn-icon - padding 5px 5px 1px 5px - // border-radius 20px - color $primary - - svg - fill $primary - - .content-editor-btn-text - padding 5px - // border-radius 20px - color $primary - - #option-bold - font-weight bold - text-decoration none - - #option-italic - font-weight bold - text-decoration none - font-style italic - - #option-strikethrough - font-weight bold - text-decoration line-through - font-style italic - diff --git a/themes/dash/src/styles/main/_forms.styl b/themes/dash/src/styles/main/_forms.styl deleted file mode 100644 index c9181fc..0000000 --- a/themes/dash/src/styles/main/_forms.styl +++ /dev/null @@ -1,53 +0,0 @@ -form - display inline-block - -input[type=email], input[type=password], input[type=text] - border 0 - border-radius 3px - padding 5px - font 1em 'Apercu-Mono' - display inline-block - background-color $primary - 60% - color $secondary - -textarea - border 0 - border-radius 3px - color $type02 - font 15px 'Apercu-Mono' - -button, input[type=submit] - background $highlight - color $primary - 60% - font 1em 'Apercu-Mono' - border-radius 3px - position relative - cursor pointer - border 0 - -select - font 1em 'Apercu-Mono' - border 1px solid $secondary - -webkit-appearance none - -moz-appearance none - appearance none - // background: url(http://www.stackoverflow.com/favicon.ico) 96% / 15% no-repeat #000; - color $primary - -::-webkit-input-placeholder - font 1em 'Apercu-Mono' - color $secondary - -:-moz-placeholder - /* Firefox 18- */ - font 1em 'Apercu-Mono' - color $secondary - -::-moz-placeholder - /* Firefox 19+ */ - font 1em 'Apercu-Mono' - color $secondary - -:-ms-input-placeholder - font 1em 'Apercu-Mono' - color $secondary diff --git a/themes/dash/src/styles/main/_index.styl b/themes/dash/src/styles/main/_index.styl deleted file mode 100644 index 8be08e3..0000000 --- a/themes/dash/src/styles/main/_index.styl +++ /dev/null @@ -1,195 +0,0 @@ -#dash-index-content - width 100% - height 100% - margin 0 auto - - #dash-index - width 100% - height 100% - z-index 10 - position relative - - #dash-index-wrapper - width 100% - height 100% - margin 0 auto - - #dash-login - width 100% - max-width 900px - margin 0 auto - - #dash-form - width 300px - padding 0.75em - background $primary - border-radius 3px - - input - width 290px - margin 0 0 10px 0 - height 30px - - button - width 300px - - #dash-menu - padding 10px - width 90% - max-width 900px - margin 50px auto - - a - display inline-block - vertical-align top - background $primary - 60% - width 30% - padding 5px - border-radius 3px - color $white - margin 0 10px 10px 0 - - &:hover - background $primary - 50% - - svg - display inline-block - vertical-align top - fill $white - - label - display inline-block - margin-top 5px - width 85% - text-align center - cursor pointer - - #dash-recent - width 100% - max-width 900px - height 100% - padding 5px 0 0 0 - margin 0 auto - - #recent-list - padding 0.75em - position relative - - .recent-header - height 50px - - h3 - vertical-align top - display inline-block - width 50% - - .index-menu - width 50% - text-align right - vertical-align top - display inline-block - margin 24px 0 24px 0 - right 10px - color $white - - a - text-decoration-color $highlight - - a.post-link - font-size 1.5em - font-weight 300 - display inline-block - border-radius 3px - vertical-align top - text-decoration none - position relative - - label - font-size 0.7em - font-weight 700 - color $primary - 60% - padding 5px - vertical-align top - display inline-block - width 60% - - span - float right - vertical-align top - display inline-block - font-family 'Apercu-mono' - font-size 0.5em - padding 7px - color $primary - 60% - - div - width 100% - background $white - position absolute - bottom 0 - border-radius 0 0 3px 3px - - a:nth-child(3) - width 100% - margin-bottom 20px - height 500px - - a:nth-child(4) - width 49% - height 275px - margin 0 15px 15px 0 - - a:nth-child(5) - width 49% - height 550px - - a:nth-child(6) - width 49% - height 550px - margin -260px 15px 0 0 - - a:nth-child(7) - width 49% - height 275px - margin 15px 0 0 0 - -/** -------------------------------- --- Responsive -------------------------------- -* */ -@media only screen and (max-width: 768px) - #dash-index-content - #dash-index - #dash-index-wrapper - #dash-recent - #recent-list - a:nth-child(4), a:nth-child(6) - width 48.9% - -@media only screen and (max-width: 640px) - #dash-index-content - #dash-index - #dash-index-wrapper - #dash-recent - #recent-list - a:nth-child(4), a:nth-child(6) - width 48.5% - -@media only screen and (max-width: 480px) - #dash-index-content - #dash-index - #dash-index-wrapper - #dash-recent - #recent-list - .recent-header - h3 - width 40% - - .index-menu - width 60% - - a:nth-child(3), a:nth-child(4), a:nth-child(5), a:nth-child(6), a:nth-child(7) - width 100% - margin 15px 0 0 0 - height 400px diff --git a/themes/dash/src/styles/main/_mixins.styl b/themes/dash/src/styles/main/_mixins.styl deleted file mode 100644 index 92fc286..0000000 --- a/themes/dash/src/styles/main/_mixins.styl +++ /dev/null @@ -1,11 +0,0 @@ -text-drop-shadow(rgb-value, opacity, offsetX, offsetY, blur) - text-shadow offsetX offsetY blur rgba(rgb-value, opacity) - -object-transitions(rate) - -moz-transition all rate linear - -webkit-transition all rate linear - -o-transition all rate linear - transition all rate linear - -background-opacity(rgb-value, opacity) - background rgba(rgb-value, opacity) diff --git a/themes/dash/src/styles/main/_navigation.styl b/themes/dash/src/styles/main/_navigation.styl deleted file mode 100644 index 4bffd84..0000000 --- a/themes/dash/src/styles/main/_navigation.styl +++ /dev/null @@ -1,62 +0,0 @@ -#nav-index - width 100% - max-width 900px - margin 0 auto - - #nav-index-wrapper - padding 0.75rem - - #nav-pages - .nav-item - display block - width 98% - background $primary - border-radius 3px - color $white - height 30px - padding 10px - margin 0 0 10px 0 - font-size 1.5em - cursor move - - label - display inline-block - vertical-align middle - padding 0 - margin -15px 0 0 10px - cursor move - - #nav-btns - float right - - button - font-size 0.8em - margin 0 0 0 10px - -@media only screen and (max-width: 375px) - #nav-index - #nav-index-wrapper - #nav-pages - .nav-item - width 94.5% - font-size 1em - - label - width 47% - vertical-align top - margin-top 0px - line-height 1em - -@media only screen and (max-width: 320px) - #nav-index - #nav-index-wrapper - #nav-pages - .nav-item - width 94.5% - font-size 1em - - label - width 37% - vertical-align top - margin-top 0px - line-height 1em diff --git a/themes/dash/src/styles/main/_normalize.styl b/themes/dash/src/styles/main/_normalize.styl deleted file mode 100644 index 87daf2c..0000000 --- a/themes/dash/src/styles/main/_normalize.styl +++ /dev/null @@ -1,196 +0,0 @@ -html - line-height 1.15 - -ms-text-size-adjust 100% - -webkit-text-size-adjust 100% - -body - margin 0 - -article, -aside, -footer, -header, -nav, -section - display block - -h1 - font-size 2em - margin 0.67em 0 - -figcaption, -figure, -main - display block - -figure - margin 1em 40px - -hr - box-sizing content-box - height 0 - overflow visible - -pre - font-family monospace, monospace - font-size 1em -a - background-color transparent - -webkit-text-decoration-skip objects - -a:active, -a:hover - outline-width 0 - -abbr[title] - border-bottom none - text-decoration underline - text-decoration underline dotted - -b, -strong - font-weight inherit - font-weight bolder - -code, -kbd, -samp - font-family monospace, monospace - font-size 1em - -dfn - font-style italic - -mark - background-color #ff0 - color #000 - -small - font-size 80% - -sub, -sup - font-size 60% - line-height 0 - position relative - vertical-align baseline - -sub - bottom -0.25em - -sup - top -0.55em - background lightness($primary, 80%) - color $primary - border-radius: 2px; - padding 0 2px 0 2px - margin: 0 2px 0 0 - -audio, -video - display inline-block - -audio - &:not([controls]) - display none - height 0 - -img - border-style none - -svg - &:not(:root) - overflow hidden - -button, -input, -optgroup, -select, -textarea - font-family sans-serif - font-size 100% - line-height 1.15 - margin 0 - -button, -input - overflow visible - -button, -select - text-transform none - -button, html [type="button"], -[type="reset"], -[type="submit"] - -webkit-appearance button - -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner, -button::-moz-focus-inner - border-style none - padding 0 - -[type="button"]:-moz-focusring, -[type="reset"]:-moz-focusring, -[type="submit"]:-moz-focusring, -button:-moz-focusring - outline 1px dotted ButtonText - -fieldset - border 1px solid #c0c0c0 - margin 0 2px - padding 0.35em 0.625em 0.75em - -legend - box-sizing border-box - color inherit - display table - max-width 100% - padding 0 - white-space normal - -progress - display inline-block - vertical-align baseline - -textarea - overflow auto - -[type="checkbox"], -[type="radio"] - box-sizing border-box - padding 0 - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button - height auto - -[type="search"] - -webkit-appearance textfield - outline-offset -2px - -[type="search"]::-webkit-search-cancel-button, -[type="search"]::-webkit-search-decoration - -webkit-appearance none - -::-webkit-file-upload-button - -webkit-appearance button - font inherit - -details, -menu - display block - -summary - display list-item - -canvas - display inline-block - -template - display none - -[hidden] - display none diff --git a/themes/dash/src/styles/main/_posts.styl b/themes/dash/src/styles/main/_posts.styl deleted file mode 100644 index d920f80..0000000 --- a/themes/dash/src/styles/main/_posts.styl +++ /dev/null @@ -1,325 +0,0 @@ -#post-index - width 100% - max-width 900px - margin 0 auto - - #post-index-wrapper - padding 0.75rem - overflow hidden - - #post-index-menu - color $white - - a - text-decoration-color $highlight - - a.add-new-post - display inline-block - background $highlight - border-radius 3px - padding 3px - color $white - text-align center - margin-bottom 10px - float right - - .current-filter - color $highlight - text-decoration-color $secondary - - #posts-list - margin 20px 0 0 0 - - a.post-link - background $white - display inline-block - vertical-align top - width 100% - text-decoration none - margin 0 0 20px 0 - border-radius 3px - overflow hidden - color $primary - 60% - - label - font-size 2em - font-weight 500 - padding 10px - display inline-block - vertical-align top - width 100% - - span - display inline-block - vertical-align top - font-size 0.8em - font-family 'Apercu-Mono' - width 50% - padding 0 0 0 10px - - div.post-bg - width 100% - height 350px - background-color $highlight - - p - padding 5px 10px 5px 10px - font-size 1.2em - font-weight 400 - -#post-edit-index - width 100% - overflow hidden - - #post-edit-index-wrapper - width 100% - - #post-header - // width 100% - max-width 900px - margin 0 auto - padding 0.75rem - - #post-title - #post_title - background $primary - 4% - font-family 'Apercu' - width 97.6% - height 140px - font-size 1.5em - color $white - padding 5px - margin 0 0 5px 0 - - #post-date - background $primary - 10% - border-radius 0 3px 3px 0 - width 39.5% - font-family 'Apercu' - color $highlight - height 30px - vertical-align top - text-align center - - #calendar-icon - background $primary - 15% - border-radius 3px 0 0 3px - display inline-block - padding 2.9px - color $secondary - - #post-options - display inline-block - vertical-align top - width 49% - padding 0 0 0 3px - - button:nth-child(1) - border-radius 3px 0 0 3px - - button:nth-child(4) - border-radius 0 3px 3px 0 - - button - width 25% - height 39px - object-transitions(0.3s) - margin 0 - border-radius 0 - display inline-block - vertical-align top - text-align center - - button[data-active='false'] - background $secondary - - svg - fill $primary - - button[data-active='true'] - background $tertiary - - svg - fill $tertiary - 70% - - #post-meta - #post_tags - background $primary - 4% - font-family 'Apercu' - width 97.6% - height 140px - color $secondary - padding 5px - margin 0 0 5px 0 - - #featured-image-upload, #post-image-upload - display none - - #post-feature - width 100% - - #featured-image-drop - display flex - align-items center - justify-content center - width 100% - min-height 200px - background $primary - 50% - color $primary - vertical-align middle - font-family 'Apercu-Mono' - - label - cursor pointer - - img - width 100% - margin 0 - padding 0 - - #featured-new-image-btn - position absolute - margin 20px - - #new-feature-upload - padding-top 4px - background $white - - svg - fill $highlight - - #edit-post - width 100% - max-width 900px - margin 0 auto - - #edit-post-wrapper - width 98% - max-width 900px - margin 0 auto - border-radius 5px - background $primary - 10% - - pre - code - font-family 'Apercu-Mono' - padding 5px - border-radius 5px - line-height 1.6em - font-size 1.25em - color $editorPrimary - word-wrap normal - white-space pre-wrap - line-break normal - -webkit-line-break normal - -o-line-break normal - -moz-line-break normal - display inline-block - width 100% - max-width 900px - -/** -------------------------------- --- Responsive -------------------------------- -* */ -@media only screen and (max-width: 800px) - #post-edit-index - #post-edit-index-wrapper - #post-header - #post-title - #post-date - width 37.6% - -@media only screen and (max-width: 768px) - #post-edit-index - #post-edit-index-wrapper - #post-header - #post-title - #post-date - width 43.1% - - #post-meta - #edit-control - max-width 100% - - button - width 9.91% - -@media only screen and (max-width: 640px) - #post-edit-index - #post-edit-index-wrapper - #post-header - #post-title - #post-date - width 42% - -@media only screen and (max-width: 480px) - #post-index - #post-index-wrapper - #post-index-menu - a - font-size 0.95em - - label - display none - visibility hidden - - #post-edit-index - #post-edit-index-wrapper - #post-header - #post-title - #post-options - margin 5px 0 0 0 - width 100% - padding 0 - - #post-date - width 89.2% - - #post-meta - #edit-control - button - width 9.91% - -@media only screen and (max-width: 320px) - #post-index - #post-index-wrapper - #post-index-menu - a - font-size 0.95em - - label - display none - visibility hidden - - #post-edit-index - #post-edit-index-wrapper - #post-header - #post-title - #post_title - width 96.4% - - #post-options - margin 5px 0 0 0 - width 100% - padding 0 - - #post-date - width 83.1% - - #post-meta - #post_tags - width 96.4% - - #edit-control - .content-editor-btn-icon - svg.icons - width 20px - - .post-sumbit-btn - svg.icons - width 20px - - button - width 10% diff --git a/themes/dash/src/styles/main/_settings.styl b/themes/dash/src/styles/main/_settings.styl deleted file mode 100644 index 2c0b8df..0000000 --- a/themes/dash/src/styles/main/_settings.styl +++ /dev/null @@ -1,134 +0,0 @@ -#site-background - margin 0 0 10px 0 - - img - width 100% - // border 5px solid $white - border-radius 0 - overflow hidden - cursor pointer - - label - position absolute - color $white - margin 5px - background $primary - 60% - padding 5px - border-radius 3px - - input - visibility hidden - display none - -#settings-index - width 94% - max-width 900px - margin 0 auto - - #settings-index-wrapper - padding 0.75rem - - button - margin-top 5px - width 100% - height 45px - - #member-settings, #site-settings, #option-settings - background $primary - padding 5px - border-radius 5px 0 5px 0 - - label - font-family 'Apercu-Mono' - color $white - - input - width 95% - margin 0 5px 10px 0 - height 30px - padding 10px - - width 100% - margin 20px auto - - #member-avatar-drop - display inline-block - margin 0 0 10px 0 - - img - width 100% - // border 5px solid $white - border-radius 5px - overflow hidden - cursor pointer - - input - visibility hidden - display none - - #member-info - vertical-align top - display inline-block - width 100% - - input - width 95% - margin 0 5px 10px 0 - - textarea - background $primary - 60% - width 95% - height 155px - color $secondary - padding 10px - - #option-settings - #theme-settings - a - width 95% - margin 0 5px 5px 0 - height 25px - padding 10px - display inline-block - - a[data-enabled='false'] - background $primary - 60% - color $secondary - border-radius 3px - - a[data-enabled='true'] - background $secondary - color $primary - border-radius 3px - - svg - fill $primary - display inline-block - float right - - #mail-settings - min-height 240px - - a.mail-option - float right - font-family 'Apercu-Mono' - font-size 0.9em - border-radius 3px - text-decoration none - margin 0 0 0 5px - // padding: 1px - - a.mail-option[data-enabled='true'] - color $highlight - - a.mail-option[data-enabled='false'] - color $white - - input - // width 94% - margin 0 5px 5px 0 - vertical-align top - - div[data-enabled='false'] - display none - visibility hidden \ No newline at end of file diff --git a/themes/dash/src/styles/main/_structure.styl b/themes/dash/src/styles/main/_structure.styl deleted file mode 100644 index 2c30449..0000000 --- a/themes/dash/src/styles/main/_structure.styl +++ /dev/null @@ -1,123 +0,0 @@ -html, body - background-color $primary - 60% - font 400 1em $baseType - height 100% - -a - font 300 1em $baseType - color $secondary - text-decoration underline - object-transitions(0.1s) - - &:hover - color $secondary + 10% - -svg.icons - width 30px - fill $secondary - -#loader - position fixed - z-index 2000 - height 100% - width 100% - display flex - align-items center - justify-content center - display none - visibility hidden - - i - color $tertiary - -.blog-container - width 100% - -.main-container - margin 0 auto - z-index 10 - position relative - - section - header - width 100% - max-width 900px - margin 0 auto - - #wrapper - padding 0.75rem - - #left, #right - width 50% - display inline-block - vertical-align top - - #the-logo - width 40px - - #right - text-align right - color $white - - a - text-decoration-color $highlight - - label#the-title - font-size 1.2em - font-weight 400 - color $tertiary - text-decoration none - display block - line-height 0.8 - // word-break: break-all; - - #dash-menu - text-align right - -/* Mozilla based browsers */ -::-moz-selection - background-color $highlight - color $white - -/* Works in Safari */ -::selection - background-color $highlight - color $white - -/* Works in Opera */ -::-o-selection - background-color $highlight - color $white - -::-ms-selection - background-color $highlight - color $white - -/* Works in Internet Explorer */ -::-webkit-selection - background-color $highlight - color $white - -/** -------------------------------- --- Responsive -------------------------------- -* */ -@media only screen and (max-width: 800px) - .main-container - section - header - #wrapper - #left, #right - display inline-block - -@media only screen and (max-width: 480px) - .main-container - section - header - #wrapper - #left - width 30% - - #right - width 70% diff --git a/themes/dash/src/styles/main/_typography.styl b/themes/dash/src/styles/main/_typography.styl deleted file mode 100644 index 3788c75..0000000 --- a/themes/dash/src/styles/main/_typography.styl +++ /dev/null @@ -1,118 +0,0 @@ -@font-face - font-weight 300 - font-style normal - font-family 'Apercu' - src url('fonts/Apercu-Light.eot'), - url('fonts/Apercu-Light.eot?#iefix') format('embedded-opentype'), - url('fonts/Apercu-Light.woff2') format('woff2'), - url('fonts/Apercu-Light.woff') format('woff'), - url('fonts/Apercu-Light.ttf') format('truetype'), - url('fonts/Apercu-Light.svg?#Apercu') format('svg') - -@font-face - font-weight 300 - font-style italic - font-family 'Apercu' - src url('fonts/Apercu-LightItalic.eot'), - url('fonts/Apercu-LightItalic.eot?#iefix') format('embedded-opentype'), - url('fonts/Apercu-LightItalic.woff2') format('woff2'), - url('fonts/Apercu-LightItalic.woff') format('woff'), - url('fonts/Apercu-LightItalic.ttf') format('truetype'), - url('fonts/Apercu-LightItalic.svg?#Apercu') format('svg') - -@font-face - font-weight 400 - font-style normal - font-family 'Apercu' - src url('fonts/Apercu.eot'), - url('fonts/Apercu.eot?#iefix') format('embedded-opentype'), - url('fonts/Apercu.woff2') format('woff2'), - url('fonts/Apercu.woff') format('woff'), - url('fonts/Apercu.ttf') format('truetype'), - url('fonts/Apercu.svg?#Apercu') format('svg') - -@font-face - font-weight 400 - font-style italic - font-family 'Apercu' - src url('fonts/Apercu-Italic.eot'), - url('fonts/Apercu-Italic.eot?#iefix') format('embedded-opentype'), - url('fonts/Apercu-Italic.woff2') format('woff2'), - url('fonts/Apercu-Italic.woff') format('woff'), - url('fonts/Apercu-Italic.ttf') format('truetype'), - url('fonts/Apercu-Italic.svg?#Apercu') format('svg') - -@font-face - font-weight 500 - font-style normal - font-family 'Apercu' - src url('fonts/Apercu-Medium.eot'), - url('fonts/Apercu-Medium.eot?#iefix') format('embedded-opentype'), - url('fonts/Apercu-Medium.woff2') format('woff2'), - url('fonts/Apercu-Medium.woff') format('woff'), - url('fonts/Apercu-Medium.ttf') format('truetype'), - url('fonts/Apercu-Medium.svg?#Apercu') format('svg') - -@font-face - font-weight 500 - font-style italic - font-family 'Apercu' - src url('fonts/Apercu-MediumItalic.eot'), - url('fonts/Apercu-MediumItalic.eot?#iefix') format('embedded-opentype'), - url('fonts/Apercu-MediumItalic.woff2') format('woff2'), - url('fonts/Apercu-MediumItalic.woff') format('woff'), - url('fonts/Apercu-MediumItalic.ttf') format('truetype'), - url('fonts/Apercu-MediumItalic.svg?#Apercu') format('svg') - -@font-face - font-weight 600 - font-style normal - font-weight bold - font-family 'Apercu' - src url('fonts/Apercu-Bold.eot'), - url('fonts/Apercu-Bold.eot?#iefix') format('embedded-opentype'), - url('fonts/Apercu-Bold.woff2') format('woff2'), - url('fonts/Apercu-Bold.woff') format('woff'), - url('fonts/Apercu-Bold.ttf') format('truetype'), - url('fonts/Apercu-Bold.svg?#Apercu') format('svg') - -@font-face - font-weight 600 - font-style italic - font-weight bold - font-family 'Apercu' - src url('fonts/Apercu-BoldItalic.eot'), - url('fonts/Apercu-BoldItalic.eot?#iefix') format('embedded-opentype'), - url('fonts/Apercu-BoldItalic.woff2') format('woff2'), - url('fonts/Apercu-BoldItalic.woff') format('woff'), - url('fonts/Apercu-BoldItalic.ttf') format('truetype'), - url('fonts/Apercu-Bold.svg?#Apercu') format('svg') - -@font-face - font-weight 400 - font-style normal - font-family 'Apercu-Mono' - src url('fonts/Apercu-Mono.eot'), - url('fonts/Apercu-Mono.eot?#iefix') format('embedded-opentype'), - url('fonts/Apercu-Mono.woff2') format('woff2'), - url('fonts/Apercu-Mono.woff') format('woff'), - url('fonts/Apercu-Mono.ttf') format('truetype'), - url('fonts/Apercu-Mono.svg?#Apercu') format('svg') - -$baseType = 'Apercu', Helvetica, Arial, sans-serif; - -h1, h2, h3 - color $white - -h1 - font-size 2em - font-weight 400 - -h2 - font-size 1.75em - font-weight 400 - -h3 - font-size 1.5em - font-weight 300 - diff --git a/themes/default-dark/assets/css/base.css b/themes/default-dark/assets/css/base.css deleted file mode 100644 index 6f6b8a6..0000000 --- a/themes/default-dark/assets/css/base.css +++ /dev/null @@ -1,2243 +0,0 @@ -/** -------------------------------- --- Bulma -------------------------------- -**/ -@-moz-keyframes spinAround { - from { - transform: rotate(0deg); - } - to { - transform: rotate(359deg); - } -} -@-webkit-keyframes spinAround { - from { - transform: rotate(0deg); - } - to { - transform: rotate(359deg); - } -} -@-o-keyframes spinAround { - from { - transform: rotate(0deg); - } - to { - transform: rotate(359deg); - } -} -@keyframes spinAround { - from { - transform: rotate(0deg); - } - to { - transform: rotate(359deg); - } -} -.column { - display: block; - flex-basis: 0; - flex-grow: 1; - flex-shrink: 1; - padding: 0.75rem; -} -.columns.is-mobile > .column.is-narrow { - flex: none; -} -.columns.is-mobile > .column.is-full { - flex: none; - width: 100%; -} -.columns.is-mobile > .column.is-three-quarters { - flex: none; - width: 75%; -} -.columns.is-mobile > .column.is-two-thirds { - flex: none; - width: 66.6666%; -} -.columns.is-mobile > .column.is-half { - flex: none; - width: 50%; -} -.columns.is-mobile > .column.is-one-third { - flex: none; - width: 33.3333%; -} -.columns.is-mobile > .column.is-one-quarter { - flex: none; - width: 25%; -} -.columns.is-mobile > .column.is-one-fifth { - flex: none; - width: 20%; -} -.columns.is-mobile > .column.is-two-fifths { - flex: none; - width: 40%; -} -.columns.is-mobile > .column.is-three-fifths { - flex: none; - width: 60%; -} -.columns.is-mobile > .column.is-four-fifths { - flex: none; -} -.columns.is-mobile > .column.is-offset-three-quarters { - margin-left: 75%; -} -.columns.is-mobile > .column.is-offset-two-thirds { - margin-left: 66.6666%; -} -.columns.is-mobile > .column.is-offset-half { - margin-left: 50%; -} -.columns.is-mobile > .column.is-offset-one-third { - margin-left: 33.3333%; -} -.columns.is-mobile > .column.is-offset-one-quarter { - margin-left: 25%; -} -.columns.is-mobile > .column.is-offset-one-fifth { - margin-left: 20%; -} -.columns.is-mobile > .column.is-offset-two-fifths { - margin-left: 40%; -} -.columns.is-mobile > .column.is-offset-three-fifths { - margin-left: 60%; -} -.columns.is-mobile > .column.is-offset-four-fifths { - margin-left: 80%; -} -.columns.is-mobile > .column.is-1 { - flex: none; - width: 8.333333333333332%; -} -.columns.is-mobile > .column.is-offset-1 { - margin-left: 8.333333333333332%; -} -.columns.is-mobile > .column.is-2 { - flex: none; - width: 16.666666666666664%; -} -.columns.is-mobile > .column.is-offset-2 { - margin-left: 16.666666666666664%; -} -.columns.is-mobile > .column.is-3 { - flex: none; - width: 25%; -} -.columns.is-mobile > .column.is-offset-3 { - margin-left: 25%; -} -.columns.is-mobile > .column.is-4 { - flex: none; - width: 33.33333333333333%; -} -.columns.is-mobile > .column.is-offset-4 { - margin-left: 33.33333333333333%; -} -.columns.is-mobile > .column.is-5 { - flex: none; - width: 41.66666666666667%; -} -.columns.is-mobile > .column.is-offset-5 { - margin-left: 41.66666666666667%; -} -.columns.is-mobile > .column.is-6 { - flex: none; - width: 50%; -} -.columns.is-mobile > .column.is-offset-6 { - margin-left: 50%; -} -.columns.is-mobile > .column.is-7 { - flex: none; - width: 58.333333333333336%; -} -.columns.is-mobile > .column.is-offset-7 { - margin-left: 58.333333333333336%; -} -.columns.is-mobile > .column.is-8 { - flex: none; - width: 66.66666666666666%; -} -.columns.is-mobile > .column.is-offset-8 { - margin-left: 66.66666666666666%; -} -.columns.is-mobile > .column.is-9 { - flex: none; - width: 75%; -} -.columns.is-mobile > .column.is-offset-9 { - margin-left: 75%; -} -.columns.is-mobile > .column.is-10 { - flex: none; - width: 83.33333333333334%; -} -.columns.is-mobile > .column.is-offset-10 { - margin-left: 83.33333333333334%; -} -.columns.is-mobile > .column.is-11 { - flex: none; - width: 91.66666666666666%; -} -.columns.is-mobile > .column.is-offset-11 { - margin-left: 91.66666666666666%; -} -.columns.is-mobile > .column.is-12 { - flex: none; - width: 100%; -} -.columns.is-mobile > .column.is-offset-12 { - margin-left: 100%; -} -@media screen and (max-width: 768px) { - .column.is-narrow-mobile { - flex: none; - } - .column.is-full-mobile { - flex: none; - width: 100%; - } - .column.is-three-quarters-mobile { - flex: none; - width: 75%; - } - .column.is-two-thirds-mobile { - flex: none; - width: 66.6666%; - } - .column.is-half-mobile { - flex: none; - width: 50%; - } - .column.is-one-third-mobile { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-mobile { - flex: none; - width: 25%; - } - .column.is-one-fifth-mobile { - flex: none; - width: 20%; - } - .column.is-two-fifths-mobile { - flex: none; - width: 40%; - } - .column.is-three-fifths-mobile { - flex: none; - width: 60%; - } - .column.is-four-fifths-mobile { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-mobile { - margin-left: 75%; - } - .column.is-offset-two-thirds-mobile { - margin-left: 66.6666%; - } - .column.is-offset-half-mobile { - margin-left: 50%; - } - .column.is-offset-one-third-mobile { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-mobile { - margin-left: 25%; - } - .column.is-offset-one-fifth-mobile { - margin-left: 20%; - } - .column.is-offset-two-fifths-mobile { - margin-left: 40%; - } - .column.is-offset-three-fifths-mobile { - margin-left: 60%; - } - .column.is-offset-four-fifths-mobile { - margin-left: 80%; - } - .column.is-1-mobile { - flex: none; - width: 8.333333333333332%; - } - .column.is-offset-1-mobile { - margin-left: 8.333333333333332%; - } - .column.is-2-mobile { - flex: none; - width: 16.666666666666664%; - } - .column.is-offset-2-mobile { - margin-left: 16.666666666666664%; - } - .column.is-3-mobile { - flex: none; - width: 25%; - } - .column.is-offset-3-mobile { - margin-left: 25%; - } - .column.is-4-mobile { - flex: none; - width: 33.33333333333333%; - } - .column.is-offset-4-mobile { - margin-left: 33.33333333333333%; - } - .column.is-5-mobile { - flex: none; - width: 41.66666666666667%; - } - .column.is-offset-5-mobile { - margin-left: 41.66666666666667%; - } - .column.is-6-mobile { - flex: none; - width: 50%; - } - .column.is-offset-6-mobile { - margin-left: 50%; - } - .column.is-7-mobile { - flex: none; - width: 58.333333333333336%; - } - .column.is-offset-7-mobile { - margin-left: 58.333333333333336%; - } - .column.is-8-mobile { - flex: none; - width: 66.66666666666666%; - } - .column.is-offset-8-mobile { - margin-left: 66.66666666666666%; - } - .column.is-9-mobile { - flex: none; - width: 75%; - } - .column.is-offset-9-mobile { - margin-left: 75%; - } - .column.is-10-mobile { - flex: none; - width: 83.33333333333334%; - } - .column.is-offset-10-mobile { - margin-left: 83.33333333333334%; - } - .column.is-11-mobile { - flex: none; - width: 91.66666666666666%; - } - .column.is-offset-11-mobile { - margin-left: 91.66666666666666%; - } - .column.is-12-mobile { - flex: none; - width: 100%; - } - .column.is-offset-12-mobile { - margin-left: 100%; - } -} -@media screen and (min-width: 769px), print { - .column.is-narrow, - .column.is-narrow-tablet { - flex: none; - } - .column.is-full, - .column.is-full-tablet { - flex: none; - width: 100%; - } - .column.is-three-quarters, - .column.is-three-quarters-tablet { - flex: none; - width: 75%; - } - .column.is-two-thirds, - .column.is-two-thirds-tablet { - flex: none; - width: 66.6666%; - } - .column.is-half, - .column.is-half-tablet { - flex: none; - width: 50%; - } - .column.is-one-third, - .column.is-one-third-tablet { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter, - .column.is-one-quarter-tablet { - flex: none; - width: 25%; - } - .column.is-one-fifth, - .column.is-one-fifth-tablet { - flex: none; - width: 20%; - } - .column.is-two-fifths, - .column.is-two-fifths-tablet { - flex: none; - width: 40%; - } - .column.is-three-fifths, - .column.is-three-fifths-tablet { - flex: none; - width: 60%; - } - .column.is-four-fifths, - .column.is-four-fifths-tablet { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters, - .column.is-offset-three-quarters-tablet { - margin-left: 75%; - } - .column.is-offset-two-thirds, - .column.is-offset-two-thirds-tablet { - margin-left: 66.6666%; - } - .column.is-offset-half, - .column.is-offset-half-tablet { - margin-left: 50%; - } - .column.is-offset-one-third, - .column.is-offset-one-third-tablet { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter, - .column.is-offset-one-quarter-tablet { - margin-left: 25%; - } - .column.is-offset-one-fifth, - .column.is-offset-one-fifth-tablet { - margin-left: 20%; - } - .column.is-offset-two-fifths, - .column.is-offset-two-fifths-tablet { - margin-left: 40%; - } - .column.is-offset-three-fifths, - .column.is-offset-three-fifths-tablet { - margin-left: 60%; - } - .column.is-offset-four-fifths, - .column.is-offset-four-fifths-tablet { - margin-left: 80%; - } - .column.is-1, - .column.is-1-tablet { - flex: none; - width: 8.333333333333332%; - } - .column.is-offset-1, - .column.is-offset-1-tablet { - margin-left: 8.333333333333332%; - } - .column.is-2, - .column.is-2-tablet { - flex: none; - width: 16.666666666666664%; - } - .column.is-offset-2, - .column.is-offset-2-tablet { - margin-left: 16.666666666666664%; - } - .column.is-3, - .column.is-3-tablet { - flex: none; - width: 25%; - } - .column.is-offset-3, - .column.is-offset-3-tablet { - margin-left: 25%; - } - .column.is-4, - .column.is-4-tablet { - flex: none; - width: 33.33333333333333%; - } - .column.is-offset-4, - .column.is-offset-4-tablet { - margin-left: 33.33333333333333%; - } - .column.is-5, - .column.is-5-tablet { - flex: none; - width: 41.66666666666667%; - } - .column.is-offset-5, - .column.is-offset-5-tablet { - margin-left: 41.66666666666667%; - } - .column.is-6, - .column.is-6-tablet { - flex: none; - width: 50%; - } - .column.is-offset-6, - .column.is-offset-6-tablet { - margin-left: 50%; - } - .column.is-7, - .column.is-7-tablet { - flex: none; - width: 58.333333333333336%; - } - .column.is-offset-7, - .column.is-offset-7-tablet { - margin-left: 58.333333333333336%; - } - .column.is-8, - .column.is-8-tablet { - flex: none; - width: 66.66666666666666%; - } - .column.is-offset-8, - .column.is-offset-8-tablet { - margin-left: 66.66666666666666%; - } - .column.is-9, - .column.is-9-tablet { - flex: none; - width: 75%; - } - .column.is-offset-9, - .column.is-offset-9-tablet { - margin-left: 75%; - } - .column.is-10, - .column.is-10-tablet { - flex: none; - width: 83.33333333333334%; - } - .column.is-offset-10, - .column.is-offset-10-tablet { - margin-left: 83.33333333333334%; - } - .column.is-11, - .column.is-11-tablet { - flex: none; - width: 91.66666666666666%; - } - .column.is-offset-11, - .column.is-offset-11-tablet { - margin-left: 91.66666666666666%; - } - .column.is-12, - .column.is-12-tablet { - flex: none; - width: 100%; - } - .column.is-offset-12, - .column.is-offset-12-tablet { - margin-left: 100%; - } -} -@media screen and (max-width: 1023px) { - .column.is-narrow-touch { - flex: none; - } - .column.is-full-touch { - flex: none; - width: 100%; - } - .column.is-three-quarters-touch { - flex: none; - width: 75%; - } - .column.is-two-thirds-touch { - flex: none; - width: 66.6666%; - } - .column.is-half-touch { - flex: none; - width: 50%; - } - .column.is-one-third-touch { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-touch { - flex: none; - width: 25%; - } - .column.is-one-fifth-touch { - flex: none; - width: 20%; - } - .column.is-two-fifths-touch { - flex: none; - width: 40%; - } - .column.is-three-fifths-touch { - flex: none; - width: 60%; - } - .column.is-four-fifths-touch { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-touch { - margin-left: 75%; - } - .column.is-offset-two-thirds-touch { - margin-left: 66.6666%; - } - .column.is-offset-half-touch { - margin-left: 50%; - } - .column.is-offset-one-third-touch { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-touch { - margin-left: 25%; - } - .column.is-offset-one-fifth-touch { - margin-left: 20%; - } - .column.is-offset-two-fifths-touch { - margin-left: 40%; - } - .column.is-offset-three-fifths-touch { - margin-left: 60%; - } - .column.is-offset-four-fifths-touch { - margin-left: 80%; - } - .column.is-1-touch { - flex: none; - width: 8.333333333333332%; - } - .column.is-offset-1-touch { - margin-left: 8.333333333333332%; - } - .column.is-2-touch { - flex: none; - width: 16.666666666666664%; - } - .column.is-offset-2-touch { - margin-left: 16.666666666666664%; - } - .column.is-3-touch { - flex: none; - width: 25%; - } - .column.is-offset-3-touch { - margin-left: 25%; - } - .column.is-4-touch { - flex: none; - width: 33.33333333333333%; - } - .column.is-offset-4-touch { - margin-left: 33.33333333333333%; - } - .column.is-5-touch { - flex: none; - width: 41.66666666666667%; - } - .column.is-offset-5-touch { - margin-left: 41.66666666666667%; - } - .column.is-6-touch { - flex: none; - width: 50%; - } - .column.is-offset-6-touch { - margin-left: 50%; - } - .column.is-7-touch { - flex: none; - width: 58.333333333333336%; - } - .column.is-offset-7-touch { - margin-left: 58.333333333333336%; - } - .column.is-8-touch { - flex: none; - width: 66.66666666666666%; - } - .column.is-offset-8-touch { - margin-left: 66.66666666666666%; - } - .column.is-9-touch { - flex: none; - width: 75%; - } - .column.is-offset-9-touch { - margin-left: 75%; - } - .column.is-10-touch { - flex: none; - width: 83.33333333333334%; - } - .column.is-offset-10-touch { - margin-left: 83.33333333333334%; - } - .column.is-11-touch { - flex: none; - width: 91.66666666666666%; - } - .column.is-offset-11-touch { - margin-left: 91.66666666666666%; - } - .column.is-12-touch { - flex: none; - width: 100%; - } - .column.is-offset-12-touch { - margin-left: 100%; - } -} -@media screen and (min-width: 1024px) { - .column.is-narrow-desktop { - flex: none; - } - .column.is-full-desktop { - flex: none; - width: 100%; - } - .column.is-three-quarters-desktop { - flex: none; - width: 75%; - } - .column.is-two-thirds-desktop { - flex: none; - width: 66.6666%; - } - .column.is-half-desktop { - flex: none; - width: 50%; - } - .column.is-one-third-desktop { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-desktop { - flex: none; - width: 25%; - } - .column.is-one-fifth-desktop { - flex: none; - width: 20%; - } - .column.is-two-fifths-desktop { - flex: none; - width: 40%; - } - .column.is-three-fifths-desktop { - flex: none; - width: 60%; - } - .column.is-four-fifths-desktop { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-desktop { - margin-left: 75%; - } - .column.is-offset-two-thirds-desktop { - margin-left: 66.6666%; - } - .column.is-offset-half-desktop { - margin-left: 50%; - } - .column.is-offset-one-third-desktop { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-desktop { - margin-left: 25%; - } - .column.is-offset-one-fifth-desktop { - margin-left: 20%; - } - .column.is-offset-two-fifths-desktop { - margin-left: 40%; - } - .column.is-offset-three-fifths-desktop { - margin-left: 60%; - } - .column.is-offset-four-fifths-desktop { - margin-left: 80%; - } - .column.is-1-desktop { - flex: none; - width: 8.333333333333332%; - } - .column.is-offset-1-desktop { - margin-left: 8.333333333333332%; - } - .column.is-2-desktop { - flex: none; - width: 16.666666666666664%; - } - .column.is-offset-2-desktop { - margin-left: 16.666666666666664%; - } - .column.is-3-desktop { - flex: none; - width: 25%; - } - .column.is-offset-3-desktop { - margin-left: 25%; - } - .column.is-4-desktop { - flex: none; - width: 33.33333333333333%; - } - .column.is-offset-4-desktop { - margin-left: 33.33333333333333%; - } - .column.is-5-desktop { - flex: none; - width: 41.66666666666667%; - } - .column.is-offset-5-desktop { - margin-left: 41.66666666666667%; - } - .column.is-6-desktop { - flex: none; - width: 50%; - } - .column.is-offset-6-desktop { - margin-left: 50%; - } - .column.is-7-desktop { - flex: none; - width: 58.333333333333336%; - } - .column.is-offset-7-desktop { - margin-left: 58.333333333333336%; - } - .column.is-8-desktop { - flex: none; - width: 66.66666666666666%; - } - .column.is-offset-8-desktop { - margin-left: 66.66666666666666%; - } - .column.is-9-desktop { - flex: none; - width: 75%; - } - .column.is-offset-9-desktop { - margin-left: 75%; - } - .column.is-10-desktop { - flex: none; - width: 83.33333333333334%; - } - .column.is-offset-10-desktop { - margin-left: 83.33333333333334%; - } - .column.is-11-desktop { - flex: none; - width: 91.66666666666666%; - } - .column.is-offset-11-desktop { - margin-left: 91.66666666666666%; - } - .column.is-12-desktop { - flex: none; - width: 100%; - } - .column.is-offset-12-desktop { - margin-left: 100%; - } -} -@media screen and (min-width: 1216px) { - .column.is-narrow-widescreen { - flex: none; - } - .column.is-full-widescreen { - flex: none; - width: 100%; - } - .column.is-three-quarters-widescreen { - flex: none; - width: 75%; - } - .column.is-two-thirds-widescreen { - flex: none; - width: 66.6666%; - } - .column.is-half-widescreen { - flex: none; - width: 50%; - } - .column.is-one-third-widescreen { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-widescreen { - flex: none; - width: 25%; - } - .column.is-one-fifth-widescreen { - flex: none; - width: 20%; - } - .column.is-two-fifths-widescreen { - flex: none; - width: 40%; - } - .column.is-three-fifths-widescreen { - flex: none; - width: 60%; - } - .column.is-four-fifths-widescreen { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-widescreen { - margin-left: 75%; - } - .column.is-offset-two-thirds-widescreen { - margin-left: 66.6666%; - } - .column.is-offset-half-widescreen { - margin-left: 50%; - } - .column.is-offset-one-third-widescreen { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-widescreen { - margin-left: 25%; - } - .column.is-offset-one-fifth-widescreen { - margin-left: 20%; - } - .column.is-offset-two-fifths-widescreen { - margin-left: 40%; - } - .column.is-offset-three-fifths-widescreen { - margin-left: 60%; - } - .column.is-offset-four-fifths-widescreen { - margin-left: 80%; - } - .column.is-1-widescreen { - flex: none; - width: 8.333333333333332%; - } - .column.is-offset-1-widescreen { - margin-left: 8.333333333333332%; - } - .column.is-2-widescreen { - flex: none; - width: 16.666666666666664%; - } - .column.is-offset-2-widescreen { - margin-left: 16.666666666666664%; - } - .column.is-3-widescreen { - flex: none; - width: 25%; - } - .column.is-offset-3-widescreen { - margin-left: 25%; - } - .column.is-4-widescreen { - flex: none; - width: 33.33333333333333%; - } - .column.is-offset-4-widescreen { - margin-left: 33.33333333333333%; - } - .column.is-5-widescreen { - flex: none; - width: 41.66666666666667%; - } - .column.is-offset-5-widescreen { - margin-left: 41.66666666666667%; - } - .column.is-6-widescreen { - flex: none; - width: 50%; - } - .column.is-offset-6-widescreen { - margin-left: 50%; - } - .column.is-7-widescreen { - flex: none; - width: 58.333333333333336%; - } - .column.is-offset-7-widescreen { - margin-left: 58.333333333333336%; - } - .column.is-8-widescreen { - flex: none; - width: 66.66666666666666%; - } - .column.is-offset-8-widescreen { - margin-left: 66.66666666666666%; - } - .column.is-9-widescreen { - flex: none; - width: 75%; - } - .column.is-offset-9-widescreen { - margin-left: 75%; - } - .column.is-10-widescreen { - flex: none; - width: 83.33333333333334%; - } - .column.is-offset-10-widescreen { - margin-left: 83.33333333333334%; - } - .column.is-11-widescreen { - flex: none; - width: 91.66666666666666%; - } - .column.is-offset-11-widescreen { - margin-left: 91.66666666666666%; - } - .column.is-12-widescreen { - flex: none; - width: 100%; - } - .column.is-offset-12-widescreen { - margin-left: 100%; - } -} -@media screen and (min-width: 1408px) { - .column.is-narrow-fullhd { - flex: none; - } - .column.is-full-fullhd { - flex: none; - width: 100%; - } - .column.is-three-quarters-fullhd { - flex: none; - width: 75%; - } - .column.is-two-thirds-fullhd { - flex: none; - width: 66.6666%; - } - .column.is-half-fullhd { - flex: none; - width: 50%; - } - .column.is-one-third-fullhd { - flex: none; - width: 33.3333%; - } - .column.is-one-quarter-fullhd { - flex: none; - width: 25%; - } - .column.is-one-fifth-fullhd { - flex: none; - width: 20%; - } - .column.is-two-fifths-fullhd { - flex: none; - width: 40%; - } - .column.is-three-fifths-fullhd { - flex: none; - width: 60%; - } - .column.is-four-fifths-fullhd { - flex: none; - width: 80%; - } - .column.is-offset-three-quarters-fullhd { - margin-left: 75%; - } - .column.is-offset-two-thirds-fullhd { - margin-left: 66.6666%; - } - .column.is-offset-half-fullhd { - margin-left: 50%; - } - .column.is-offset-one-third-fullhd { - margin-left: 33.3333%; - } - .column.is-offset-one-quarter-fullhd { - margin-left: 25%; - } - .column.is-offset-one-fifth-fullhd { - margin-left: 20%; - } - .column.is-offset-two-fifths-fullhd { - margin-left: 40%; - } - .column.is-offset-three-fifths-fullhd { - margin-left: 60%; - } - .column.is-offset-four-fifths-fullhd { - margin-left: 80%; - } - .column.is-1-fullhd { - flex: none; - width: 8.333333333333332%; - } - .column.is-offset-1-fullhd { - margin-left: 8.333333333333332%; - } - .column.is-2-fullhd { - flex: none; - width: 16.666666666666664%; - } - .column.is-offset-2-fullhd { - margin-left: 16.666666666666664%; - } - .column.is-3-fullhd { - flex: none; - width: 25%; - } - .column.is-offset-3-fullhd { - margin-left: 25%; - } - .column.is-4-fullhd { - flex: none; - width: 33.33333333333333%; - } - .column.is-offset-4-fullhd { - margin-left: 33.33333333333333%; - } - .column.is-5-fullhd { - flex: none; - width: 41.66666666666667%; - } - .column.is-offset-5-fullhd { - margin-left: 41.66666666666667%; - } - .column.is-6-fullhd { - flex: none; - width: 50%; - } - .column.is-offset-6-fullhd { - margin-left: 50%; - } - .column.is-7-fullhd { - flex: none; - width: 58.333333333333336%; - } - .column.is-offset-7-fullhd { - margin-left: 58.333333333333336%; - } - .column.is-8-fullhd { - flex: none; - width: 66.66666666666666%; - } - .column.is-offset-8-fullhd { - margin-left: 66.66666666666666%; - } - .column.is-9-fullhd { - flex: none; - width: 75%; - } - .column.is-offset-9-fullhd { - margin-left: 75%; - } - .column.is-10-fullhd { - flex: none; - width: 83.33333333333334%; - } - .column.is-offset-10-fullhd { - margin-left: 83.33333333333334%; - } - .column.is-11-fullhd { - flex: none; - width: 91.66666666666666%; - } - .column.is-offset-11-fullhd { - margin-left: 91.66666666666666%; - } - .column.is-12-fullhd { - flex: none; - width: 100%; - } - .column.is-offset-12-fullhd { - margin-left: 100%; - } -} -.columns { - margin-left: -0.75rem; - margin-right: -0.75rem; - margin-top: -0.75rem; -} -.columns:last-child { - margin-bottom: -0.75rem; -} -.columns:not(:last-child) { - margin-bottom: calc(1.5rem - 0.75rem); -} -.columns.is-centered { - justify-content: center; -} -.columns.is-gapless { - margin-left: 0; - margin-right: 0; - margin-top: 0; -} -.columns.is-gapless > .column { - margin: 0; - padding: 0 !important; -} -.columns.is-gapless:not(:last-child) { - margin-bottom: 1.5rem; -} -.columns.is-gapless:last-child { - margin-bottom: 0; -} -.columns.is-mobile { - display: flex; -} -.columns.is-multiline { - flex-wrap: wrap; -} -.columns.is-vcentered { - align-items: center; -} -@media screen and (min-width: 769px), print { - .columns:not(.is-desktop) { - display: flex; - } -} -@media screen and (min-width: 1024px) { - .columns.is-desktop { - display: flex; - } -} -.columns.is-variable { - --columnGap: 0.75rem; - margin-left: calc(-1 * var(--columnGap)); - margin-right: calc(-1 * var(--columnGap)); -} -.columns.is-variable .column { - padding-left: var(--columnGap); - padding-right: var(--columnGap); -} -.columns.is-variable.is-0 { - --columnGap: 0rem; -} -.columns.is-variable.is-1 { - --columnGap: 0.25rem; -} -.columns.is-variable.is-2 { - --columnGap: 0.5rem; -} -.columns.is-variable.is-3 { - --columnGap: 0.75rem; -} -.columns.is-variable.is-4 { - --columnGap: 1rem; -} -.columns.is-variable.is-5 { - --columnGap: 1.25rem; -} -.columns.is-variable.is-6 { - --columnGap: 1.5rem; -} -.columns.is-variable.is-7 { - --columnGap: 1.75rem; -} -.columns.is-variable.is-8 { - --columnGap: 2rem; -} -/** -------------------------------- --- Typography -------------------------------- -**/ -@font-face { - font-weight: 400; - font-style: normal; - font-family: 'AlteHaasGrotesk'; - src: url("fonts/app/AlteHaasGroteskRegular.eot"), url("fonts/app/AlteHaasGroteskRegular.eot?#iefix") format('embedded-opentype'), url("fonts/app/AlteHaasGroteskRegular.woff2") format('woff2'), url("fonts/app/AlteHaasGroteskRegular.woff") format('woff'), url("fonts/app/AlteHaasGroteskRegular.ttf") format('truetype'), url("fonts/app/AlteHaasGroteskRegular.svg?#AlteHaasGrotesk") format('svg'); -} -@font-face { - font-weight: 600; - font-style: normal; - font-family: 'AlteHaasGrotesk'; - src: url("fonts/app/AlteHaasGroteskBold.eot"), url("fonts/app/AlteHaasGroteskBold.eot?#iefix") format('embedded-opentype'), url("fonts/app/AlteHaasGroteskBold.woff2") format('woff2'), url("fonts/app/AlteHaasGroteskBold.woff") format('woff'), url("fonts/app/AlteHaasGroteskBold.ttf") format('truetype'), url("fonts/app/AlteHaasGroteskBold.svg?#AlteHaasGrotesk") format('svg'); -} -@font-face { - font-family: 'RobotoMono'; - src: url("fonts/app/RobotoMono-Thin.eot"), url("fonts/app/RobotoMono-Thin.eot?#iefix") format('embedded-opentype'), url("fonts/app/RobotoMono-Thin.woff2") format('woff2'), url("fonts/app/RobotoMono-Thin.woff") format('woff'), url("fonts/app/RobotoMono-Thin.ttf") format('truetype'), url("fonts/app/RobotoMono-Thin.svg?#RobotoMono") format('svg'); - font-weight: 200; - font-style: normal; -} -@font-face { - font-family: 'RobotoMono'; - src: url("fonts/app/RobotoMono-Light.eot"), url("fonts/app/RobotoMono-Light.eot?#iefix") format('embedded-opentype'), url("fonts/app/RobotoMono-Light.woff2") format('woff2'), url("fonts/app/RobotoMono-Light.woff") format('woff'), url("fonts/app/RobotoMono-Light.ttf") format('truetype'), url("fonts/app/RobotoMono-Light.svg?#RobotoMono") format('svg'); - font-weight: 300; - font-style: normal; -} -@font-face { - font-family: 'RobotoMono'; - src: url("fonts/app/RobotoMono-Regular.eot"), url("fonts/app/RobotoMono-Regular.eot?#iefix") format('embedded-opentype'), url("fonts/app/RobotoMono-Regular.woff2") format('woff2'), url("fonts/app/RobotoMono-Regular.woff") format('woff'), url("fonts/app/RobotoMono-Regular.ttf") format('truetype'), url("fonts/app/RobotoMono-Regular.svg?#RobotoMono") format('svg'); - font-weight: 400; - font-style: normal; -} -@font-face { - font-family: 'RobotoMono'; - src: url("fonts/app/RobotoMono-Bold.eot"), url("fonts/app/RobotoMono-Bold.eot?#iefix") format('embedded-opentype'), url("fonts/app/RobotoMono-Bold.woff2") format('woff2'), url("fonts/app/RobotoMono-Bold.woff") format('woff'), url("fonts/app/RobotoMono-Bold.ttf") format('truetype'), url("fonts/app/RobotoMono-Bold.svg?#RobotoMono") format('svg'); - font-weight: 600; - font-style: normal; -} -/** -------------------------------- --- Colors -------------------------------- -**/ -/** -------------------------------- --- Mixins -------------------------------- -**/ -/** -------------------------------- --- Normalize -------------------------------- -**/ -html { - line-height: 1.15; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; -} -body { - margin: 0; -} -article, -aside, -footer, -header, -nav, -section { - display: block; -} -h1 { - font-size: 2em; - margin: 0.67em 0; -} -figcaption, -figure, -main { - display: block; -} -figure { - margin: 1em 40px; -} -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} -pre { - font-family: monospace, monospace; - font-size: 1em; -} -a { - background-color: transparent; - -webkit-text-decoration-skip: objects; -} -a:active, -a:hover { - outline-width: 0; -} -abbr[title] { - border-bottom: none; - text-decoration: underline; - text-decoration: underline dotted; -} -b, -strong { - font-weight: inherit; - font-weight: bolder; -} -code, -kbd, -samp { - font-family: monospace, monospace; - font-size: 1em; -} -dfn { - font-style: italic; -} -mark { - background-color: #ff0; - color: #000; -} -small { - font-size: 80%; -} -sub, -sup { - font-size: 60%; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sub { - bottom: -0.25em; -} -sup { - top: -0.55em; - background: #addbeb; - color: #2b8caf; - border-radius: 2px; - padding: 0 2px 0 2px; - margin: 0 2px 0 0; -} -audio, -video { - display: inline-block; -} -audio:not([controls]) { - display: none; - height: 0; -} -img { - border-style: none; -} -svg:not(:root) { - overflow: hidden; -} -button, -input, -optgroup, -select, -textarea { - font-family: sans-serif; - font-size: 100%; - line-height: 1.15; - margin: 0; -} -button, -input { - overflow: visible; -} -button, -select { - text-transform: none; -} -button, -html [type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; -} -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner, -button::-moz-focus-inner { - border-style: none; - padding: 0; -} -[type="button"]:-moz-focusring, -[type="reset"]:-moz-focusring, -[type="submit"]:-moz-focusring, -button:-moz-focusring { - outline: 1px dotted ButtonText; -} -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} -legend { - box-sizing: border-box; - color: inherit; - display: table; - max-width: 100%; - padding: 0; - white-space: normal; -} -progress { - display: inline-block; - vertical-align: baseline; -} -textarea { - overflow: auto; -} -[type="checkbox"], -[type="radio"] { - box-sizing: border-box; - padding: 0; -} -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} -[type="search"] { - -webkit-appearance: textfield; - outline-offset: -2px; -} -[type="search"]::-webkit-search-cancel-button, -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} -::-webkit-file-upload-button { - -webkit-appearance: button; - font: inherit; -} -details, -menu { - display: block; -} -summary { - display: list-item; -} -canvas { - display: inline-block; -} -template { - display: none; -} -[hidden] { - display: none; -} -/** -------------------------------- --- Main Structure -------------------------------- -**/ -html { - background: url("../images/bg-teal-pattern.png"); - font: 300 1em 'AlteHaasGrotesk', Helvetica, Arial, sans-serif; - color: #ebdfce; -} -a { - font: 300 1em 'RobotoMono', Helvetica, Arial, sans-serif; - color: #baf273; - text-decoration: underline; - -moz-transition: all 0.1s linear; - -webkit-transition: all 0.1s linear; - -o-transition: all 0.1s linear; - transition: all 0.1s linear; -} -a:hover { - color: #e8fbd0; - background: #2b8caf; -} -svg.icons { - width: 20px; - fill: #eb6b99; -} -h1, -h2, -h3, -h4, -h5, -h6 { - color: #eb6b99 !important; - font-weight: 600 !important; -} -#loader { - position: fixed; - z-index: 2000; - height: 100%; - width: 100%; - display: flex; - align-items: center; - justify-content: center; -} -#loader i { - color: #ebdfce; -} -.blog-container { - width: 100%; -} -.main-container { - margin: 0 auto; - z-index: 10; - position: relative; -} -.main-container section header { - width: 100%; - max-width: 1024px; - position: relative; - width: 100%; - font-size: 1em; - padding: 20px; - opacity: 0; - color: #ebdfce; -} -.main-container section header #float-bg { - background: url("../images/bg-teal-pattern.png"); - position: absolute; - z-index: 5; - isolation: isolate; - opacity: 0; - left: 20%; -} -.main-container section header #float-bg img { - width: 250px; - mix-blend-mode: multiply; -} -.main-container section header #header-one, -.main-container section header #header-two { - z-index: 10; - position: relative; -} -.main-container section header #header-one label#the-title a, -.main-container section header #header-two label#the-title a { - font: 500 2em 'RobotoMono', Helvetica, Arial, sans-serif; - width: 97px; - height: 100px; - color: #eb6b99; - text-decoration: none; - display: block; - word-break: break-all; -} -@media only screen and (max-width: 640px) { - .main-container .content #the-intro { - font-size: 31px; - line-height: 35px; - } -} -@media only screen and (max-width: 480px) { - .main-container .content #the-intro { - font-size: 25px; - line-height: 33px; - } - .main-container .content #index-display span, - .main-container .content #index-display a { - font: 400 1.2em 'AlteHaasGrotesk', Helvetica, Arial, sans-serif; - } -} -@media only screen and (max-width: 375px) { - .main-container .header { - width: 90%; - } - .main-container .header .header-desc h1 { - line-height: 1rem; - font-size: 3.3rem; - } - .main-container .header .header-desc span a { - color: #eee; - width: 250px; - font-weight: 300; - display: inline-block; - word-break: break-all; - font: 300 7em/1em 'RobotoMono', Helvetica, Arial, sans-serif; - text-decoration: none; - margin: 0 0 50px 0; - } - .main-container .header .header-desc #the-intro { - color: #eb6b99; - opacity: 0; - font: 400 1.8em 'RobotoMono', Helvetica, Arial, sans-serif; - display: inline-block; - width: 95%; - } - .main-container .header .header-desc #item-intro { - width: 95%; - } - .main-container .header .header-desc #item-intro label { - font-size: 2em; - } - .main-container .content #the-intro { - font-size: 24px; - line-height: 33px; - } - .main-container .content #index-display label { - font-size: 7em; - } - .main-container .content #index-display #recent-work, - .main-container .content #index-display #recent-blog { - float: none; - display: block; - margin: 0 auto; - text-align: left; - padding-bottom: 30px; - } -} -@media only screen and (max-width: 320px) { - .main-container .header .header-desc h1 { - line-height: 1rem; - font-size: 2.9rem; - } - .main-container .content #the-intro { - font-size: 19px; - line-height: 28px; - } -} -/** -------------------------------- --- Index -------------------------------- -**/ -#index-content { - width: 100%; - max-width: 1024px; - margin: 0 auto; -} -header #header-one #the-intro, -header #header-two #the-intro { - margin: 80px 0 0 0; -} -#index-display { - padding: 20px; - width: 100%; - max-width: 1024px; - font-size: 1em; - z-index: 10; - position: relative; -} -#index-display #recent-title { - color: #eee; - font: 400 2em 'RobotoMono', Helvetica, Arial, sans-serif; - vertical-align: top; -} -#index-display .index-block { - width: 50%; - display: inline-block; - vertical-align: top; - margin-bottom: 50px; -} -/** -------------------------------- --- Fipamo -------------------------------- -**/ -#bm-content { - width: 100%; - max-width: 1024px; - margin: 0 auto; -} -#bm-content #header-two { - font: 400 1.5em 'AlteHaasGrotesk', Helvetica, Arial, sans-serif; -} -#bm-content #bookmark-display { - padding: 0; -} -#bm-content #bookmark-display .bookmark-list .bookmark-entry { - background: #0f313d; - width: 50%; - height: 500px; - background-size: cover; - overflow: hidden; - display: inline-block; - vertical-align: top; - padding: 10px; -} -#bm-content #bookmark-display .bookmark-list .bookmark-entry .bookmark-info { - display: flex; - align-items: center; - justify-content: center; - width: 100%; - height: 100%; -} -#bm-content #bookmark-display .bookmark-list .bookmark-entry .bookmark-info label { - display: block; - font-size: 0.5em; - padding: 10px; - background: #2b8caf; - border-radius: 5px; -} -#bm-content #bookmark-display .bookmark-list #paginate-control { - width: 100%; - height: 300px; - background: #1e627b; - display: flex; - align-items: center; - justify-content: center; -} -#bm-content #bookmark-display .bookmark-list #paginate-control #paginate { - margin: 0 auto; -} -#bm-content #bookmark-display .bookmark-list #paginate-control #paginate a, -#bm-content #bookmark-display .bookmark-list #paginate-control #paginate label { - display: inline-block; - vertical-align: top; -} -#bm-content #bookmark-display .bookmark-list #paginate-control #paginate label { - padding: 5px; - color: #ebdfce; - font-size: 2.2em; -} -#bm-content #bookmark-display .bookmark-list #paginate-control #paginate a { - padding: 20px; - margin-top: 4px; -} -@media only screen and (max-width: 768px) { - #bm-content #bookmark-display .bookmark-list .bookmark-entry { - width: 100%; - } -} -/** -------------------------------- --- Folio -------------------------------- -**/ -#work-content { - width: 100%; - max-width: 1024px; - margin: 0 auto; -} -#work-content #header #header-two p { - font: 400 1.5em 'AlteHaasGrotesk', Helvetica, Arial, sans-serif; -} -#work-content #header #header-two p span { - color: #eb6b99; -} -#work-content #work-display { - padding: 0; - margin: 0 0 40px 0; - opacity: 0; -} -#work-content #work-list .work-item { - width: 50%; - height: 300px; - display: inline-block; - vertical-align: top; - background-size: cover; - background-color: #ebdfce; - color: #ebdfce; -} -#work-content #work-list .work-item span { - font: 600 0.7em 'RobotoMono', Helvetica, Arial, sans-serif; -} -#work-content #work-contact #contact-form { - opacity: 1; -} -#work-content #work-contact #contact-form label { - font: 600 0.8em 'RobotoMono', Helvetica, Arial, sans-serif; - color: #baf273; - margin: 0 0 15px 0; - display: block; -} -#work-content #work-contact #contact-form #request-form input[type=email], -#work-content #work-contact #contact-form #request-form input[type=password], -#work-content #work-contact #contact-form #request-form input[type=text] { - width: 100%; - margin: 0 10px 10px 0; -} -#work-content #work-contact #contact-form #request-form select { - width: 100%; - margin-bottom: 10px; -} -#work-content #work-contact #contact-form #request-form textarea { - width: 100%; -} -#work-content #work-contact #contact-info label#request-status { - font: 600 0.8em 'RobotoMono', Helvetica, Arial, sans-serif; - color: #baf273; - margin: 0 0 15px 0; - display: block; - text-transform: uppercase; -} -#work-content #work-contact #contact-info p { - font: 400 1em 'AlteHaasGrotesk', Helvetica, Arial, sans-serif; - color: #ebdfce; -} -#work-content #work-contact #contact-info p i { - color: #baf273; -} -#project-content { - width: 100%; - max-width: 1024px; - margin: 0 auto; -} -#project-content #project-display { - padding: 0 20px 20px 20px; -} -#project-content #project-display #project-info span { - font: 400 2em 'RobotoMono', Helvetica, Arial, sans-serif; - color: #eee; -} -#project-content #project-display #project-desc { - font: 300 1.2em 'AlteHaasGrotesk', Helvetica, Arial, sans-serif; - color: #ebdfce; -} -#project-content #project-images { - margin: 10px 0 0 0; - opacity: 1; -} -#project-content #project-images .folio-image { - width: 100%; - margin: 0 0 50px 0; - opacity: 0; -} -@media screen and (max-width: 768px) { - #work-content #work-list .work-item { - width: 100%; - } -} -/** -------------------------------- --- Admin -------------------------------- -**/ -#admin-index-content { - width: 100%; - max-width: 1024px; - margin: 0 auto; -} -#admin-index-content #admin-index-display { - padding: 20px; - width: 100%; - max-width: 1024px; - z-index: 10; - position: relative; -} -#admin-index-content #admin-index-display #admin-login { - width: 300px; -} -#admin-index-content #admin-index-display #admin-index-title { - color: #eee; - font: 400 2em 'RobotoMono', Helvetica, Arial, sans-serif; - vertical-align: top; -} -#admin-index-content #admin-index-display .admin-menu-main .admin-nav span { - display: inline-block; - padding: 0 0 0 5px; -} -#admin-index-content #admin-index-display .index-block { - width: 50%; - display: inline-block; - vertical-align: top; - margin-bottom: 50px; -} -#admin-index-content #admin-index-display #blog-edit label { - font: 600 1em 'RobotoMono', Helvetica, Arial, sans-serif; - color: #eee; -} -#admin-index-content #admin-index-display #blog-edit textarea#entry_title { - width: 100%; - background: none; - color: #ebdfce; - font: 500 2em 'RobotoMono', Helvetica, Arial, sans-serif; -} -#admin-index-content #admin-index-display #blog-edit textarea#entry_text { - width: 100%; - height: 600px; - padding: 10px; -} -#admin-index-content #admin-index-display #blog-meta label { - font: 600 1em 'RobotoMono', Helvetica, Arial, sans-serif; - color: #eee; -} -#admin-index-content #admin-index-display #blog-meta input, -#admin-index-content #admin-index-display #blog-meta button { - width: 100%; -} -#admin-index-content #admin-index-display #blog-meta input { - color: #eb6b99; - background: #32302f; -} -#admin-index-content #admin-index-display #blog-meta #featured-click { - display: none; -} -#blog-index-content { - width: 100%; - max-width: 1024px; - margin: 0 auto; -} -#blog-index-content #blog-hub-display #blog-hub-title { - font: 400 2em 'RobotoMono', Helvetica, Arial, sans-serif; - color: #eee; -} -#saved-index-content { - width: 100%; - max-width: 1024px; - margin: 0 auto; -} -#saved-index-content #saved-hub-display #saved-hub-title label, -#saved-index-content #saved-hub-display #saved-hub-main label { - font: 400 2em 'RobotoMono', Helvetica, Arial, sans-serif; - color: #eee; -} -#saved-index-content #saved-hub-display #saved-hub-title textarea, -#saved-index-content #saved-hub-display #saved-hub-main textarea { - width: 90%; -} -#saved-index-content #saved-hub-display #saved-hub-title button, -#saved-index-content #saved-hub-display #saved-hub-main button { - padding: 5px; -} -#post-edit-content { - width: 100%; - max-width: 1024px; - margin: 0 auto; -} -#post-edit-content header#header #header-one #blog-edit { - margin: 100px 0 0 0; - position: relative; -} -#post-edit-content header#header #header-one #blog-edit label { - font: 600 1em 'RobotoMono', Helvetica, Arial, sans-serif; - color: #eee; - display: block; -} -#post-edit-content header#header #header-one #blog-edit #entry_title { - width: 90%; - background: none; - font: 400 2em 'RobotoMono', Helvetica, Arial, sans-serif; - color: #ebdfce; -} -#post-edit-content header#header #header-one #blog-edit #entry_text { - width: 90%; - height: 500px; - padding: 10px; -} -#post-edit-content header#header #header-one #blog-edit pre { - background: #32302f; -} -#post-edit-content header#header #header-one #blog-edit pre code { - white-space: pre-wrap; - color: #ebdfce; -} -#post-edit-content header#header #header-two label { - font: 600 1em 'RobotoMono', Helvetica, Arial, sans-serif; - color: #eee; -} -#post-edit-content header#header #header-two #featured-image-drop { - border-radius: 3px; - border: 1px dashed #eee; - width: 100%; - font: 600 0.5em 'RobotoMono', Helvetica, Arial, sans-serif; - height: 100px; - text-align: center; - vertical-align: middle; - line-height: 100px; - overflow: hidden; -} -#post-edit-content header#header #header-two #featured-image-drop img { - width: 100%; -} -#post-edit-content header#header #header-two #blog-meta { - margin: 100px 0 0 0; - position: relative; -} -#post-edit-content header#header #header-two #blog-meta #featured-click { - display: none; -} -#post-edit-content header#header #header-two #blog-meta #entry_tags, -#post-edit-content header#header #header-two #blog-meta button { - width: 100%; -} -.folio-project-form { - display: inline-block; - width: 56%; -} -.folio-project-form input[type=email], -.folio-project-form input[type=password], -.folio-project-form input[type=text], -.folio-project-form select { - width: 400px; -} -.folio-project-form select { - margin: 10px 0 0 0; -} -.folio-project-form textarea { - width: 400px; - height: 133px; -} -.folio-hub { - padding: 20px; -} -.folio-hub span { - margin: 10px 10px 0 0; -} -.folio-hub .btn-add-project span { - font: 20px 'AlteHaasGrotesk', Helvetica, Arial, sans-serif; - margin: -35px 0 0 40px; - display: block; - height: 50px; -} -.folio-hub .project-list { - width: 95%; -} -.folio-hub .project-list span.drag-handle { - padding: 10px; - color: #ebdfce; - cursor: pointer; -} -.folio-hub .project-list .project-item { - width: 100%; - display: inline-block; - background: #144252; - padding: 5px; - margin-bottom: 10px; - border-radius: 5px; - -moz-transition: all 0.3s linear; - -webkit-transition: all 0.3s linear; - -o-transition: all 0.3s linear; - transition: all 0.3s linear; -} -.folio-hub .project-list .project-item:hover { - background: #1e627b; -} -.upload-list { - color: #addbeb; - display: inline-block; - vertical-align: top; - width: 260px; - height: 330px; - margin: 45px 0 0; -} -.thumb { - height: 50px; - overflow: hidden; - border-radius: 3px; - margin: 10px 5px 0 0; -} -.upload-drop { - width: 400px; - height: 70px; - background: $form-background; - color: #addbeb; - text-align: center; - padding: 40px 0 0; - font-size: 12px; - text-transform: uppercase; - border-radius: 3px; -} -/** -------------------------------- --- Forms -------------------------------- -**/ -form { - display: inline-block; -} -input[type=email], -input[type=password], -input[type=text] { - border: 0; - border-radius: 5px; - padding: 5px; - margin: 10px 5px 0 0; - font: 15px 'RobotoMono'; - display: inline-block; -} -textarea { - border: 0; - border-radius: 3px; - color: $type02; - font: 15px 'RobotoMono'; -} -button, -input[type=submit] { - background: #baf273; - color: #2b8caf; - font: 14px 'RobotoMono'; - border-radius: 5px; - position: relative; - cursor: pointer; - border: 0; -} -select { - font: 14px 'RobotoMono'; - border: 1px solid #eb6b99; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - color: #2b8caf; -} -::-webkit-input-placeholder { - font: 14px 'RobotoMono'; - color: #837e7c; -} -:-moz-placeholder { -/* Firefox 18- */ - font: 14px 'RobotoMono'; - color: #837e7c; -} -::-moz-placeholder { -/* Firefox 19+ */ - font: 14px 'RobotoMono'; - color: #837e7c; -} -:-ms-input-placeholder { - font: 14px 'RobotoMono'; - color: #837e7c; -} -/** -------------------------------- --- Blog -------------------------------- -**/ -#blog-content #blog-display #blog-list .blog-entry { - display: inline-block; - height: 500px; - width: 50%; - background-size: cover; - background: #32302f; - position: relative; - text-align: center; - vertical-align: middle; - line-height: 250px; -} -#blog-content #blog-display #blog-list .blog-entry label { - background: #eb6b99; - padding: 5px; - border-radius: 3px; -} -#post-content { - width: 100%; - margin: -10px 0 0 0; -} -#post-content #header-post { - width: 100%; - min-height: 350px; - background: #32302f; - position: relative; - padding: 0; - margin: 0; -} -#post-content #header-post img { - padding: 0; - margin: 0; - position: relative; - display: block; - width: 100%; -} -#post-content #header-post #header-one { - position: relative; - width: 80%; - margin: 0 auto; - padding: 30px 0 0 0; -} -#post-content #header-post #header-one label#the-title a { - font: 500 2em 'RobotoMono', Helvetica, Arial, sans-serif; - width: 97px; - height: 115px; - color: #eb6b99; - text-decoration: none; - display: block; - word-break: break-all; - margin: 10px 0 0 10px; -} -#post-content #header-post #header-one span#post-title { - font: 200 4.5em/1em 'RobotoMono', Helvetica, Arial, sans-serif; - color: #eee; - margin: 20px 0 0 10px; - padding: 20px 0 80px 0; - display: block; -} -#post-content #post-display { - color: #ebdfce; - width: 80%; - margin: 50px auto; - font: 400 1.5em 'AlteHaasGrotesk', Helvetica, Arial, sans-serif; - padding-bottom: 50px; -} -/*# sourceMappingURL=base.css.map */ \ No newline at end of file diff --git a/themes/default-dark/assets/css/base.css.map b/themes/default-dark/assets/css/base.css.map deleted file mode 100644 index 5f7b2c0..0000000 --- a/themes/default-dark/assets/css/base.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../src/styles/base.styl","../../../../node_modules/bulma.styl/stylus/utilities/animations.styl","../../../../node_modules/bulma.styl/stylus/grid/columns.styl","../../../../node_modules/bulma.styl/stylus/utilities/mixins.styl","../../src/styles/main/_typography.styl","../../src/styles/main/_normalize.styl","../../src/styles/main/_structure.styl","../../src/styles/main/_mixins.styl","../../src/styles/main/_index.styl","../../src/styles/main/_fipamo.styl","../../src/styles/main/_folio.styl","../../src/styles/main/_admin.styl","../../src/styles/main/_forms.styl","../../src/styles/main/_blog.styl"],"names":[],"mappings":"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","file":"base.css"} \ No newline at end of file diff --git a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.eot b/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.eot deleted file mode 100644 index 647418e..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.eot and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.otf b/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.otf deleted file mode 100644 index 7773fd5..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.otf and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.svg b/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.svg deleted file mode 100644 index 0ab59e6..0000000 --- a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.svg +++ /dev/null @@ -1,1587 +0,0 @@ - - - - -Created by FontForge 20170104 at Fri Oct 26 15:04:30 2007 - By myTaste -Copyright (c) 2007 by Yann Le Coroller. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.ttf b/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.ttf deleted file mode 100644 index d310391..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.ttf and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.woff b/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.woff deleted file mode 100644 index ebc8cd1..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.woff and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.woff2 b/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.woff2 deleted file mode 100644 index 30070e7..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskBold.woff2 and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.eot b/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.eot deleted file mode 100644 index 7bc6f7f..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.eot and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.otf b/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.otf deleted file mode 100644 index d739b4c..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.otf and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.svg b/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.svg deleted file mode 100644 index af732b9..0000000 --- a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.svg +++ /dev/null @@ -1,1505 +0,0 @@ - - - - -Created by FontForge 20161116 at Wed Oct 10 12:17:38 2007 - By Jimmy Wärting -Copyright (c) 2007 by Yann Le Coroller. All rights reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.ttf b/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.ttf deleted file mode 100644 index ff5edb9..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.ttf and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.woff b/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.woff deleted file mode 100644 index c9e89e7..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.woff and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.woff2 b/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.woff2 deleted file mode 100644 index dec30d7..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/AlteHaasGroteskRegular.woff2 and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.eot b/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.eot deleted file mode 100644 index 3a16138..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.eot and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.svg b/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.svg deleted file mode 100644 index b99c54d..0000000 --- a/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.svg +++ /dev/null @@ -1,2872 +0,0 @@ - - - - -Created by FontForge 20170910 at Thu May 21 19:38:03 2015 - By Jimmy Wärting -Copyright 2015 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.ttf b/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.ttf deleted file mode 100644 index 591cf8b..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.ttf and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.woff b/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.woff deleted file mode 100644 index 64d386d..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.woff and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.woff2 b/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.woff2 deleted file mode 100644 index 00157be..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Bold.woff2 and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.eot b/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.eot deleted file mode 100644 index db0a10d..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.eot and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.svg b/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.svg deleted file mode 100644 index 4a861d5..0000000 --- a/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.svg +++ /dev/null @@ -1,2951 +0,0 @@ - - - - -Created by FontForge 20170910 at Thu May 21 19:38:08 2015 - By Jimmy Wärting -Copyright 2015 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.ttf b/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.ttf deleted file mode 100644 index 10a307f..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.ttf and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.woff b/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.woff deleted file mode 100644 index 09f01b3..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.woff and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.woff2 b/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.woff2 deleted file mode 100644 index 9748ac7..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Light.woff2 and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.eot b/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.eot deleted file mode 100644 index b082f57..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.eot and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.svg b/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.svg deleted file mode 100644 index 8a6629d..0000000 --- a/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.svg +++ /dev/null @@ -1,2900 +0,0 @@ - - - - -Created by FontForge 20170910 at Thu May 21 19:38:15 2015 - By Jimmy Wärting -Copyright 2015 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.ttf b/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.ttf deleted file mode 100644 index decd2ef..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.ttf and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.woff b/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.woff deleted file mode 100644 index c23b019..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.woff and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.woff2 b/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.woff2 deleted file mode 100644 index c67e1b1..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Regular.woff2 and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.eot b/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.eot deleted file mode 100644 index 7069acb..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.eot and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.svg b/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.svg deleted file mode 100644 index 6d2e15a..0000000 --- a/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.svg +++ /dev/null @@ -1,3005 +0,0 @@ - - - - -Created by FontForge 20170910 at Thu May 21 19:38:17 2015 - By Jimmy Wärting -Copyright 2015 Google Inc. All Rights Reserved. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.ttf b/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.ttf deleted file mode 100644 index d56cd0a..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.ttf and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.woff b/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.woff deleted file mode 100644 index 3b33d83..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.woff and /dev/null differ diff --git a/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.woff2 b/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.woff2 deleted file mode 100644 index 4ee751a..0000000 Binary files a/themes/default-dark/assets/css/fonts/app/RobotoMono-Thin.woff2 and /dev/null differ diff --git a/themes/default-dark/assets/images/bg-samon-wave.png b/themes/default-dark/assets/images/bg-samon-wave.png deleted file mode 100644 index bc32bc4..0000000 Binary files a/themes/default-dark/assets/images/bg-samon-wave.png and /dev/null differ diff --git a/themes/default-dark/assets/images/bg-teal-pattern.png b/themes/default-dark/assets/images/bg-teal-pattern.png deleted file mode 100644 index ddeee30..0000000 Binary files a/themes/default-dark/assets/images/bg-teal-pattern.png and /dev/null differ diff --git a/themes/default-dark/assets/images/clouds.jpg b/themes/default-dark/assets/images/clouds.jpg deleted file mode 100644 index 2e706c9..0000000 Binary files a/themes/default-dark/assets/images/clouds.jpg and /dev/null differ diff --git a/themes/default-dark/assets/images/current.png b/themes/default-dark/assets/images/current.png deleted file mode 100644 index 5fff846..0000000 Binary files a/themes/default-dark/assets/images/current.png and /dev/null differ diff --git a/themes/default-dark/assets/images/eye-beamz.png b/themes/default-dark/assets/images/eye-beamz.png deleted file mode 100644 index e3b8586..0000000 Binary files a/themes/default-dark/assets/images/eye-beamz.png and /dev/null differ diff --git a/themes/default-dark/assets/images/sprite.svg b/themes/default-dark/assets/images/sprite.svg deleted file mode 100644 index 565e7ab..0000000 --- a/themes/default-dark/assets/images/sprite.svg +++ /dev/null @@ -1,823 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - instagram-with-circle - - instagram - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/themes/default-dark/assets/images/the-logo.svg b/themes/default-dark/assets/images/the-logo.svg deleted file mode 100644 index c730a81..0000000 --- a/themes/default-dark/assets/images/the-logo.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/themes/default-dark/assets/js/start.min.js b/themes/default-dark/assets/js/start.min.js deleted file mode 100644 index d6699d8..0000000 --- a/themes/default-dark/assets/js/start.min.js +++ /dev/null @@ -1,332 +0,0 @@ -// modules are defined as an array -// [ module function, map of requires ] -// -// map of requires is short require name -> numeric require -// -// anything defined in a previous bundle is accessed via the -// orig method which is the require for previous bundles - -// eslint-disable-next-line no-global-assign -parcelRequire = (function (modules, cache, entry, globalName) { - // Save the require from previous bundle to this closure if any - var previousRequire = typeof parcelRequire === 'function' && parcelRequire; - var nodeRequire = typeof require === 'function' && require; - - function newRequire(name, jumped) { - if (!cache[name]) { - if (!modules[name]) { - // if we cannot find the module within our internal map or - // cache jump to the current global require ie. the last bundle - // that was added to the page. - var currentRequire = typeof parcelRequire === 'function' && parcelRequire; - if (!jumped && currentRequire) { - return currentRequire(name, true); - } - - // If there are other bundles on this page the require from the - // previous one is saved to 'previousRequire'. Repeat this as - // many times as there are bundles until the module is found or - // we exhaust the require chain. - if (previousRequire) { - return previousRequire(name, true); - } - - // Try the node require function if it exists. - if (nodeRequire && typeof name === 'string') { - return nodeRequire(name); - } - - var err = new Error('Cannot find module \'' + name + '\''); - err.code = 'MODULE_NOT_FOUND'; - throw err; - } - - localRequire.resolve = resolve; - localRequire.cache = {}; - - var module = cache[name] = new newRequire.Module(name); - - modules[name][0].call(module.exports, localRequire, module, module.exports, this); - } - - return cache[name].exports; - - function localRequire(x){ - return newRequire(localRequire.resolve(x)); - } - - function resolve(x){ - return modules[name][1][x] || x; - } - } - - function Module(moduleName) { - this.id = moduleName; - this.bundle = newRequire; - this.exports = {}; - } - - newRequire.isParcelRequire = true; - newRequire.Module = Module; - newRequire.modules = modules; - newRequire.cache = cache; - newRequire.parent = previousRequire; - newRequire.register = function (id, exports) { - modules[id] = [function (require, module) { - module.exports = exports; - }, {}]; - }; - - for (var i = 0; i < entry.length; i++) { - newRequire(entry[i]); - } - - if (entry.length) { - // Expose entry point to Node, AMD or browser globals - // Based on https://github.com/ForbesLindesay/umd/blob/master/template.js - var mainExports = newRequire(entry[entry.length - 1]); - - // CommonJS - if (typeof exports === "object" && typeof module !== "undefined") { - module.exports = mainExports; - - // RequireJS - } else if (typeof define === "function" && define.amd) { - define(function () { - return mainExports; - }); - - //