diff --git a/_config.yml b/_config.yml index 24ea9d7fa..5339f3a63 100644 --- a/_config.yml +++ b/_config.yml @@ -119,6 +119,6 @@ docs-menu: pages: [index] components: title: Components - pages: [alerts, avatars, badges, buttons, cards, carousel, spinners, steps, tabs, toasts, tooltips, typography] + pages: [alerts, avatars, badges, buttons, cards, carousel, ribbons, spinners, steps, tabs, toasts, tooltips, typography] diff --git a/build/browsersync.js b/build/browsersync.js index 441cac5a7..f80bbf2a6 100755 --- a/build/browsersync.js +++ b/build/browsersync.js @@ -5,6 +5,7 @@ bs.init({ server: { routes: { '/': 'tmp', + '/dist/fonts': 'static/fonts', '/dist': 'dist', '/libs': 'static/libs', '/img': 'static/img', diff --git a/package.json b/package.json index 85914b33b..e93d9b540 100644 --- a/package.json +++ b/package.json @@ -5,12 +5,10 @@ "scripts": { "start": "npm-run-all --parallel browsersync watch html-watch", "build": "npm-run-all lint html-build css-compile js-compile", - "bundlesize": "bundlesize", "browsersync": "node build/browsersync.js", "html-watch": "JEKYLL_ENV=development bundle exec jekyll build --watch --incremental", "html-build": "JEKYLL_ENV=production bundle exec jekyll build", - "lint": "npm-run-all --parallel js-lint css-lint", "css-compile": "node-sass --output-style expanded --source-map true --source-map-contents true --precision 6 scss/tabler.scss dist/css/tabler.css", "css-prefix": "postcss --config build/postcss.config.js --replace \"dist/css/*.css\" \"!dist/css/*.min.css\"", @@ -22,7 +20,6 @@ "watch": "npm-run-all --parallel watch-*", "watch-css": "nodemon --watch scss/ --ext scss --exec \"npm run css-main\"", "watch-js": "nodemon --watch js/ --ext js --exec \"npm run js-compile-standalone\"", - "js-lint": "eslint --cache --cache-location .cache/.eslintcache js build/", "js-compile": "npm-run-all --parallel js-compile-* --sequential js-minify", "js-compile-standalone": "rollup --environment BUNDLE:false --config build/rollup.config.js --sourcemap", @@ -53,26 +50,31 @@ "devDependencies": { "apexcharts": "3.6.2", "bootstrap": "twbs/bootstrap#275cd7f", + "browser-sync": "^2.26.5", "bundlesize": "0.15.3", - "http-server": "0.11.1", - "popper.js": "1.15.0", - "npm-run-all": "4.1.5", - "nodemon": "1.18.11", + "clean-css-cli": "4.3.0", + "cross-env": "^5.2.0", "eslint": "5.16.0", "eslint-config-xo": "0.26.0", "eslint-plugin-import": "2.16.0", "eslint-plugin-unicorn": "8.0.2", - "stylelint": "9.10.1", - "stylelint-config-twbs-bootstrap": "0.3.0", - "node-sass": "4.11.0", - "shx": "0.3.2", + "http-server": "0.11.1", + "node-sass": "^4.12.0", + "nodemon": "1.18.11", + "npm-run-all": "4.1.5", + "popper.js": "1.15.0", "postcss-cli": "6.1.2", - "clean-css-cli": "4.3.0", "rollup": "1.9.3", "rollup-plugin-babel": "4.3.2", "rollup-plugin-node-resolve": "4.2.2", + "shx": "0.3.2", + "stylelint": "9.10.1", + "stylelint-config-twbs-bootstrap": "0.3.0", "terser": "3.17.0", - "browser-sync": "^2.26.5", - "cross-env": "^5.2.0" + "icon-font-generator": "2.1.10", + "svgo": "1.2.2" + }, + "dependencies": { + "outline-stroke-cli": "^1.1.0" } } diff --git a/pages/_data/menu.yml b/pages/_data/menu.yml index c54a1d5f2..d565fe901 100644 --- a/pages/_data/menu.yml +++ b/pages/_data/menu.yml @@ -3,13 +3,24 @@ apps: title: Apps icon: package counter: 8 +level-1: + title: Level 1 + icon: menu + children: + level-2: + title: Level 2 + icon: menu + children: + level-3: + title: Level 3 + icon: menu docs: title: Documentation icon: file-text docs: components + changelog: url: changelog.html - active: true title: Changelog icon: file-plus label: v1.0.0 diff --git a/pages/_docs/alerts.md b/pages/_docs/alerts.md index 6af70bfd7..f1a7c8ab0 100644 --- a/pages/_docs/alerts.md +++ b/pages/_docs/alerts.md @@ -1,5 +1,6 @@ --- title: Alerts +menu: docs.alerts --- Bootstrap provides an easy way to create predefined alert messages. diff --git a/pages/_docs/avatars.md b/pages/_docs/avatars.md index e0e5eafe4..a0f2f44c8 100644 --- a/pages/_docs/avatars.md +++ b/pages/_docs/avatars.md @@ -1,5 +1,6 @@ --- title: Avatars +menu: docs.avatars --- Create and group avatars of various shapes and sizes with one component. @@ -34,7 +35,7 @@ Add an online or offline status indicator to show user's availability. {% include ui/avatar.html person-id=13 status="success" %} {% include ui/avatar.html person-id=14 status="warning" %} {% include ui/avatar.html person-id=15 status="info" %} -{% include ui/avatar.html person-id=16 status="gray" %} +{% include ui/avatar.html person-id=16 status="gray" status-text="5" %} {% endexample %} ## Avatar shape diff --git a/pages/_docs/ribbons.md b/pages/_docs/ribbons.md new file mode 100644 index 000000000..586fe0907 --- /dev/null +++ b/pages/_docs/ribbons.md @@ -0,0 +1,33 @@ +--- +title: Ribbons +--- + +## Default markup + +{% example html columns=1 %} +{% include cards/ribbon.html %} +{% endexample %} + +## Ribbon position + +{% example html columns=1 %} +{% include cards/ribbon.html top=true left=true %} +{% endexample %} + +## Ribbon color + +{% example html columns=1 %} +{% include cards/ribbon.html color="red" %} +{% endexample %} + +## Ribbon text + +{% example html columns=1 %} +{% include cards/ribbon.html color="green" text="-50%" %} +{% endexample %} + +## Ribbon style + +{% example html columns=1 %} +{% include cards/ribbon.html bookmark=true color="orange" text="-50%" %} +{% endexample %} diff --git a/pages/_includes/cards/login.html b/pages/_includes/cards/login.html index 42a00486d..58ecfb8e7 100644 --- a/pages/_includes/cards/login.html +++ b/pages/_includes/cards/login.html @@ -1,32 +1,33 @@ -
+ -
-
Login to your account
+
+
Login to your account
-
- - -
-
- - -
-
- -
+
+ + +
+
+ I forgot password + + +
+
+ +
- -
+ +
- Don't have account yet? Sign up -
\ No newline at end of file + Don't have account yet? Sign up + diff --git a/pages/_includes/cards/ribbon.html b/pages/_includes/cards/ribbon.html index 1a6056b0b..22717ef3b 100644 --- a/pages/_includes/cards/ribbon.html +++ b/pages/_includes/cards/ribbon.html @@ -6,5 +6,5 @@
-
{% include ui/icon.html icon="star" class="icon-filled icon-thin" %}
- \ No newline at end of file +
{% if include.text %}{{ include.text }}{% else %}{% include ui/icon.html icon="star" %}{% endif %}
+ diff --git a/pages/_includes/layout/css.html b/pages/_includes/layout/css.html index f7b055f8c..9bf340b6b 100644 --- a/pages/_includes/layout/css.html +++ b/pages/_includes/layout/css.html @@ -1,2 +1,2 @@ - + diff --git a/pages/_includes/layout/sidebar.html b/pages/_includes/layout/sidebar.html deleted file mode 100644 index ce88020b7..000000000 --- a/pages/_includes/layout/sidebar.html +++ /dev/null @@ -1,11 +0,0 @@ -
- - - - - {% include ui/icon.html icon="sidebar" %} - -
diff --git a/pages/_includes/layout/sidenav-content.html b/pages/_includes/layout/sidenav-content.html index 581a7ce5f..c22e7192a 100644 --- a/pages/_includes/layout/sidenav-content.html +++ b/pages/_includes/layout/sidenav-content.html @@ -1,55 +1,78 @@ {% assign id = 0 | random_id %} - - - +
+ + + +
- +
+ - - - + + {% if item[1].children or item[1].docs %} + + {% endif %} + + {% endfor %} + + + +
diff --git a/pages/_includes/layout/sidenav.html b/pages/_includes/layout/sidenav.html index b3c9f9eac..91dc9f5db 100644 --- a/pages/_includes/layout/sidenav.html +++ b/pages/_includes/layout/sidenav.html @@ -1,12 +1,3 @@ -
-
- {% include layout/sidenav-content.html logo="white" %} -
+
+ {% include layout/sidenav-content.html logo="white" %}
-{% comment %} -
-
- {% include layout/sidenav-content.html%} -
-
-{% endcomment %} diff --git a/pages/_includes/ui/avatar.html b/pages/_includes/ui/avatar.html index eac4b4a52..28259f8db 100644 --- a/pages/_includes/ui/avatar.html +++ b/pages/_includes/ui/avatar.html @@ -15,5 +15,7 @@ {% endunless %} {% endif %} {% assign element = include.element | default: 'span' %} -<{{ element }} class="avatar{% if include['size'] %} avatar-{{ include['size'] }}{% endif %}{% if include.thumb %} avatar-thumb{% endif %}{% if include.class %} {{ include.class }}{% endif %}{% if include.shape %} {{ include.shape }}{% endif %}{% if include.color %} bg-{{ include.color }}-lt{% endif %}"{% if src %} style="background-image: url({{ site.base }}{{ src }})"{% endif %}>{% if include.status %}{% if include.status-text %}{{ include.status-text }}{% elsif include.status-icon %}{% include ui/icon.html icon=include.status-icon class="avatar-status-icon" %}{% endif %}{% endif %}{% if placeholder %}{{ placeholder }}{% elsif include.icon %} {% include ui/icon.html icon=include.icon class="avatar-icon" %}{% endif %} +<{{ element }} class="avatar{% if include['size'] %} avatar-{{ include['size'] }}{% endif %}{% if include.thumb %} avatar-thumb{% endif %}{% if include.class %} {{ include.class }}{% endif %}{% if include.shape %} {{ include.shape }}{% endif %}{% if include.color %} bg-{{ include.color }}-lt{% endif %}"{% if src %} style="background-image: url({{ site.base }}{{ src }})"{% endif %}>{% if include.status %} + {% if include.status-text %}{{ include.status-text }}{% elsif include.status-icon %}{% include ui/icon.html icon=include.status-icon class="avatar-status-icon" %}{% endif %} +{% endif %}{% if placeholder %}{{ placeholder }}{% elsif include.icon %} {% include ui/icon.html icon=include.icon class="avatar-icon" %}{% endif %} {% endremoveemptylines %} diff --git a/pages/_includes/ui/icon.html b/pages/_includes/ui/icon.html index 9b64d91f5..45dab0939 100644 --- a/pages/_includes/ui/icon.html +++ b/pages/_includes/ui/icon.html @@ -1,6 +1,3 @@ {% capture class %}{% if include.class %} {{ include.class }}{% endif %}{% if include.color %} text-{{ include.color }}{% endif %}{% endcapture %} {% assign class = class | strip %} -{% capture i %} -{% include icons/{{ include.icon }}.svg %} -{% endcapture %} -{{ i | svg_icon: class }} + diff --git a/pages/_layouts/base.html b/pages/_layouts/base.html index 547f58d8d..fcbce86f3 100644 --- a/pages/_layouts/base.html +++ b/pages/_layouts/base.html @@ -23,7 +23,7 @@ {% include_cached layout/css.html %} {% include_cached layout/js.html %} - + {{ content}} diff --git a/pages/_layouts/error.html b/pages/_layouts/error.html index 581bef273..a8fd5aae5 100644 --- a/pages/_layouts/error.html +++ b/pages/_layouts/error.html @@ -1,5 +1,6 @@ --- layout: base +body-class: border-top-2 border-primary --- {% assign error = site.data.errors[page.error] %} @@ -13,7 +14,7 @@ layout: base {% else %}
{{ page.error }}
-

Oops… You just found an error page

+

Oops… You just found an error page 😭

{{ error }}

diff --git a/pages/_layouts/single.html b/pages/_layouts/single.html index 323ea0fa7..9b59ece89 100644 --- a/pages/_layouts/single.html +++ b/pages/_layouts/single.html @@ -1,9 +1,10 @@ --- layout: base +body-class: border-top-2 border-primary --- -
-
+
+
diff --git a/scss/fonts/feather.scss b/scss/fonts/feather.scss new file mode 100755 index 000000000..dc83c519c --- /dev/null +++ b/scss/fonts/feather.scss @@ -0,0 +1,1350 @@ +@font-face { + font-family: 'Feather'; + src: url('../fonts/feather/feather.ttf?tabler') format('truetype'), + url('../fonts/feather/feather.woff?tabler') format('woff'), + url('../fonts/feather/feather.svg?tabler#Feather') format('svg'); + font-weight: normal; + font-style: normal; +} + +.fe { + font-family: 'Feather' !important; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +$icon-fe-activity: "\e900"; +.fe-activity:before { + content: $icon-fe-activity; +} + +$icon-fe-airplay: "\e901"; +.fe-airplay:before { + content: $icon-fe-airplay; +} + +$icon-fe-alert-circle: "\e902"; +.fe-alert-circle:before { + content: $icon-fe-alert-circle; +} + +$icon-fe-alert-octagon: "\e903"; +.fe-alert-octagon:before { + content: $icon-fe-alert-octagon; +} + +$icon-fe-alert-triangle: "\e904"; +.fe-alert-triangle:before { + content: $icon-fe-alert-triangle; +} + +$icon-fe-align-center: "\e905"; +.fe-align-center:before { + content: $icon-fe-align-center; +} + +$icon-fe-align-justify: "\e906"; +.fe-align-justify:before { + content: $icon-fe-align-justify; +} + +$icon-fe-align-left: "\e907"; +.fe-align-left:before { + content: $icon-fe-align-left; +} + +$icon-fe-align-right: "\e908"; +.fe-align-right:before { + content: $icon-fe-align-right; +} + +$icon-fe-anchor: "\e909"; +.fe-anchor:before { + content: $icon-fe-anchor; +} + +$icon-fe-aperture: "\e90a"; +.fe-aperture:before { + content: $icon-fe-aperture; +} + +$icon-fe-archive: "\e90b"; +.fe-archive:before { + content: $icon-fe-archive; +} + +$icon-fe-arrow-down: "\e90c"; +.fe-arrow-down:before { + content: $icon-fe-arrow-down; +} + +$icon-fe-arrow-down-circle: "\e90d"; +.fe-arrow-down-circle:before { + content: $icon-fe-arrow-down-circle; +} + +$icon-fe-arrow-down-left: "\e90e"; +.fe-arrow-down-left:before { + content: $icon-fe-arrow-down-left; +} + +$icon-fe-arrow-down-right: "\e90f"; +.fe-arrow-down-right:before { + content: $icon-fe-arrow-down-right; +} + +$icon-fe-arrow-left: "\e910"; +.fe-arrow-left:before { + content: $icon-fe-arrow-left; +} + +$icon-fe-arrow-left-circle: "\e911"; +.fe-arrow-left-circle:before { + content: $icon-fe-arrow-left-circle; +} + +$icon-fe-arrow-right: "\e912"; +.fe-arrow-right:before { + content: $icon-fe-arrow-right; +} + +$icon-fe-arrow-right-circle: "\e913"; +.fe-arrow-right-circle:before { + content: $icon-fe-arrow-right-circle; +} + +$icon-fe-arrow-up: "\e914"; +.fe-arrow-up:before { + content: $icon-fe-arrow-up; +} + +$icon-fe-arrow-up-circle: "\e915"; +.fe-arrow-up-circle:before { + content: $icon-fe-arrow-up-circle; +} + +$icon-fe-arrow-up-left: "\e916"; +.fe-arrow-up-left:before { + content: $icon-fe-arrow-up-left; +} + +$icon-fe-arrow-up-right: "\e917"; +.fe-arrow-up-right:before { + content: $icon-fe-arrow-up-right; +} + +$icon-fe-at-sign: "\e918"; +.fe-at-sign:before { + content: $icon-fe-at-sign; +} + +$icon-fe-award: "\e919"; +.fe-award:before { + content: $icon-fe-award; +} + +$icon-fe-bar-chart: "\e91a"; +.fe-bar-chart:before { + content: $icon-fe-bar-chart; +} + +$icon-fe-bar-chart-2: "\e91b"; +.fe-bar-chart-2:before { + content: $icon-fe-bar-chart-2; +} + +$icon-fe-battery: "\e91c"; +.fe-battery:before { + content: $icon-fe-battery; +} + +$icon-fe-battery-charging: "\e91d"; +.fe-battery-charging:before { + content: $icon-fe-battery-charging; +} + +$icon-fe-bell: "\e91e"; +.fe-bell:before { + content: $icon-fe-bell; +} + +$icon-fe-bell-off: "\e91f"; +.fe-bell-off:before { + content: $icon-fe-bell-off; +} + +$icon-fe-bluetooth: "\e920"; +.fe-bluetooth:before { + content: $icon-fe-bluetooth; +} + +$icon-fe-bold: "\e921"; +.fe-bold:before { + content: $icon-fe-bold; +} + +$icon-fe-book: "\e922"; +.fe-book:before { + content: $icon-fe-book; +} + +$icon-fe-book-open: "\e923"; +.fe-book-open:before { + content: $icon-fe-book-open; +} + +$icon-fe-bookmark: "\e924"; +.fe-bookmark:before { + content: $icon-fe-bookmark; +} + +$icon-fe-box: "\e925"; +.fe-box:before { + content: $icon-fe-box; +} + +$icon-fe-briefcase: "\e926"; +.fe-briefcase:before { + content: $icon-fe-briefcase; +} + +$icon-fe-calendar: "\e927"; +.fe-calendar:before { + content: $icon-fe-calendar; +} + +$icon-fe-camera: "\e928"; +.fe-camera:before { + content: $icon-fe-camera; +} + +$icon-fe-camera-off: "\e929"; +.fe-camera-off:before { + content: $icon-fe-camera-off; +} + +$icon-fe-cast: "\e92a"; +.fe-cast:before { + content: $icon-fe-cast; +} + +$icon-fe-check: "\e92b"; +.fe-check:before { + content: $icon-fe-check; +} + +$icon-fe-check-circle: "\e92c"; +.fe-check-circle:before { + content: $icon-fe-check-circle; +} + +$icon-fe-check-square: "\e92d"; +.fe-check-square:before { + content: $icon-fe-check-square; +} + +$icon-fe-chevron-down: "\e92e"; +.fe-chevron-down:before { + content: $icon-fe-chevron-down; +} + +$icon-fe-chevron-left: "\e92f"; +.fe-chevron-left:before { + content: $icon-fe-chevron-left; +} + +$icon-fe-chevron-right: "\e930"; +.fe-chevron-right:before { + content: $icon-fe-chevron-right; +} + +$icon-fe-chevron-up: "\e931"; +.fe-chevron-up:before { + content: $icon-fe-chevron-up; +} + +$icon-fe-chevrons-down: "\e932"; +.fe-chevrons-down:before { + content: $icon-fe-chevrons-down; +} + +$icon-fe-chevrons-left: "\e933"; +.fe-chevrons-left:before { + content: $icon-fe-chevrons-left; +} + +$icon-fe-chevrons-right: "\e934"; +.fe-chevrons-right:before { + content: $icon-fe-chevrons-right; +} + +$icon-fe-chevrons-up: "\e935"; +.fe-chevrons-up:before { + content: $icon-fe-chevrons-up; +} + +$icon-fe-chrome: "\e936"; +.fe-chrome:before { + content: $icon-fe-chrome; +} + +$icon-fe-circle: "\e937"; +.fe-circle:before { + content: $icon-fe-circle; +} + +$icon-fe-clipboard: "\e938"; +.fe-clipboard:before { + content: $icon-fe-clipboard; +} + +$icon-fe-clock: "\e939"; +.fe-clock:before { + content: $icon-fe-clock; +} + +$icon-fe-cloud: "\e93a"; +.fe-cloud:before { + content: $icon-fe-cloud; +} + +$icon-fe-cloud-drizzle: "\e93b"; +.fe-cloud-drizzle:before { + content: $icon-fe-cloud-drizzle; +} + +$icon-fe-cloud-lightning: "\e93c"; +.fe-cloud-lightning:before { + content: $icon-fe-cloud-lightning; +} + +$icon-fe-cloud-off: "\e93d"; +.fe-cloud-off:before { + content: $icon-fe-cloud-off; +} + +$icon-fe-cloud-rain: "\e93e"; +.fe-cloud-rain:before { + content: $icon-fe-cloud-rain; +} + +$icon-fe-cloud-snow: "\e93f"; +.fe-cloud-snow:before { + content: $icon-fe-cloud-snow; +} + +$icon-fe-code: "\e940"; +.fe-code:before { + content: $icon-fe-code; +} + +$icon-fe-codepen: "\e941"; +.fe-codepen:before { + content: $icon-fe-codepen; +} + +$icon-fe-command: "\e942"; +.fe-command:before { + content: $icon-fe-command; +} + +$icon-fe-compass: "\e943"; +.fe-compass:before { + content: $icon-fe-compass; +} + +$icon-fe-copy: "\e944"; +.fe-copy:before { + content: $icon-fe-copy; +} + +$icon-fe-corner-down-left: "\e945"; +.fe-corner-down-left:before { + content: $icon-fe-corner-down-left; +} + +$icon-fe-corner-down-right: "\e946"; +.fe-corner-down-right:before { + content: $icon-fe-corner-down-right; +} + +$icon-fe-corner-left-down: "\e947"; +.fe-corner-left-down:before { + content: $icon-fe-corner-left-down; +} + +$icon-fe-corner-left-up: "\e948"; +.fe-corner-left-up:before { + content: $icon-fe-corner-left-up; +} + +$icon-fe-corner-right-down: "\e949"; +.fe-corner-right-down:before { + content: $icon-fe-corner-right-down; +} + +$icon-fe-corner-right-up: "\e94a"; +.fe-corner-right-up:before { + content: $icon-fe-corner-right-up; +} + +$icon-fe-corner-up-left: "\e94b"; +.fe-corner-up-left:before { + content: $icon-fe-corner-up-left; +} + +$icon-fe-corner-up-right: "\e94c"; +.fe-corner-up-right:before { + content: $icon-fe-corner-up-right; +} + +$icon-fe-cpu: "\e94d"; +.fe-cpu:before { + content: $icon-fe-cpu; +} + +$icon-fe-credit-card: "\e94e"; +.fe-credit-card:before { + content: $icon-fe-credit-card; +} + +$icon-fe-crop: "\e94f"; +.fe-crop:before { + content: $icon-fe-crop; +} + +$icon-fe-crosshair: "\e950"; +.fe-crosshair:before { + content: $icon-fe-crosshair; +} + +$icon-fe-database: "\e951"; +.fe-database:before { + content: $icon-fe-database; +} + +$icon-fe-delete: "\e952"; +.fe-delete:before { + content: $icon-fe-delete; +} + +$icon-fe-disc: "\e953"; +.fe-disc:before { + content: $icon-fe-disc; +} + +$icon-fe-dollar-sign: "\e954"; +.fe-dollar-sign:before { + content: $icon-fe-dollar-sign; +} + +$icon-fe-download: "\e955"; +.fe-download:before { + content: $icon-fe-download; +} + +$icon-fe-download-cloud: "\e956"; +.fe-download-cloud:before { + content: $icon-fe-download-cloud; +} + +$icon-fe-droplet: "\e957"; +.fe-droplet:before { + content: $icon-fe-droplet; +} + +$icon-fe-edit: "\e958"; +.fe-edit:before { + content: $icon-fe-edit; +} + +$icon-fe-edit-2: "\e959"; +.fe-edit-2:before { + content: $icon-fe-edit-2; +} + +$icon-fe-edit-3: "\e95a"; +.fe-edit-3:before { + content: $icon-fe-edit-3; +} + +$icon-fe-external-link: "\e95b"; +.fe-external-link:before { + content: $icon-fe-external-link; +} + +$icon-fe-eye: "\e95c"; +.fe-eye:before { + content: $icon-fe-eye; +} + +$icon-fe-eye-off: "\e95d"; +.fe-eye-off:before { + content: $icon-fe-eye-off; +} + +$icon-fe-facebook: "\e95e"; +.fe-facebook:before { + content: $icon-fe-facebook; +} + +$icon-fe-fast-forward: "\e95f"; +.fe-fast-forward:before { + content: $icon-fe-fast-forward; +} + +$icon-fe-feather: "\e960"; +.fe-feather:before { + content: $icon-fe-feather; +} + +$icon-fe-file: "\e961"; +.fe-file:before { + content: $icon-fe-file; +} + +$icon-fe-file-minus: "\e962"; +.fe-file-minus:before { + content: $icon-fe-file-minus; +} + +$icon-fe-file-plus: "\e963"; +.fe-file-plus:before { + content: $icon-fe-file-plus; +} + +$icon-fe-file-text: "\e964"; +.fe-file-text:before { + content: $icon-fe-file-text; +} + +$icon-fe-film: "\e965"; +.fe-film:before { + content: $icon-fe-film; +} + +$icon-fe-filter: "\e966"; +.fe-filter:before { + content: $icon-fe-filter; +} + +$icon-fe-flag: "\e967"; +.fe-flag:before { + content: $icon-fe-flag; +} + +$icon-fe-folder: "\e968"; +.fe-folder:before { + content: $icon-fe-folder; +} + +$icon-fe-folder-minus: "\e969"; +.fe-folder-minus:before { + content: $icon-fe-folder-minus; +} + +$icon-fe-folder-plus: "\e96a"; +.fe-folder-plus:before { + content: $icon-fe-folder-plus; +} + +$icon-fe-gift: "\e96b"; +.fe-gift:before { + content: $icon-fe-gift; +} + +$icon-fe-git-branch: "\e96c"; +.fe-git-branch:before { + content: $icon-fe-git-branch; +} + +$icon-fe-git-commit: "\e96d"; +.fe-git-commit:before { + content: $icon-fe-git-commit; +} + +$icon-fe-git-merge: "\e96e"; +.fe-git-merge:before { + content: $icon-fe-git-merge; +} + +$icon-fe-git-pull-request: "\e96f"; +.fe-git-pull-request:before { + content: $icon-fe-git-pull-request; +} + +$icon-fe-github: "\e970"; +.fe-github:before { + content: $icon-fe-github; +} + +$icon-fe-gitlab: "\e971"; +.fe-gitlab:before { + content: $icon-fe-gitlab; +} + +$icon-fe-globe: "\e972"; +.fe-globe:before { + content: $icon-fe-globe; +} + +$icon-fe-grid: "\e973"; +.fe-grid:before { + content: $icon-fe-grid; +} + +$icon-fe-hard-drive: "\e974"; +.fe-hard-drive:before { + content: $icon-fe-hard-drive; +} + +$icon-fe-hash: "\e975"; +.fe-hash:before { + content: $icon-fe-hash; +} + +$icon-fe-headphones: "\e976"; +.fe-headphones:before { + content: $icon-fe-headphones; +} + +$icon-fe-heart: "\e977"; +.fe-heart:before { + content: $icon-fe-heart; +} + +$icon-fe-help-circle: "\e978"; +.fe-help-circle:before { + content: $icon-fe-help-circle; +} + +$icon-fe-home: "\e979"; +.fe-home:before { + content: $icon-fe-home; +} + +$icon-fe-image: "\e97a"; +.fe-image:before { + content: $icon-fe-image; +} + +$icon-fe-inbox: "\e97b"; +.fe-inbox:before { + content: $icon-fe-inbox; +} + +$icon-fe-info: "\e97c"; +.fe-info:before { + content: $icon-fe-info; +} + +$icon-fe-instagram: "\e97d"; +.fe-instagram:before { + content: $icon-fe-instagram; +} + +$icon-fe-italic: "\e97e"; +.fe-italic:before { + content: $icon-fe-italic; +} + +$icon-fe-layers: "\e97f"; +.fe-layers:before { + content: $icon-fe-layers; +} + +$icon-fe-layout: "\e980"; +.fe-layout:before { + content: $icon-fe-layout; +} + +$icon-fe-life-buoy: "\e981"; +.fe-life-buoy:before { + content: $icon-fe-life-buoy; +} + +$icon-fe-link: "\e982"; +.fe-link:before { + content: $icon-fe-link; +} + +$icon-fe-link-2: "\e983"; +.fe-link-2:before { + content: $icon-fe-link-2; +} + +$icon-fe-linkedin: "\e984"; +.fe-linkedin:before { + content: $icon-fe-linkedin; +} + +$icon-fe-list: "\e985"; +.fe-list:before { + content: $icon-fe-list; +} + +$icon-fe-loader: "\e986"; +.fe-loader:before { + content: $icon-fe-loader; +} + +$icon-fe-lock: "\e987"; +.fe-lock:before { + content: $icon-fe-lock; +} + +$icon-fe-log-in: "\e988"; +.fe-log-in:before { + content: $icon-fe-log-in; +} + +$icon-fe-log-out: "\e989"; +.fe-log-out:before { + content: $icon-fe-log-out; +} + +$icon-fe-mail: "\e98a"; +.fe-mail:before { + content: $icon-fe-mail; +} + +$icon-fe-map: "\e98b"; +.fe-map:before { + content: $icon-fe-map; +} + +$icon-fe-map-pin: "\e98c"; +.fe-map-pin:before { + content: $icon-fe-map-pin; +} + +$icon-fe-maximize: "\e98d"; +.fe-maximize:before { + content: $icon-fe-maximize; +} + +$icon-fe-maximize-2: "\e98e"; +.fe-maximize-2:before { + content: $icon-fe-maximize-2; +} + +$icon-fe-menu: "\e98f"; +.fe-menu:before { + content: $icon-fe-menu; +} + +$icon-fe-message-circle: "\e990"; +.fe-message-circle:before { + content: $icon-fe-message-circle; +} + +$icon-fe-message-square: "\e991"; +.fe-message-square:before { + content: $icon-fe-message-square; +} + +$icon-fe-mic: "\e992"; +.fe-mic:before { + content: $icon-fe-mic; +} + +$icon-fe-mic-off: "\e993"; +.fe-mic-off:before { + content: $icon-fe-mic-off; +} + +$icon-fe-minimize: "\e994"; +.fe-minimize:before { + content: $icon-fe-minimize; +} + +$icon-fe-minimize-2: "\e995"; +.fe-minimize-2:before { + content: $icon-fe-minimize-2; +} + +$icon-fe-minus: "\e996"; +.fe-minus:before { + content: $icon-fe-minus; +} + +$icon-fe-minus-circle: "\e997"; +.fe-minus-circle:before { + content: $icon-fe-minus-circle; +} + +$icon-fe-minus-square: "\e998"; +.fe-minus-square:before { + content: $icon-fe-minus-square; +} + +$icon-fe-monitor: "\e999"; +.fe-monitor:before { + content: $icon-fe-monitor; +} + +$icon-fe-moon: "\e99a"; +.fe-moon:before { + content: $icon-fe-moon; +} + +$icon-fe-more-horizontal: "\e99b"; +.fe-more-horizontal:before { + content: $icon-fe-more-horizontal; +} + +$icon-fe-more-vertical: "\e99c"; +.fe-more-vertical:before { + content: $icon-fe-more-vertical; +} + +$icon-fe-move: "\e99d"; +.fe-move:before { + content: $icon-fe-move; +} + +$icon-fe-music: "\e99e"; +.fe-music:before { + content: $icon-fe-music; +} + +$icon-fe-navigation: "\e99f"; +.fe-navigation:before { + content: $icon-fe-navigation; +} + +$icon-fe-navigation-2: "\e9a0"; +.fe-navigation-2:before { + content: $icon-fe-navigation-2; +} + +$icon-fe-octagon: "\e9a1"; +.fe-octagon:before { + content: $icon-fe-octagon; +} + +$icon-fe-package: "\e9a2"; +.fe-package:before { + content: $icon-fe-package; +} + +$icon-fe-paperclip: "\e9a3"; +.fe-paperclip:before { + content: $icon-fe-paperclip; +} + +$icon-fe-pause: "\e9a4"; +.fe-pause:before { + content: $icon-fe-pause; +} + +$icon-fe-pause-circle: "\e9a5"; +.fe-pause-circle:before { + content: $icon-fe-pause-circle; +} + +$icon-fe-percent: "\e9a6"; +.fe-percent:before { + content: $icon-fe-percent; +} + +$icon-fe-phone: "\e9a7"; +.fe-phone:before { + content: $icon-fe-phone; +} + +$icon-fe-phone-call: "\e9a8"; +.fe-phone-call:before { + content: $icon-fe-phone-call; +} + +$icon-fe-phone-forwarded: "\e9a9"; +.fe-phone-forwarded:before { + content: $icon-fe-phone-forwarded; +} + +$icon-fe-phone-incoming: "\e9aa"; +.fe-phone-incoming:before { + content: $icon-fe-phone-incoming; +} + +$icon-fe-phone-missed: "\e9ab"; +.fe-phone-missed:before { + content: $icon-fe-phone-missed; +} + +$icon-fe-phone-off: "\e9ac"; +.fe-phone-off:before { + content: $icon-fe-phone-off; +} + +$icon-fe-phone-outgoing: "\e9ad"; +.fe-phone-outgoing:before { + content: $icon-fe-phone-outgoing; +} + +$icon-fe-pie-chart: "\e9ae"; +.fe-pie-chart:before { + content: $icon-fe-pie-chart; +} + +$icon-fe-play: "\e9af"; +.fe-play:before { + content: $icon-fe-play; +} + +$icon-fe-play-circle: "\e9b0"; +.fe-play-circle:before { + content: $icon-fe-play-circle; +} + +$icon-fe-plus: "\e9b1"; +.fe-plus:before { + content: $icon-fe-plus; +} + +$icon-fe-plus-circle: "\e9b2"; +.fe-plus-circle:before { + content: $icon-fe-plus-circle; +} + +$icon-fe-plus-square: "\e9b3"; +.fe-plus-square:before { + content: $icon-fe-plus-square; +} + +$icon-fe-pocket: "\e9b4"; +.fe-pocket:before { + content: $icon-fe-pocket; +} + +$icon-fe-power: "\e9b5"; +.fe-power:before { + content: $icon-fe-power; +} + +$icon-fe-printer: "\e9b6"; +.fe-printer:before { + content: $icon-fe-printer; +} + +$icon-fe-radio: "\e9b7"; +.fe-radio:before { + content: $icon-fe-radio; +} + +$icon-fe-refresh-ccw: "\e9b8"; +.fe-refresh-ccw:before { + content: $icon-fe-refresh-ccw; +} + +$icon-fe-refresh-cw: "\e9b9"; +.fe-refresh-cw:before { + content: $icon-fe-refresh-cw; +} + +$icon-fe-repeat: "\e9ba"; +.fe-repeat:before { + content: $icon-fe-repeat; +} + +$icon-fe-rewind: "\e9bb"; +.fe-rewind:before { + content: $icon-fe-rewind; +} + +$icon-fe-rotate-ccw: "\e9bc"; +.fe-rotate-ccw:before { + content: $icon-fe-rotate-ccw; +} + +$icon-fe-rotate-cw: "\e9bd"; +.fe-rotate-cw:before { + content: $icon-fe-rotate-cw; +} + +$icon-fe-rss: "\e9be"; +.fe-rss:before { + content: $icon-fe-rss; +} + +$icon-fe-save: "\e9bf"; +.fe-save:before { + content: $icon-fe-save; +} + +$icon-fe-scissors: "\e9c0"; +.fe-scissors:before { + content: $icon-fe-scissors; +} + +$icon-fe-search: "\e9c1"; +.fe-search:before { + content: $icon-fe-search; +} + +$icon-fe-send: "\e9c2"; +.fe-send:before { + content: $icon-fe-send; +} + +$icon-fe-server: "\e9c3"; +.fe-server:before { + content: $icon-fe-server; +} + +$icon-fe-settings: "\e9c4"; +.fe-settings:before { + content: $icon-fe-settings; +} + +$icon-fe-share: "\e9c5"; +.fe-share:before { + content: $icon-fe-share; +} + +$icon-fe-share-2: "\e9c6"; +.fe-share-2:before { + content: $icon-fe-share-2; +} + +$icon-fe-shield: "\e9c7"; +.fe-shield:before { + content: $icon-fe-shield; +} + +$icon-fe-shield-off: "\e9c8"; +.fe-shield-off:before { + content: $icon-fe-shield-off; +} + +$icon-fe-shopping-bag: "\e9c9"; +.fe-shopping-bag:before { + content: $icon-fe-shopping-bag; +} + +$icon-fe-shopping-cart: "\e9ca"; +.fe-shopping-cart:before { + content: $icon-fe-shopping-cart; +} + +$icon-fe-shuffle: "\e9cb"; +.fe-shuffle:before { + content: $icon-fe-shuffle; +} + +$icon-fe-sidebar: "\e9cc"; +.fe-sidebar:before { + content: $icon-fe-sidebar; +} + +$icon-fe-skip-back: "\e9cd"; +.fe-skip-back:before { + content: $icon-fe-skip-back; +} + +$icon-fe-skip-forward: "\e9ce"; +.fe-skip-forward:before { + content: $icon-fe-skip-forward; +} + +$icon-fe-slack: "\e9cf"; +.fe-slack:before { + content: $icon-fe-slack; +} + +$icon-fe-slash: "\e9d0"; +.fe-slash:before { + content: $icon-fe-slash; +} + +$icon-fe-sliders: "\e9d1"; +.fe-sliders:before { + content: $icon-fe-sliders; +} + +$icon-fe-smartphone: "\e9d2"; +.fe-smartphone:before { + content: $icon-fe-smartphone; +} + +$icon-fe-speaker: "\e9d3"; +.fe-speaker:before { + content: $icon-fe-speaker; +} + +$icon-fe-square: "\e9d4"; +.fe-square:before { + content: $icon-fe-square; +} + +$icon-fe-star: "\e9d5"; +.fe-star:before { + content: $icon-fe-star; +} + +$icon-fe-stop-circle: "\e9d6"; +.fe-stop-circle:before { + content: $icon-fe-stop-circle; +} + +$icon-fe-sun: "\e9d7"; +.fe-sun:before { + content: $icon-fe-sun; +} + +$icon-fe-sunrise: "\e9d8"; +.fe-sunrise:before { + content: $icon-fe-sunrise; +} + +$icon-fe-sunset: "\e9d9"; +.fe-sunset:before { + content: $icon-fe-sunset; +} + +$icon-fe-tablet: "\e9da"; +.fe-tablet:before { + content: $icon-fe-tablet; +} + +$icon-fe-tag: "\e9db"; +.fe-tag:before { + content: $icon-fe-tag; +} + +$icon-fe-target: "\e9dc"; +.fe-target:before { + content: $icon-fe-target; +} + +$icon-fe-terminal: "\e9dd"; +.fe-terminal:before { + content: $icon-fe-terminal; +} + +$icon-fe-thermometer: "\e9de"; +.fe-thermometer:before { + content: $icon-fe-thermometer; +} + +$icon-fe-thumbs-down: "\e9df"; +.fe-thumbs-down:before { + content: $icon-fe-thumbs-down; +} + +$icon-fe-thumbs-up: "\e9e0"; +.fe-thumbs-up:before { + content: $icon-fe-thumbs-up; +} + +$icon-fe-toggle-left: "\e9e1"; +.fe-toggle-left:before { + content: $icon-fe-toggle-left; +} + +$icon-fe-toggle-right: "\e9e2"; +.fe-toggle-right:before { + content: $icon-fe-toggle-right; +} + +$icon-fe-trash: "\e9e3"; +.fe-trash:before { + content: $icon-fe-trash; +} + +$icon-fe-trash-2: "\e9e4"; +.fe-trash-2:before { + content: $icon-fe-trash-2; +} + +$icon-fe-trending-down: "\e9e5"; +.fe-trending-down:before { + content: $icon-fe-trending-down; +} + +$icon-fe-trending-up: "\e9e6"; +.fe-trending-up:before { + content: $icon-fe-trending-up; +} + +$icon-fe-triangle: "\e9e7"; +.fe-triangle:before { + content: $icon-fe-triangle; +} + +$icon-fe-truck: "\e9e8"; +.fe-truck:before { + content: $icon-fe-truck; +} + +$icon-fe-tv: "\e9e9"; +.fe-tv:before { + content: $icon-fe-tv; +} + +$icon-fe-twitter: "\e9ea"; +.fe-twitter:before { + content: $icon-fe-twitter; +} + +$icon-fe-type: "\e9eb"; +.fe-type:before { + content: $icon-fe-type; +} + +$icon-fe-umbrella: "\e9ec"; +.fe-umbrella:before { + content: $icon-fe-umbrella; +} + +$icon-fe-underline: "\e9ed"; +.fe-underline:before { + content: $icon-fe-underline; +} + +$icon-fe-unlock: "\e9ee"; +.fe-unlock:before { + content: $icon-fe-unlock; +} + +$icon-fe-upload: "\e9ef"; +.fe-upload:before { + content: $icon-fe-upload; +} + +$icon-fe-upload-cloud: "\e9f0"; +.fe-upload-cloud:before { + content: $icon-fe-upload-cloud; +} + +$icon-fe-user: "\e9f1"; +.fe-user:before { + content: $icon-fe-user; +} + +$icon-fe-user-check: "\e9f2"; +.fe-user-check:before { + content: $icon-fe-user-check; +} + +$icon-fe-user-minus: "\e9f3"; +.fe-user-minus:before { + content: $icon-fe-user-minus; +} + +$icon-fe-user-plus: "\e9f4"; +.fe-user-plus:before { + content: $icon-fe-user-plus; +} + +$icon-fe-user-x: "\e9f5"; +.fe-user-x:before { + content: $icon-fe-user-x; +} + +$icon-fe-users: "\e9f6"; +.fe-users:before { + content: $icon-fe-users; +} + +$icon-fe-video: "\e9f7"; +.fe-video:before { + content: $icon-fe-video; +} + +$icon-fe-video-off: "\e9f8"; +.fe-video-off:before { + content: $icon-fe-video-off; +} + +$icon-fe-voicemail: "\e9f9"; +.fe-voicemail:before { + content: $icon-fe-voicemail; +} + +$icon-fe-volume: "\e9fa"; +.fe-volume:before { + content: $icon-fe-volume; +} + +$icon-fe-volume-1: "\e9fb"; +.fe-volume-1:before { + content: $icon-fe-volume-1; +} + +$icon-fe-volume-2: "\e9fc"; +.fe-volume-2:before { + content: $icon-fe-volume-2; +} + +$icon-fe-volume-x: "\e9fd"; +.fe-volume-x:before { + content: $icon-fe-volume-x; +} + +$icon-fe-watch: "\e9fe"; +.fe-watch:before { + content: $icon-fe-watch; +} + +$icon-fe-wifi: "\e9ff"; +.fe-wifi:before { + content: $icon-fe-wifi; +} + +$icon-fe-wifi-off: "\ea00"; +.fe-wifi-off:before { + content: $icon-fe-wifi-off; +} + +$icon-fe-wind: "\ea01"; +.fe-wind:before { + content: $icon-fe-wind; +} + +$icon-fe-x: "\ea02"; +.fe-x:before { + content: $icon-fe-x; +} + +$icon-fe-x-circle: "\ea03"; +.fe-x-circle:before { + content: $icon-fe-x-circle; +} + +$icon-fe-x-square: "\ea04"; +.fe-x-square:before { + content: $icon-fe-x-square; +} + +$icon-fe-youtube: "\ea05"; +.fe-youtube:before { + content: $icon-fe-youtube; +} + +$icon-fe-zap: "\ea06"; +.fe-zap:before { + content: $icon-fe-zap; +} + +$icon-fe-zap-off: "\ea07"; +.fe-zap-off:before { + content: $icon-fe-zap-off; +} + +$icon-fe-zoom-in: "\ea08"; +.fe-zoom-in:before { + content: $icon-fe-zoom-in; +} + +$icon-fe-zoom-out: "\ea09"; +.fe-zoom-out:before { + content: $icon-fe-zoom-out; +} diff --git a/scss/layout/_core.scss b/scss/layout/_core.scss index 65ca1f723..1b81177c7 100644 --- a/scss/layout/_core.scss +++ b/scss/layout/_core.scss @@ -4,6 +4,7 @@ html { } body { + height: 100%; overflow-y: scroll; touch-action: manipulation; -webkit-tap-highlight-color: transparent; diff --git a/scss/layout/_sidenav.scss b/scss/layout/_sidenav.scss index 1d9fd2ddc..67ec4a320 100644 --- a/scss/layout/_sidenav.scss +++ b/scss/layout/_sidenav.scss @@ -4,7 +4,6 @@ Sidebar .sidenav { width: 16rem; min-width: 16rem; - padding: .75rem 1rem; background: $sidenav-bg; border-right: 1px solid $sidenav-border-color; @@ -12,6 +11,7 @@ Sidebar display: flex; align-items: center; color: $text-muted; + border-radius: $border-radius; &.active, &:hover { @@ -22,11 +22,23 @@ Sidebar > .icon { min-width: 2rem; } + + &[data-toggle="collapse"] { + &:after { + display: block; + font-family: 'Feather' !important; + content: $icon-fe-chevron-down; + margin-left: auto; + transition: transform .3s; + } + + &[aria-expanded="true"]:after { + transform: rotate(-180deg); + } + } } .navbar-brand { - padding-top: 1rem; - padding-bottom: 1rem; text-align: center; } @@ -39,6 +51,12 @@ Sidebar margin: 0; @extend .text-subheader; } + + .nav { + .nav-item { + padding-left: 2rem; + } + } } /** diff --git a/scss/tabler.scss b/scss/tabler.scss index 3a9861083..1bdd27a54 100644 --- a/scss/tabler.scss +++ b/scss/tabler.scss @@ -5,6 +5,8 @@ @import "../node_modules/bootstrap/scss/bootstrap"; +@import "fonts/feather"; + @import "layout/webfonts"; @import "layout/core"; @@ -58,5 +60,6 @@ @import "utils/opacity"; @import "utils/shadow"; + @import "dark"; @import "rtl"; diff --git a/scss/ui/_avatars.scss b/scss/ui/_avatars.scss index 60b2e6696..c11b38dc1 100644 --- a/scss/ui/_avatars.scss +++ b/scss/ui/_avatars.scss @@ -18,6 +18,14 @@ font-size: 1.25em; } + .badge { + position: absolute; + right: 0; + bottom: 0; + border-radius: 50%; + box-shadow: 0 0 0 2px white; + } + @at-root a#{&} { cursor: pointer; } @@ -32,16 +40,7 @@ } } -.avatar-status { - position: absolute; - right: -2px; - bottom: -2px; - width: .75rem; - height: .75rem; - background: #98a9bc; - border: 2px solid #fff; - border-radius: 50%; -} + .avatar-list { padding: 0; diff --git a/scss/ui/_badges.scss b/scss/ui/_badges.scss index 9e10c8d40..930a2e491 100644 --- a/scss/ui/_badges.scss +++ b/scss/ui/_badges.scss @@ -32,3 +32,7 @@ background-color: transparent; border: 1px solid currentColor; } + +.badge-pill { + border-radius: 100px; +} diff --git a/scss/ui/_icons.scss b/scss/ui/_icons.scss index c3fb0aa29..78b0b581a 100644 --- a/scss/ui/_icons.scss +++ b/scss/ui/_icons.scss @@ -1,30 +1,16 @@ .icon { - width: 1em; - height: 1em; font-size: 1em; - vertical-align: -.2em; + vertical-align: -.1em; } .icon-md { - width: px2rem(20px); - height: px2rem(20px); font-size: px2rem(20px); } .icon-lg { - width: px2rem(40px); - height: px2rem(40px); font-size: px2rem(40px); } -.icon-thin { - stroke-width: 1.5px; -} - -.icon-filled { - fill: currentColor; -} - .icons-list { display: flex; flex-wrap: wrap; diff --git a/scss/ui/_inputs.scss b/scss/ui/_inputs.scss index e91cd48d8..924a8679a 100644 --- a/scss/ui/_inputs.scss +++ b/scss/ui/_inputs.scss @@ -7,7 +7,7 @@ textarea { .form-label { display: block; margin-bottom: .375rem; - font-size: $h6-font-size; + font-size: $h5-font-size; font-weight: 600; } diff --git a/scss/ui/_ribbons.scss b/scss/ui/_ribbons.scss index a51db6462..88052e4d1 100644 --- a/scss/ui/_ribbons.scss +++ b/scss/ui/_ribbons.scss @@ -5,7 +5,7 @@ top: .75rem; right: -($ribbon-margin); z-index: 1; - padding: .5rem 1rem; + padding: .375rem 1rem; font-weight: 600; color: #fff; text-align: center; diff --git a/scss/ui/_stamps.scss b/scss/ui/_stamps.scss index 9eacd711f..e09e5d851 100644 --- a/scss/ui/_stamps.scss +++ b/scss/ui/_stamps.scss @@ -12,8 +12,6 @@ border-radius: 3px; .icon { - width: 1.25rem; - height: 1.25rem; - vertical-align: middle; + font-size: 1.25rem; } } diff --git a/scss/utils/_border.scss b/scss/utils/_border.scss index b3d06fb2f..0db3ff555 100644 --- a/scss/utils/_border.scss +++ b/scss/utils/_border.scss @@ -1,9 +1,41 @@ // stylelint-disable declaration-no-important +$border-sizing: () !default; +$border-sizing: map-merge(( + 2: 2, + 4: 4 +), $border-sizing); -.b-dashed{ +@each $size, $value in $border-sizing { + + .border-#{$size} { + border-width: $border-width * $value !important; + } + + .border-top-#{$size} { + border-top-width: $border-width * $value !important; + border-top-style: solid; + } + + .border-right-#{$size} { + border-right-width: $border-width * $value !important; + border-right-style: solid; + } + + .border-bottom-#{$size} { + border-bottom-width: $border-width * $value !important; + border-bottom-style: solid; + } + + .border-left-#{$size} { + border-left-width: $border-width * $value !important; + border-left-style: solid; + } +} + +.border-dashed { border-style: dashed !important; } -.b-transparent{ +.border-transparent { border-color: transparent !important; } diff --git a/static/fonts/feather/feather.svg b/static/fonts/feather/feather.svg new file mode 100755 index 000000000..3ae186a8b --- /dev/null +++ b/static/fonts/feather/feather.svg @@ -0,0 +1,276 @@ + + + +Generated by IcoMoon + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/static/fonts/feather/feather.ttf b/static/fonts/feather/feather.ttf new file mode 100755 index 000000000..244dcaff9 Binary files /dev/null and b/static/fonts/feather/feather.ttf differ diff --git a/static/fonts/feather/feather.woff b/static/fonts/feather/feather.woff new file mode 100755 index 000000000..762faaaa9 Binary files /dev/null and b/static/fonts/feather/feather.woff differ diff --git a/pages/_includes/icons/brands/500px.svg b/svg/brands/500px.svg similarity index 100% rename from pages/_includes/icons/brands/500px.svg rename to svg/brands/500px.svg diff --git a/pages/_includes/icons/brands/accessible-icon.svg b/svg/brands/accessible-icon.svg similarity index 100% rename from pages/_includes/icons/brands/accessible-icon.svg rename to svg/brands/accessible-icon.svg diff --git a/pages/_includes/icons/brands/accusoft.svg b/svg/brands/accusoft.svg similarity index 100% rename from pages/_includes/icons/brands/accusoft.svg rename to svg/brands/accusoft.svg diff --git a/pages/_includes/icons/brands/acquisitions-incorporated.svg b/svg/brands/acquisitions-incorporated.svg similarity index 100% rename from pages/_includes/icons/brands/acquisitions-incorporated.svg rename to svg/brands/acquisitions-incorporated.svg diff --git a/pages/_includes/icons/brands/adn.svg b/svg/brands/adn.svg similarity index 100% rename from pages/_includes/icons/brands/adn.svg rename to svg/brands/adn.svg diff --git a/pages/_includes/icons/brands/adobe.svg b/svg/brands/adobe.svg similarity index 100% rename from pages/_includes/icons/brands/adobe.svg rename to svg/brands/adobe.svg diff --git a/pages/_includes/icons/brands/adversal.svg b/svg/brands/adversal.svg similarity index 100% rename from pages/_includes/icons/brands/adversal.svg rename to svg/brands/adversal.svg diff --git a/pages/_includes/icons/brands/affiliatetheme.svg b/svg/brands/affiliatetheme.svg similarity index 100% rename from pages/_includes/icons/brands/affiliatetheme.svg rename to svg/brands/affiliatetheme.svg diff --git a/pages/_includes/icons/brands/algolia.svg b/svg/brands/algolia.svg similarity index 100% rename from pages/_includes/icons/brands/algolia.svg rename to svg/brands/algolia.svg diff --git a/pages/_includes/icons/brands/alipay.svg b/svg/brands/alipay.svg similarity index 100% rename from pages/_includes/icons/brands/alipay.svg rename to svg/brands/alipay.svg diff --git a/pages/_includes/icons/brands/amazon-pay.svg b/svg/brands/amazon-pay.svg similarity index 100% rename from pages/_includes/icons/brands/amazon-pay.svg rename to svg/brands/amazon-pay.svg diff --git a/pages/_includes/icons/brands/amazon.svg b/svg/brands/amazon.svg similarity index 100% rename from pages/_includes/icons/brands/amazon.svg rename to svg/brands/amazon.svg diff --git a/pages/_includes/icons/brands/amilia.svg b/svg/brands/amilia.svg similarity index 100% rename from pages/_includes/icons/brands/amilia.svg rename to svg/brands/amilia.svg diff --git a/pages/_includes/icons/brands/android.svg b/svg/brands/android.svg similarity index 100% rename from pages/_includes/icons/brands/android.svg rename to svg/brands/android.svg diff --git a/pages/_includes/icons/brands/angellist.svg b/svg/brands/angellist.svg similarity index 100% rename from pages/_includes/icons/brands/angellist.svg rename to svg/brands/angellist.svg diff --git a/pages/_includes/icons/brands/angrycreative.svg b/svg/brands/angrycreative.svg similarity index 100% rename from pages/_includes/icons/brands/angrycreative.svg rename to svg/brands/angrycreative.svg diff --git a/pages/_includes/icons/brands/angular.svg b/svg/brands/angular.svg similarity index 100% rename from pages/_includes/icons/brands/angular.svg rename to svg/brands/angular.svg diff --git a/pages/_includes/icons/brands/app-store-ios.svg b/svg/brands/app-store-ios.svg similarity index 100% rename from pages/_includes/icons/brands/app-store-ios.svg rename to svg/brands/app-store-ios.svg diff --git a/pages/_includes/icons/brands/app-store.svg b/svg/brands/app-store.svg similarity index 100% rename from pages/_includes/icons/brands/app-store.svg rename to svg/brands/app-store.svg diff --git a/pages/_includes/icons/brands/apper.svg b/svg/brands/apper.svg similarity index 100% rename from pages/_includes/icons/brands/apper.svg rename to svg/brands/apper.svg diff --git a/pages/_includes/icons/brands/apple-pay.svg b/svg/brands/apple-pay.svg similarity index 100% rename from pages/_includes/icons/brands/apple-pay.svg rename to svg/brands/apple-pay.svg diff --git a/pages/_includes/icons/brands/apple.svg b/svg/brands/apple.svg similarity index 100% rename from pages/_includes/icons/brands/apple.svg rename to svg/brands/apple.svg diff --git a/pages/_includes/icons/brands/artstation.svg b/svg/brands/artstation.svg similarity index 100% rename from pages/_includes/icons/brands/artstation.svg rename to svg/brands/artstation.svg diff --git a/pages/_includes/icons/brands/asymmetrik.svg b/svg/brands/asymmetrik.svg similarity index 100% rename from pages/_includes/icons/brands/asymmetrik.svg rename to svg/brands/asymmetrik.svg diff --git a/pages/_includes/icons/brands/atlassian.svg b/svg/brands/atlassian.svg similarity index 100% rename from pages/_includes/icons/brands/atlassian.svg rename to svg/brands/atlassian.svg diff --git a/pages/_includes/icons/brands/audible.svg b/svg/brands/audible.svg similarity index 100% rename from pages/_includes/icons/brands/audible.svg rename to svg/brands/audible.svg diff --git a/pages/_includes/icons/brands/autoprefixer.svg b/svg/brands/autoprefixer.svg similarity index 100% rename from pages/_includes/icons/brands/autoprefixer.svg rename to svg/brands/autoprefixer.svg diff --git a/pages/_includes/icons/brands/avianex.svg b/svg/brands/avianex.svg similarity index 100% rename from pages/_includes/icons/brands/avianex.svg rename to svg/brands/avianex.svg diff --git a/pages/_includes/icons/brands/aviato.svg b/svg/brands/aviato.svg similarity index 100% rename from pages/_includes/icons/brands/aviato.svg rename to svg/brands/aviato.svg diff --git a/pages/_includes/icons/brands/aws.svg b/svg/brands/aws.svg similarity index 100% rename from pages/_includes/icons/brands/aws.svg rename to svg/brands/aws.svg diff --git a/pages/_includes/icons/brands/bandcamp.svg b/svg/brands/bandcamp.svg similarity index 100% rename from pages/_includes/icons/brands/bandcamp.svg rename to svg/brands/bandcamp.svg diff --git a/pages/_includes/icons/brands/behance-square.svg b/svg/brands/behance-square.svg similarity index 100% rename from pages/_includes/icons/brands/behance-square.svg rename to svg/brands/behance-square.svg diff --git a/pages/_includes/icons/brands/behance.svg b/svg/brands/behance.svg similarity index 100% rename from pages/_includes/icons/brands/behance.svg rename to svg/brands/behance.svg diff --git a/pages/_includes/icons/brands/bimobject.svg b/svg/brands/bimobject.svg similarity index 100% rename from pages/_includes/icons/brands/bimobject.svg rename to svg/brands/bimobject.svg diff --git a/pages/_includes/icons/brands/bitbucket.svg b/svg/brands/bitbucket.svg similarity index 100% rename from pages/_includes/icons/brands/bitbucket.svg rename to svg/brands/bitbucket.svg diff --git a/pages/_includes/icons/brands/bitcoin.svg b/svg/brands/bitcoin.svg similarity index 100% rename from pages/_includes/icons/brands/bitcoin.svg rename to svg/brands/bitcoin.svg diff --git a/pages/_includes/icons/brands/bity.svg b/svg/brands/bity.svg similarity index 100% rename from pages/_includes/icons/brands/bity.svg rename to svg/brands/bity.svg diff --git a/pages/_includes/icons/brands/black-tie.svg b/svg/brands/black-tie.svg similarity index 100% rename from pages/_includes/icons/brands/black-tie.svg rename to svg/brands/black-tie.svg diff --git a/pages/_includes/icons/brands/blackberry.svg b/svg/brands/blackberry.svg similarity index 100% rename from pages/_includes/icons/brands/blackberry.svg rename to svg/brands/blackberry.svg diff --git a/pages/_includes/icons/brands/blogger-b.svg b/svg/brands/blogger-b.svg similarity index 100% rename from pages/_includes/icons/brands/blogger-b.svg rename to svg/brands/blogger-b.svg diff --git a/pages/_includes/icons/brands/blogger.svg b/svg/brands/blogger.svg similarity index 100% rename from pages/_includes/icons/brands/blogger.svg rename to svg/brands/blogger.svg diff --git a/pages/_includes/icons/brands/bluetooth-b.svg b/svg/brands/bluetooth-b.svg similarity index 100% rename from pages/_includes/icons/brands/bluetooth-b.svg rename to svg/brands/bluetooth-b.svg diff --git a/pages/_includes/icons/brands/bluetooth.svg b/svg/brands/bluetooth.svg similarity index 100% rename from pages/_includes/icons/brands/bluetooth.svg rename to svg/brands/bluetooth.svg diff --git a/pages/_includes/icons/brands/btc.svg b/svg/brands/btc.svg similarity index 100% rename from pages/_includes/icons/brands/btc.svg rename to svg/brands/btc.svg diff --git a/pages/_includes/icons/brands/buromobelexperte.svg b/svg/brands/buromobelexperte.svg similarity index 100% rename from pages/_includes/icons/brands/buromobelexperte.svg rename to svg/brands/buromobelexperte.svg diff --git a/pages/_includes/icons/brands/buysellads.svg b/svg/brands/buysellads.svg similarity index 100% rename from pages/_includes/icons/brands/buysellads.svg rename to svg/brands/buysellads.svg diff --git a/pages/_includes/icons/brands/canadian-maple-leaf.svg b/svg/brands/canadian-maple-leaf.svg similarity index 100% rename from pages/_includes/icons/brands/canadian-maple-leaf.svg rename to svg/brands/canadian-maple-leaf.svg diff --git a/pages/_includes/icons/brands/cc-amazon-pay.svg b/svg/brands/cc-amazon-pay.svg similarity index 100% rename from pages/_includes/icons/brands/cc-amazon-pay.svg rename to svg/brands/cc-amazon-pay.svg diff --git a/pages/_includes/icons/brands/cc-amex.svg b/svg/brands/cc-amex.svg similarity index 100% rename from pages/_includes/icons/brands/cc-amex.svg rename to svg/brands/cc-amex.svg diff --git a/pages/_includes/icons/brands/cc-apple-pay.svg b/svg/brands/cc-apple-pay.svg similarity index 100% rename from pages/_includes/icons/brands/cc-apple-pay.svg rename to svg/brands/cc-apple-pay.svg diff --git a/pages/_includes/icons/brands/cc-diners-club.svg b/svg/brands/cc-diners-club.svg similarity index 100% rename from pages/_includes/icons/brands/cc-diners-club.svg rename to svg/brands/cc-diners-club.svg diff --git a/pages/_includes/icons/brands/cc-discover.svg b/svg/brands/cc-discover.svg similarity index 100% rename from pages/_includes/icons/brands/cc-discover.svg rename to svg/brands/cc-discover.svg diff --git a/pages/_includes/icons/brands/cc-jcb.svg b/svg/brands/cc-jcb.svg similarity index 100% rename from pages/_includes/icons/brands/cc-jcb.svg rename to svg/brands/cc-jcb.svg diff --git a/pages/_includes/icons/brands/cc-mastercard.svg b/svg/brands/cc-mastercard.svg similarity index 100% rename from pages/_includes/icons/brands/cc-mastercard.svg rename to svg/brands/cc-mastercard.svg diff --git a/pages/_includes/icons/brands/cc-paypal.svg b/svg/brands/cc-paypal.svg similarity index 100% rename from pages/_includes/icons/brands/cc-paypal.svg rename to svg/brands/cc-paypal.svg diff --git a/pages/_includes/icons/brands/cc-stripe.svg b/svg/brands/cc-stripe.svg similarity index 100% rename from pages/_includes/icons/brands/cc-stripe.svg rename to svg/brands/cc-stripe.svg diff --git a/pages/_includes/icons/brands/cc-visa.svg b/svg/brands/cc-visa.svg similarity index 100% rename from pages/_includes/icons/brands/cc-visa.svg rename to svg/brands/cc-visa.svg diff --git a/pages/_includes/icons/brands/centercode.svg b/svg/brands/centercode.svg similarity index 100% rename from pages/_includes/icons/brands/centercode.svg rename to svg/brands/centercode.svg diff --git a/pages/_includes/icons/brands/centos.svg b/svg/brands/centos.svg similarity index 100% rename from pages/_includes/icons/brands/centos.svg rename to svg/brands/centos.svg diff --git a/pages/_includes/icons/brands/chrome.svg b/svg/brands/chrome.svg similarity index 100% rename from pages/_includes/icons/brands/chrome.svg rename to svg/brands/chrome.svg diff --git a/pages/_includes/icons/brands/cloudscale.svg b/svg/brands/cloudscale.svg similarity index 100% rename from pages/_includes/icons/brands/cloudscale.svg rename to svg/brands/cloudscale.svg diff --git a/pages/_includes/icons/brands/cloudsmith.svg b/svg/brands/cloudsmith.svg similarity index 100% rename from pages/_includes/icons/brands/cloudsmith.svg rename to svg/brands/cloudsmith.svg diff --git a/pages/_includes/icons/brands/cloudversify.svg b/svg/brands/cloudversify.svg similarity index 100% rename from pages/_includes/icons/brands/cloudversify.svg rename to svg/brands/cloudversify.svg diff --git a/pages/_includes/icons/brands/codepen.svg b/svg/brands/codepen.svg similarity index 100% rename from pages/_includes/icons/brands/codepen.svg rename to svg/brands/codepen.svg diff --git a/pages/_includes/icons/brands/codiepie.svg b/svg/brands/codiepie.svg similarity index 100% rename from pages/_includes/icons/brands/codiepie.svg rename to svg/brands/codiepie.svg diff --git a/pages/_includes/icons/brands/confluence.svg b/svg/brands/confluence.svg similarity index 100% rename from pages/_includes/icons/brands/confluence.svg rename to svg/brands/confluence.svg diff --git a/pages/_includes/icons/brands/connectdevelop.svg b/svg/brands/connectdevelop.svg similarity index 100% rename from pages/_includes/icons/brands/connectdevelop.svg rename to svg/brands/connectdevelop.svg diff --git a/pages/_includes/icons/brands/contao.svg b/svg/brands/contao.svg similarity index 100% rename from pages/_includes/icons/brands/contao.svg rename to svg/brands/contao.svg diff --git a/pages/_includes/icons/brands/cpanel.svg b/svg/brands/cpanel.svg similarity index 100% rename from pages/_includes/icons/brands/cpanel.svg rename to svg/brands/cpanel.svg diff --git a/pages/_includes/icons/brands/creative-commons-by.svg b/svg/brands/creative-commons-by.svg similarity index 100% rename from pages/_includes/icons/brands/creative-commons-by.svg rename to svg/brands/creative-commons-by.svg diff --git a/pages/_includes/icons/brands/creative-commons-nc-eu.svg b/svg/brands/creative-commons-nc-eu.svg similarity index 100% rename from pages/_includes/icons/brands/creative-commons-nc-eu.svg rename to svg/brands/creative-commons-nc-eu.svg diff --git a/pages/_includes/icons/brands/creative-commons-nc-jp.svg b/svg/brands/creative-commons-nc-jp.svg similarity index 100% rename from pages/_includes/icons/brands/creative-commons-nc-jp.svg rename to svg/brands/creative-commons-nc-jp.svg diff --git a/pages/_includes/icons/brands/creative-commons-nc.svg b/svg/brands/creative-commons-nc.svg similarity index 100% rename from pages/_includes/icons/brands/creative-commons-nc.svg rename to svg/brands/creative-commons-nc.svg diff --git a/pages/_includes/icons/brands/creative-commons-nd.svg b/svg/brands/creative-commons-nd.svg similarity index 100% rename from pages/_includes/icons/brands/creative-commons-nd.svg rename to svg/brands/creative-commons-nd.svg diff --git a/pages/_includes/icons/brands/creative-commons-pd-alt.svg b/svg/brands/creative-commons-pd-alt.svg similarity index 100% rename from pages/_includes/icons/brands/creative-commons-pd-alt.svg rename to svg/brands/creative-commons-pd-alt.svg diff --git a/pages/_includes/icons/brands/creative-commons-pd.svg b/svg/brands/creative-commons-pd.svg similarity index 100% rename from pages/_includes/icons/brands/creative-commons-pd.svg rename to svg/brands/creative-commons-pd.svg diff --git a/pages/_includes/icons/brands/creative-commons-remix.svg b/svg/brands/creative-commons-remix.svg similarity index 100% rename from pages/_includes/icons/brands/creative-commons-remix.svg rename to svg/brands/creative-commons-remix.svg diff --git a/pages/_includes/icons/brands/creative-commons-sa.svg b/svg/brands/creative-commons-sa.svg similarity index 100% rename from pages/_includes/icons/brands/creative-commons-sa.svg rename to svg/brands/creative-commons-sa.svg diff --git a/pages/_includes/icons/brands/creative-commons-sampling-plus.svg b/svg/brands/creative-commons-sampling-plus.svg similarity index 100% rename from pages/_includes/icons/brands/creative-commons-sampling-plus.svg rename to svg/brands/creative-commons-sampling-plus.svg diff --git a/pages/_includes/icons/brands/creative-commons-sampling.svg b/svg/brands/creative-commons-sampling.svg similarity index 100% rename from pages/_includes/icons/brands/creative-commons-sampling.svg rename to svg/brands/creative-commons-sampling.svg diff --git a/pages/_includes/icons/brands/creative-commons-share.svg b/svg/brands/creative-commons-share.svg similarity index 100% rename from pages/_includes/icons/brands/creative-commons-share.svg rename to svg/brands/creative-commons-share.svg diff --git a/pages/_includes/icons/brands/creative-commons-zero.svg b/svg/brands/creative-commons-zero.svg similarity index 100% rename from pages/_includes/icons/brands/creative-commons-zero.svg rename to svg/brands/creative-commons-zero.svg diff --git a/pages/_includes/icons/brands/creative-commons.svg b/svg/brands/creative-commons.svg similarity index 100% rename from pages/_includes/icons/brands/creative-commons.svg rename to svg/brands/creative-commons.svg diff --git a/pages/_includes/icons/brands/critical-role.svg b/svg/brands/critical-role.svg similarity index 100% rename from pages/_includes/icons/brands/critical-role.svg rename to svg/brands/critical-role.svg diff --git a/pages/_includes/icons/brands/css3-alt.svg b/svg/brands/css3-alt.svg similarity index 100% rename from pages/_includes/icons/brands/css3-alt.svg rename to svg/brands/css3-alt.svg diff --git a/pages/_includes/icons/brands/css3.svg b/svg/brands/css3.svg similarity index 100% rename from pages/_includes/icons/brands/css3.svg rename to svg/brands/css3.svg diff --git a/pages/_includes/icons/brands/cuttlefish.svg b/svg/brands/cuttlefish.svg similarity index 100% rename from pages/_includes/icons/brands/cuttlefish.svg rename to svg/brands/cuttlefish.svg diff --git a/pages/_includes/icons/brands/d-and-d-beyond.svg b/svg/brands/d-and-d-beyond.svg similarity index 100% rename from pages/_includes/icons/brands/d-and-d-beyond.svg rename to svg/brands/d-and-d-beyond.svg diff --git a/pages/_includes/icons/brands/d-and-d.svg b/svg/brands/d-and-d.svg similarity index 100% rename from pages/_includes/icons/brands/d-and-d.svg rename to svg/brands/d-and-d.svg diff --git a/pages/_includes/icons/brands/dashcube.svg b/svg/brands/dashcube.svg similarity index 100% rename from pages/_includes/icons/brands/dashcube.svg rename to svg/brands/dashcube.svg diff --git a/pages/_includes/icons/brands/delicious.svg b/svg/brands/delicious.svg similarity index 100% rename from pages/_includes/icons/brands/delicious.svg rename to svg/brands/delicious.svg diff --git a/pages/_includes/icons/brands/deploydog.svg b/svg/brands/deploydog.svg similarity index 100% rename from pages/_includes/icons/brands/deploydog.svg rename to svg/brands/deploydog.svg diff --git a/pages/_includes/icons/brands/deskpro.svg b/svg/brands/deskpro.svg similarity index 100% rename from pages/_includes/icons/brands/deskpro.svg rename to svg/brands/deskpro.svg diff --git a/pages/_includes/icons/brands/dev.svg b/svg/brands/dev.svg similarity index 100% rename from pages/_includes/icons/brands/dev.svg rename to svg/brands/dev.svg diff --git a/pages/_includes/icons/brands/deviantart.svg b/svg/brands/deviantart.svg similarity index 100% rename from pages/_includes/icons/brands/deviantart.svg rename to svg/brands/deviantart.svg diff --git a/pages/_includes/icons/brands/dhl.svg b/svg/brands/dhl.svg similarity index 100% rename from pages/_includes/icons/brands/dhl.svg rename to svg/brands/dhl.svg diff --git a/pages/_includes/icons/brands/diaspora.svg b/svg/brands/diaspora.svg similarity index 100% rename from pages/_includes/icons/brands/diaspora.svg rename to svg/brands/diaspora.svg diff --git a/pages/_includes/icons/brands/digg.svg b/svg/brands/digg.svg similarity index 100% rename from pages/_includes/icons/brands/digg.svg rename to svg/brands/digg.svg diff --git a/pages/_includes/icons/brands/digital-ocean.svg b/svg/brands/digital-ocean.svg similarity index 100% rename from pages/_includes/icons/brands/digital-ocean.svg rename to svg/brands/digital-ocean.svg diff --git a/pages/_includes/icons/brands/discord.svg b/svg/brands/discord.svg similarity index 100% rename from pages/_includes/icons/brands/discord.svg rename to svg/brands/discord.svg diff --git a/pages/_includes/icons/brands/discourse.svg b/svg/brands/discourse.svg similarity index 100% rename from pages/_includes/icons/brands/discourse.svg rename to svg/brands/discourse.svg diff --git a/pages/_includes/icons/brands/dochub.svg b/svg/brands/dochub.svg similarity index 100% rename from pages/_includes/icons/brands/dochub.svg rename to svg/brands/dochub.svg diff --git a/pages/_includes/icons/brands/docker.svg b/svg/brands/docker.svg similarity index 100% rename from pages/_includes/icons/brands/docker.svg rename to svg/brands/docker.svg diff --git a/pages/_includes/icons/brands/draft2digital.svg b/svg/brands/draft2digital.svg similarity index 100% rename from pages/_includes/icons/brands/draft2digital.svg rename to svg/brands/draft2digital.svg diff --git a/pages/_includes/icons/brands/dribbble-square.svg b/svg/brands/dribbble-square.svg similarity index 100% rename from pages/_includes/icons/brands/dribbble-square.svg rename to svg/brands/dribbble-square.svg diff --git a/pages/_includes/icons/brands/dribbble.svg b/svg/brands/dribbble.svg similarity index 100% rename from pages/_includes/icons/brands/dribbble.svg rename to svg/brands/dribbble.svg diff --git a/pages/_includes/icons/brands/dropbox.svg b/svg/brands/dropbox.svg similarity index 100% rename from pages/_includes/icons/brands/dropbox.svg rename to svg/brands/dropbox.svg diff --git a/pages/_includes/icons/brands/drupal.svg b/svg/brands/drupal.svg similarity index 100% rename from pages/_includes/icons/brands/drupal.svg rename to svg/brands/drupal.svg diff --git a/pages/_includes/icons/brands/dyalog.svg b/svg/brands/dyalog.svg similarity index 100% rename from pages/_includes/icons/brands/dyalog.svg rename to svg/brands/dyalog.svg diff --git a/pages/_includes/icons/brands/earlybirds.svg b/svg/brands/earlybirds.svg similarity index 100% rename from pages/_includes/icons/brands/earlybirds.svg rename to svg/brands/earlybirds.svg diff --git a/pages/_includes/icons/brands/ebay.svg b/svg/brands/ebay.svg similarity index 100% rename from pages/_includes/icons/brands/ebay.svg rename to svg/brands/ebay.svg diff --git a/pages/_includes/icons/brands/edge.svg b/svg/brands/edge.svg similarity index 100% rename from pages/_includes/icons/brands/edge.svg rename to svg/brands/edge.svg diff --git a/pages/_includes/icons/brands/elementor.svg b/svg/brands/elementor.svg similarity index 100% rename from pages/_includes/icons/brands/elementor.svg rename to svg/brands/elementor.svg diff --git a/pages/_includes/icons/brands/ello.svg b/svg/brands/ello.svg similarity index 100% rename from pages/_includes/icons/brands/ello.svg rename to svg/brands/ello.svg diff --git a/pages/_includes/icons/brands/ember.svg b/svg/brands/ember.svg similarity index 100% rename from pages/_includes/icons/brands/ember.svg rename to svg/brands/ember.svg diff --git a/pages/_includes/icons/brands/empire.svg b/svg/brands/empire.svg similarity index 100% rename from pages/_includes/icons/brands/empire.svg rename to svg/brands/empire.svg diff --git a/pages/_includes/icons/brands/envira.svg b/svg/brands/envira.svg similarity index 100% rename from pages/_includes/icons/brands/envira.svg rename to svg/brands/envira.svg diff --git a/pages/_includes/icons/brands/erlang.svg b/svg/brands/erlang.svg similarity index 100% rename from pages/_includes/icons/brands/erlang.svg rename to svg/brands/erlang.svg diff --git a/pages/_includes/icons/brands/ethereum.svg b/svg/brands/ethereum.svg similarity index 100% rename from pages/_includes/icons/brands/ethereum.svg rename to svg/brands/ethereum.svg diff --git a/pages/_includes/icons/brands/etsy.svg b/svg/brands/etsy.svg similarity index 100% rename from pages/_includes/icons/brands/etsy.svg rename to svg/brands/etsy.svg diff --git a/pages/_includes/icons/brands/expeditedssl.svg b/svg/brands/expeditedssl.svg similarity index 100% rename from pages/_includes/icons/brands/expeditedssl.svg rename to svg/brands/expeditedssl.svg diff --git a/pages/_includes/icons/brands/facebook-f.svg b/svg/brands/facebook-f.svg similarity index 100% rename from pages/_includes/icons/brands/facebook-f.svg rename to svg/brands/facebook-f.svg diff --git a/pages/_includes/icons/brands/facebook-messenger.svg b/svg/brands/facebook-messenger.svg similarity index 100% rename from pages/_includes/icons/brands/facebook-messenger.svg rename to svg/brands/facebook-messenger.svg diff --git a/pages/_includes/icons/brands/facebook-square.svg b/svg/brands/facebook-square.svg similarity index 100% rename from pages/_includes/icons/brands/facebook-square.svg rename to svg/brands/facebook-square.svg diff --git a/pages/_includes/icons/brands/facebook.svg b/svg/brands/facebook.svg similarity index 100% rename from pages/_includes/icons/brands/facebook.svg rename to svg/brands/facebook.svg diff --git a/pages/_includes/icons/brands/fantasy-flight-games.svg b/svg/brands/fantasy-flight-games.svg similarity index 100% rename from pages/_includes/icons/brands/fantasy-flight-games.svg rename to svg/brands/fantasy-flight-games.svg diff --git a/pages/_includes/icons/brands/fedex.svg b/svg/brands/fedex.svg similarity index 100% rename from pages/_includes/icons/brands/fedex.svg rename to svg/brands/fedex.svg diff --git a/pages/_includes/icons/brands/fedora.svg b/svg/brands/fedora.svg similarity index 100% rename from pages/_includes/icons/brands/fedora.svg rename to svg/brands/fedora.svg diff --git a/pages/_includes/icons/brands/figma.svg b/svg/brands/figma.svg similarity index 100% rename from pages/_includes/icons/brands/figma.svg rename to svg/brands/figma.svg diff --git a/pages/_includes/icons/brands/firefox.svg b/svg/brands/firefox.svg similarity index 100% rename from pages/_includes/icons/brands/firefox.svg rename to svg/brands/firefox.svg diff --git a/pages/_includes/icons/brands/first-order-alt.svg b/svg/brands/first-order-alt.svg similarity index 100% rename from pages/_includes/icons/brands/first-order-alt.svg rename to svg/brands/first-order-alt.svg diff --git a/pages/_includes/icons/brands/first-order.svg b/svg/brands/first-order.svg similarity index 100% rename from pages/_includes/icons/brands/first-order.svg rename to svg/brands/first-order.svg diff --git a/pages/_includes/icons/brands/firstdraft.svg b/svg/brands/firstdraft.svg similarity index 100% rename from pages/_includes/icons/brands/firstdraft.svg rename to svg/brands/firstdraft.svg diff --git a/pages/_includes/icons/brands/flickr.svg b/svg/brands/flickr.svg similarity index 100% rename from pages/_includes/icons/brands/flickr.svg rename to svg/brands/flickr.svg diff --git a/pages/_includes/icons/brands/flipboard.svg b/svg/brands/flipboard.svg similarity index 100% rename from pages/_includes/icons/brands/flipboard.svg rename to svg/brands/flipboard.svg diff --git a/pages/_includes/icons/brands/fly.svg b/svg/brands/fly.svg similarity index 100% rename from pages/_includes/icons/brands/fly.svg rename to svg/brands/fly.svg diff --git a/pages/_includes/icons/brands/font-awesome-alt.svg b/svg/brands/font-awesome-alt.svg similarity index 100% rename from pages/_includes/icons/brands/font-awesome-alt.svg rename to svg/brands/font-awesome-alt.svg diff --git a/pages/_includes/icons/brands/font-awesome-flag.svg b/svg/brands/font-awesome-flag.svg similarity index 100% rename from pages/_includes/icons/brands/font-awesome-flag.svg rename to svg/brands/font-awesome-flag.svg diff --git a/pages/_includes/icons/brands/font-awesome-logo-full.svg b/svg/brands/font-awesome-logo-full.svg similarity index 100% rename from pages/_includes/icons/brands/font-awesome-logo-full.svg rename to svg/brands/font-awesome-logo-full.svg diff --git a/pages/_includes/icons/brands/font-awesome.svg b/svg/brands/font-awesome.svg similarity index 100% rename from pages/_includes/icons/brands/font-awesome.svg rename to svg/brands/font-awesome.svg diff --git a/pages/_includes/icons/brands/fonticons-fi.svg b/svg/brands/fonticons-fi.svg similarity index 100% rename from pages/_includes/icons/brands/fonticons-fi.svg rename to svg/brands/fonticons-fi.svg diff --git a/pages/_includes/icons/brands/fonticons.svg b/svg/brands/fonticons.svg similarity index 100% rename from pages/_includes/icons/brands/fonticons.svg rename to svg/brands/fonticons.svg diff --git a/pages/_includes/icons/brands/fort-awesome-alt.svg b/svg/brands/fort-awesome-alt.svg similarity index 100% rename from pages/_includes/icons/brands/fort-awesome-alt.svg rename to svg/brands/fort-awesome-alt.svg diff --git a/pages/_includes/icons/brands/fort-awesome.svg b/svg/brands/fort-awesome.svg similarity index 100% rename from pages/_includes/icons/brands/fort-awesome.svg rename to svg/brands/fort-awesome.svg diff --git a/pages/_includes/icons/brands/forumbee.svg b/svg/brands/forumbee.svg similarity index 100% rename from pages/_includes/icons/brands/forumbee.svg rename to svg/brands/forumbee.svg diff --git a/pages/_includes/icons/brands/foursquare.svg b/svg/brands/foursquare.svg similarity index 100% rename from pages/_includes/icons/brands/foursquare.svg rename to svg/brands/foursquare.svg diff --git a/pages/_includes/icons/brands/free-code-camp.svg b/svg/brands/free-code-camp.svg similarity index 100% rename from pages/_includes/icons/brands/free-code-camp.svg rename to svg/brands/free-code-camp.svg diff --git a/pages/_includes/icons/brands/freebsd.svg b/svg/brands/freebsd.svg similarity index 100% rename from pages/_includes/icons/brands/freebsd.svg rename to svg/brands/freebsd.svg diff --git a/pages/_includes/icons/brands/fulcrum.svg b/svg/brands/fulcrum.svg similarity index 100% rename from pages/_includes/icons/brands/fulcrum.svg rename to svg/brands/fulcrum.svg diff --git a/pages/_includes/icons/brands/galactic-republic.svg b/svg/brands/galactic-republic.svg similarity index 100% rename from pages/_includes/icons/brands/galactic-republic.svg rename to svg/brands/galactic-republic.svg diff --git a/pages/_includes/icons/brands/galactic-senate.svg b/svg/brands/galactic-senate.svg similarity index 100% rename from pages/_includes/icons/brands/galactic-senate.svg rename to svg/brands/galactic-senate.svg diff --git a/pages/_includes/icons/brands/get-pocket.svg b/svg/brands/get-pocket.svg similarity index 100% rename from pages/_includes/icons/brands/get-pocket.svg rename to svg/brands/get-pocket.svg diff --git a/pages/_includes/icons/brands/gg-circle.svg b/svg/brands/gg-circle.svg similarity index 100% rename from pages/_includes/icons/brands/gg-circle.svg rename to svg/brands/gg-circle.svg diff --git a/pages/_includes/icons/brands/gg.svg b/svg/brands/gg.svg similarity index 100% rename from pages/_includes/icons/brands/gg.svg rename to svg/brands/gg.svg diff --git a/pages/_includes/icons/brands/git-square.svg b/svg/brands/git-square.svg similarity index 100% rename from pages/_includes/icons/brands/git-square.svg rename to svg/brands/git-square.svg diff --git a/pages/_includes/icons/brands/git.svg b/svg/brands/git.svg similarity index 100% rename from pages/_includes/icons/brands/git.svg rename to svg/brands/git.svg diff --git a/pages/_includes/icons/brands/github-alt.svg b/svg/brands/github-alt.svg similarity index 100% rename from pages/_includes/icons/brands/github-alt.svg rename to svg/brands/github-alt.svg diff --git a/pages/_includes/icons/brands/github-square.svg b/svg/brands/github-square.svg similarity index 100% rename from pages/_includes/icons/brands/github-square.svg rename to svg/brands/github-square.svg diff --git a/pages/_includes/icons/brands/github.svg b/svg/brands/github.svg similarity index 100% rename from pages/_includes/icons/brands/github.svg rename to svg/brands/github.svg diff --git a/pages/_includes/icons/brands/gitkraken.svg b/svg/brands/gitkraken.svg similarity index 100% rename from pages/_includes/icons/brands/gitkraken.svg rename to svg/brands/gitkraken.svg diff --git a/pages/_includes/icons/brands/gitlab.svg b/svg/brands/gitlab.svg similarity index 100% rename from pages/_includes/icons/brands/gitlab.svg rename to svg/brands/gitlab.svg diff --git a/pages/_includes/icons/brands/gitter.svg b/svg/brands/gitter.svg similarity index 100% rename from pages/_includes/icons/brands/gitter.svg rename to svg/brands/gitter.svg diff --git a/pages/_includes/icons/brands/glide-g.svg b/svg/brands/glide-g.svg similarity index 100% rename from pages/_includes/icons/brands/glide-g.svg rename to svg/brands/glide-g.svg diff --git a/pages/_includes/icons/brands/glide.svg b/svg/brands/glide.svg similarity index 100% rename from pages/_includes/icons/brands/glide.svg rename to svg/brands/glide.svg diff --git a/pages/_includes/icons/brands/gofore.svg b/svg/brands/gofore.svg similarity index 100% rename from pages/_includes/icons/brands/gofore.svg rename to svg/brands/gofore.svg diff --git a/pages/_includes/icons/brands/goodreads-g.svg b/svg/brands/goodreads-g.svg similarity index 100% rename from pages/_includes/icons/brands/goodreads-g.svg rename to svg/brands/goodreads-g.svg diff --git a/pages/_includes/icons/brands/goodreads.svg b/svg/brands/goodreads.svg similarity index 100% rename from pages/_includes/icons/brands/goodreads.svg rename to svg/brands/goodreads.svg diff --git a/pages/_includes/icons/brands/google-drive.svg b/svg/brands/google-drive.svg similarity index 100% rename from pages/_includes/icons/brands/google-drive.svg rename to svg/brands/google-drive.svg diff --git a/pages/_includes/icons/brands/google-play.svg b/svg/brands/google-play.svg similarity index 100% rename from pages/_includes/icons/brands/google-play.svg rename to svg/brands/google-play.svg diff --git a/pages/_includes/icons/brands/google-plus-g.svg b/svg/brands/google-plus-g.svg similarity index 100% rename from pages/_includes/icons/brands/google-plus-g.svg rename to svg/brands/google-plus-g.svg diff --git a/pages/_includes/icons/brands/google-plus-square.svg b/svg/brands/google-plus-square.svg similarity index 100% rename from pages/_includes/icons/brands/google-plus-square.svg rename to svg/brands/google-plus-square.svg diff --git a/pages/_includes/icons/brands/google-plus.svg b/svg/brands/google-plus.svg similarity index 100% rename from pages/_includes/icons/brands/google-plus.svg rename to svg/brands/google-plus.svg diff --git a/pages/_includes/icons/brands/google-wallet.svg b/svg/brands/google-wallet.svg similarity index 100% rename from pages/_includes/icons/brands/google-wallet.svg rename to svg/brands/google-wallet.svg diff --git a/pages/_includes/icons/brands/google.svg b/svg/brands/google.svg similarity index 100% rename from pages/_includes/icons/brands/google.svg rename to svg/brands/google.svg diff --git a/pages/_includes/icons/brands/gratipay.svg b/svg/brands/gratipay.svg similarity index 100% rename from pages/_includes/icons/brands/gratipay.svg rename to svg/brands/gratipay.svg diff --git a/pages/_includes/icons/brands/grav.svg b/svg/brands/grav.svg similarity index 100% rename from pages/_includes/icons/brands/grav.svg rename to svg/brands/grav.svg diff --git a/pages/_includes/icons/brands/gripfire.svg b/svg/brands/gripfire.svg similarity index 100% rename from pages/_includes/icons/brands/gripfire.svg rename to svg/brands/gripfire.svg diff --git a/pages/_includes/icons/brands/grunt.svg b/svg/brands/grunt.svg similarity index 100% rename from pages/_includes/icons/brands/grunt.svg rename to svg/brands/grunt.svg diff --git a/pages/_includes/icons/brands/gulp.svg b/svg/brands/gulp.svg similarity index 100% rename from pages/_includes/icons/brands/gulp.svg rename to svg/brands/gulp.svg diff --git a/pages/_includes/icons/brands/hacker-news-square.svg b/svg/brands/hacker-news-square.svg similarity index 100% rename from pages/_includes/icons/brands/hacker-news-square.svg rename to svg/brands/hacker-news-square.svg diff --git a/pages/_includes/icons/brands/hacker-news.svg b/svg/brands/hacker-news.svg similarity index 100% rename from pages/_includes/icons/brands/hacker-news.svg rename to svg/brands/hacker-news.svg diff --git a/pages/_includes/icons/brands/hackerrank.svg b/svg/brands/hackerrank.svg similarity index 100% rename from pages/_includes/icons/brands/hackerrank.svg rename to svg/brands/hackerrank.svg diff --git a/pages/_includes/icons/brands/hips.svg b/svg/brands/hips.svg similarity index 100% rename from pages/_includes/icons/brands/hips.svg rename to svg/brands/hips.svg diff --git a/pages/_includes/icons/brands/hire-a-helper.svg b/svg/brands/hire-a-helper.svg similarity index 100% rename from pages/_includes/icons/brands/hire-a-helper.svg rename to svg/brands/hire-a-helper.svg diff --git a/pages/_includes/icons/brands/hooli.svg b/svg/brands/hooli.svg similarity index 100% rename from pages/_includes/icons/brands/hooli.svg rename to svg/brands/hooli.svg diff --git a/pages/_includes/icons/brands/hornbill.svg b/svg/brands/hornbill.svg similarity index 100% rename from pages/_includes/icons/brands/hornbill.svg rename to svg/brands/hornbill.svg diff --git a/pages/_includes/icons/brands/hotjar.svg b/svg/brands/hotjar.svg similarity index 100% rename from pages/_includes/icons/brands/hotjar.svg rename to svg/brands/hotjar.svg diff --git a/pages/_includes/icons/brands/houzz.svg b/svg/brands/houzz.svg similarity index 100% rename from pages/_includes/icons/brands/houzz.svg rename to svg/brands/houzz.svg diff --git a/pages/_includes/icons/brands/html5.svg b/svg/brands/html5.svg similarity index 100% rename from pages/_includes/icons/brands/html5.svg rename to svg/brands/html5.svg diff --git a/pages/_includes/icons/brands/hubspot.svg b/svg/brands/hubspot.svg similarity index 100% rename from pages/_includes/icons/brands/hubspot.svg rename to svg/brands/hubspot.svg diff --git a/pages/_includes/icons/brands/imdb.svg b/svg/brands/imdb.svg similarity index 100% rename from pages/_includes/icons/brands/imdb.svg rename to svg/brands/imdb.svg diff --git a/pages/_includes/icons/brands/instagram.svg b/svg/brands/instagram.svg similarity index 100% rename from pages/_includes/icons/brands/instagram.svg rename to svg/brands/instagram.svg diff --git a/pages/_includes/icons/brands/intercom.svg b/svg/brands/intercom.svg similarity index 100% rename from pages/_includes/icons/brands/intercom.svg rename to svg/brands/intercom.svg diff --git a/pages/_includes/icons/brands/internet-explorer.svg b/svg/brands/internet-explorer.svg similarity index 100% rename from pages/_includes/icons/brands/internet-explorer.svg rename to svg/brands/internet-explorer.svg diff --git a/pages/_includes/icons/brands/invision.svg b/svg/brands/invision.svg similarity index 100% rename from pages/_includes/icons/brands/invision.svg rename to svg/brands/invision.svg diff --git a/pages/_includes/icons/brands/ioxhost.svg b/svg/brands/ioxhost.svg similarity index 100% rename from pages/_includes/icons/brands/ioxhost.svg rename to svg/brands/ioxhost.svg diff --git a/pages/_includes/icons/brands/itunes-note.svg b/svg/brands/itunes-note.svg similarity index 100% rename from pages/_includes/icons/brands/itunes-note.svg rename to svg/brands/itunes-note.svg diff --git a/pages/_includes/icons/brands/itunes.svg b/svg/brands/itunes.svg similarity index 100% rename from pages/_includes/icons/brands/itunes.svg rename to svg/brands/itunes.svg diff --git a/pages/_includes/icons/brands/java.svg b/svg/brands/java.svg similarity index 100% rename from pages/_includes/icons/brands/java.svg rename to svg/brands/java.svg diff --git a/pages/_includes/icons/brands/jedi-order.svg b/svg/brands/jedi-order.svg similarity index 100% rename from pages/_includes/icons/brands/jedi-order.svg rename to svg/brands/jedi-order.svg diff --git a/pages/_includes/icons/brands/jenkins.svg b/svg/brands/jenkins.svg similarity index 100% rename from pages/_includes/icons/brands/jenkins.svg rename to svg/brands/jenkins.svg diff --git a/pages/_includes/icons/brands/jira.svg b/svg/brands/jira.svg similarity index 100% rename from pages/_includes/icons/brands/jira.svg rename to svg/brands/jira.svg diff --git a/pages/_includes/icons/brands/joget.svg b/svg/brands/joget.svg similarity index 100% rename from pages/_includes/icons/brands/joget.svg rename to svg/brands/joget.svg diff --git a/pages/_includes/icons/brands/joomla.svg b/svg/brands/joomla.svg similarity index 100% rename from pages/_includes/icons/brands/joomla.svg rename to svg/brands/joomla.svg diff --git a/pages/_includes/icons/brands/js-square.svg b/svg/brands/js-square.svg similarity index 100% rename from pages/_includes/icons/brands/js-square.svg rename to svg/brands/js-square.svg diff --git a/pages/_includes/icons/brands/js.svg b/svg/brands/js.svg similarity index 100% rename from pages/_includes/icons/brands/js.svg rename to svg/brands/js.svg diff --git a/pages/_includes/icons/brands/jsfiddle.svg b/svg/brands/jsfiddle.svg similarity index 100% rename from pages/_includes/icons/brands/jsfiddle.svg rename to svg/brands/jsfiddle.svg diff --git a/pages/_includes/icons/brands/kaggle.svg b/svg/brands/kaggle.svg similarity index 100% rename from pages/_includes/icons/brands/kaggle.svg rename to svg/brands/kaggle.svg diff --git a/pages/_includes/icons/brands/keybase.svg b/svg/brands/keybase.svg similarity index 100% rename from pages/_includes/icons/brands/keybase.svg rename to svg/brands/keybase.svg diff --git a/pages/_includes/icons/brands/keycdn.svg b/svg/brands/keycdn.svg similarity index 100% rename from pages/_includes/icons/brands/keycdn.svg rename to svg/brands/keycdn.svg diff --git a/pages/_includes/icons/brands/kickstarter-k.svg b/svg/brands/kickstarter-k.svg similarity index 100% rename from pages/_includes/icons/brands/kickstarter-k.svg rename to svg/brands/kickstarter-k.svg diff --git a/pages/_includes/icons/brands/kickstarter.svg b/svg/brands/kickstarter.svg similarity index 100% rename from pages/_includes/icons/brands/kickstarter.svg rename to svg/brands/kickstarter.svg diff --git a/pages/_includes/icons/brands/korvue.svg b/svg/brands/korvue.svg similarity index 100% rename from pages/_includes/icons/brands/korvue.svg rename to svg/brands/korvue.svg diff --git a/pages/_includes/icons/brands/laravel.svg b/svg/brands/laravel.svg similarity index 100% rename from pages/_includes/icons/brands/laravel.svg rename to svg/brands/laravel.svg diff --git a/pages/_includes/icons/brands/lastfm-square.svg b/svg/brands/lastfm-square.svg similarity index 100% rename from pages/_includes/icons/brands/lastfm-square.svg rename to svg/brands/lastfm-square.svg diff --git a/pages/_includes/icons/brands/lastfm.svg b/svg/brands/lastfm.svg similarity index 100% rename from pages/_includes/icons/brands/lastfm.svg rename to svg/brands/lastfm.svg diff --git a/pages/_includes/icons/brands/leanpub.svg b/svg/brands/leanpub.svg similarity index 100% rename from pages/_includes/icons/brands/leanpub.svg rename to svg/brands/leanpub.svg diff --git a/pages/_includes/icons/brands/less.svg b/svg/brands/less.svg similarity index 100% rename from pages/_includes/icons/brands/less.svg rename to svg/brands/less.svg diff --git a/pages/_includes/icons/brands/line.svg b/svg/brands/line.svg similarity index 100% rename from pages/_includes/icons/brands/line.svg rename to svg/brands/line.svg diff --git a/pages/_includes/icons/brands/linkedin-in.svg b/svg/brands/linkedin-in.svg similarity index 100% rename from pages/_includes/icons/brands/linkedin-in.svg rename to svg/brands/linkedin-in.svg diff --git a/pages/_includes/icons/brands/linkedin.svg b/svg/brands/linkedin.svg similarity index 100% rename from pages/_includes/icons/brands/linkedin.svg rename to svg/brands/linkedin.svg diff --git a/pages/_includes/icons/brands/linode.svg b/svg/brands/linode.svg similarity index 100% rename from pages/_includes/icons/brands/linode.svg rename to svg/brands/linode.svg diff --git a/pages/_includes/icons/brands/linux.svg b/svg/brands/linux.svg similarity index 100% rename from pages/_includes/icons/brands/linux.svg rename to svg/brands/linux.svg diff --git a/pages/_includes/icons/brands/lyft.svg b/svg/brands/lyft.svg similarity index 100% rename from pages/_includes/icons/brands/lyft.svg rename to svg/brands/lyft.svg diff --git a/pages/_includes/icons/brands/magento.svg b/svg/brands/magento.svg similarity index 100% rename from pages/_includes/icons/brands/magento.svg rename to svg/brands/magento.svg diff --git a/pages/_includes/icons/brands/mailchimp.svg b/svg/brands/mailchimp.svg similarity index 100% rename from pages/_includes/icons/brands/mailchimp.svg rename to svg/brands/mailchimp.svg diff --git a/pages/_includes/icons/brands/mandalorian.svg b/svg/brands/mandalorian.svg similarity index 100% rename from pages/_includes/icons/brands/mandalorian.svg rename to svg/brands/mandalorian.svg diff --git a/pages/_includes/icons/brands/markdown.svg b/svg/brands/markdown.svg similarity index 100% rename from pages/_includes/icons/brands/markdown.svg rename to svg/brands/markdown.svg diff --git a/pages/_includes/icons/brands/mastodon.svg b/svg/brands/mastodon.svg similarity index 100% rename from pages/_includes/icons/brands/mastodon.svg rename to svg/brands/mastodon.svg diff --git a/pages/_includes/icons/brands/maxcdn.svg b/svg/brands/maxcdn.svg similarity index 100% rename from pages/_includes/icons/brands/maxcdn.svg rename to svg/brands/maxcdn.svg diff --git a/pages/_includes/icons/brands/medapps.svg b/svg/brands/medapps.svg similarity index 100% rename from pages/_includes/icons/brands/medapps.svg rename to svg/brands/medapps.svg diff --git a/pages/_includes/icons/brands/medium-m.svg b/svg/brands/medium-m.svg similarity index 100% rename from pages/_includes/icons/brands/medium-m.svg rename to svg/brands/medium-m.svg diff --git a/pages/_includes/icons/brands/medium.svg b/svg/brands/medium.svg similarity index 100% rename from pages/_includes/icons/brands/medium.svg rename to svg/brands/medium.svg diff --git a/pages/_includes/icons/brands/medrt.svg b/svg/brands/medrt.svg similarity index 100% rename from pages/_includes/icons/brands/medrt.svg rename to svg/brands/medrt.svg diff --git a/pages/_includes/icons/brands/meetup.svg b/svg/brands/meetup.svg similarity index 100% rename from pages/_includes/icons/brands/meetup.svg rename to svg/brands/meetup.svg diff --git a/pages/_includes/icons/brands/megaport.svg b/svg/brands/megaport.svg similarity index 100% rename from pages/_includes/icons/brands/megaport.svg rename to svg/brands/megaport.svg diff --git a/pages/_includes/icons/brands/mendeley.svg b/svg/brands/mendeley.svg similarity index 100% rename from pages/_includes/icons/brands/mendeley.svg rename to svg/brands/mendeley.svg diff --git a/pages/_includes/icons/brands/microsoft.svg b/svg/brands/microsoft.svg similarity index 100% rename from pages/_includes/icons/brands/microsoft.svg rename to svg/brands/microsoft.svg diff --git a/pages/_includes/icons/brands/mix.svg b/svg/brands/mix.svg similarity index 100% rename from pages/_includes/icons/brands/mix.svg rename to svg/brands/mix.svg diff --git a/pages/_includes/icons/brands/mixcloud.svg b/svg/brands/mixcloud.svg similarity index 100% rename from pages/_includes/icons/brands/mixcloud.svg rename to svg/brands/mixcloud.svg diff --git a/pages/_includes/icons/brands/mizuni.svg b/svg/brands/mizuni.svg similarity index 100% rename from pages/_includes/icons/brands/mizuni.svg rename to svg/brands/mizuni.svg diff --git a/pages/_includes/icons/brands/modx.svg b/svg/brands/modx.svg similarity index 100% rename from pages/_includes/icons/brands/modx.svg rename to svg/brands/modx.svg diff --git a/pages/_includes/icons/brands/monero.svg b/svg/brands/monero.svg similarity index 100% rename from pages/_includes/icons/brands/monero.svg rename to svg/brands/monero.svg diff --git a/pages/_includes/icons/brands/napster.svg b/svg/brands/napster.svg similarity index 100% rename from pages/_includes/icons/brands/napster.svg rename to svg/brands/napster.svg diff --git a/pages/_includes/icons/brands/neos.svg b/svg/brands/neos.svg similarity index 100% rename from pages/_includes/icons/brands/neos.svg rename to svg/brands/neos.svg diff --git a/pages/_includes/icons/brands/nimblr.svg b/svg/brands/nimblr.svg similarity index 100% rename from pages/_includes/icons/brands/nimblr.svg rename to svg/brands/nimblr.svg diff --git a/pages/_includes/icons/brands/nintendo-switch.svg b/svg/brands/nintendo-switch.svg similarity index 100% rename from pages/_includes/icons/brands/nintendo-switch.svg rename to svg/brands/nintendo-switch.svg diff --git a/pages/_includes/icons/brands/node-js.svg b/svg/brands/node-js.svg similarity index 100% rename from pages/_includes/icons/brands/node-js.svg rename to svg/brands/node-js.svg diff --git a/pages/_includes/icons/brands/node.svg b/svg/brands/node.svg similarity index 100% rename from pages/_includes/icons/brands/node.svg rename to svg/brands/node.svg diff --git a/pages/_includes/icons/brands/npm.svg b/svg/brands/npm.svg similarity index 100% rename from pages/_includes/icons/brands/npm.svg rename to svg/brands/npm.svg diff --git a/pages/_includes/icons/brands/ns8.svg b/svg/brands/ns8.svg similarity index 100% rename from pages/_includes/icons/brands/ns8.svg rename to svg/brands/ns8.svg diff --git a/pages/_includes/icons/brands/nutritionix.svg b/svg/brands/nutritionix.svg similarity index 100% rename from pages/_includes/icons/brands/nutritionix.svg rename to svg/brands/nutritionix.svg diff --git a/pages/_includes/icons/brands/odnoklassniki-square.svg b/svg/brands/odnoklassniki-square.svg similarity index 100% rename from pages/_includes/icons/brands/odnoklassniki-square.svg rename to svg/brands/odnoklassniki-square.svg diff --git a/pages/_includes/icons/brands/odnoklassniki.svg b/svg/brands/odnoklassniki.svg similarity index 100% rename from pages/_includes/icons/brands/odnoklassniki.svg rename to svg/brands/odnoklassniki.svg diff --git a/pages/_includes/icons/brands/old-republic.svg b/svg/brands/old-republic.svg similarity index 100% rename from pages/_includes/icons/brands/old-republic.svg rename to svg/brands/old-republic.svg diff --git a/pages/_includes/icons/brands/opencart.svg b/svg/brands/opencart.svg similarity index 100% rename from pages/_includes/icons/brands/opencart.svg rename to svg/brands/opencart.svg diff --git a/pages/_includes/icons/brands/openid.svg b/svg/brands/openid.svg similarity index 100% rename from pages/_includes/icons/brands/openid.svg rename to svg/brands/openid.svg diff --git a/pages/_includes/icons/brands/opera.svg b/svg/brands/opera.svg similarity index 100% rename from pages/_includes/icons/brands/opera.svg rename to svg/brands/opera.svg diff --git a/pages/_includes/icons/brands/optin-monster.svg b/svg/brands/optin-monster.svg similarity index 100% rename from pages/_includes/icons/brands/optin-monster.svg rename to svg/brands/optin-monster.svg diff --git a/pages/_includes/icons/brands/osi.svg b/svg/brands/osi.svg similarity index 100% rename from pages/_includes/icons/brands/osi.svg rename to svg/brands/osi.svg diff --git a/pages/_includes/icons/brands/page4.svg b/svg/brands/page4.svg similarity index 100% rename from pages/_includes/icons/brands/page4.svg rename to svg/brands/page4.svg diff --git a/pages/_includes/icons/brands/pagelines.svg b/svg/brands/pagelines.svg similarity index 100% rename from pages/_includes/icons/brands/pagelines.svg rename to svg/brands/pagelines.svg diff --git a/pages/_includes/icons/brands/palfed.svg b/svg/brands/palfed.svg similarity index 100% rename from pages/_includes/icons/brands/palfed.svg rename to svg/brands/palfed.svg diff --git a/pages/_includes/icons/brands/patreon.svg b/svg/brands/patreon.svg similarity index 100% rename from pages/_includes/icons/brands/patreon.svg rename to svg/brands/patreon.svg diff --git a/pages/_includes/icons/brands/paypal.svg b/svg/brands/paypal.svg similarity index 100% rename from pages/_includes/icons/brands/paypal.svg rename to svg/brands/paypal.svg diff --git a/pages/_includes/icons/brands/penny-arcade.svg b/svg/brands/penny-arcade.svg similarity index 100% rename from pages/_includes/icons/brands/penny-arcade.svg rename to svg/brands/penny-arcade.svg diff --git a/pages/_includes/icons/brands/periscope.svg b/svg/brands/periscope.svg similarity index 100% rename from pages/_includes/icons/brands/periscope.svg rename to svg/brands/periscope.svg diff --git a/pages/_includes/icons/brands/phabricator.svg b/svg/brands/phabricator.svg similarity index 100% rename from pages/_includes/icons/brands/phabricator.svg rename to svg/brands/phabricator.svg diff --git a/pages/_includes/icons/brands/phoenix-framework.svg b/svg/brands/phoenix-framework.svg similarity index 100% rename from pages/_includes/icons/brands/phoenix-framework.svg rename to svg/brands/phoenix-framework.svg diff --git a/pages/_includes/icons/brands/phoenix-squadron.svg b/svg/brands/phoenix-squadron.svg similarity index 100% rename from pages/_includes/icons/brands/phoenix-squadron.svg rename to svg/brands/phoenix-squadron.svg diff --git a/pages/_includes/icons/brands/php.svg b/svg/brands/php.svg similarity index 100% rename from pages/_includes/icons/brands/php.svg rename to svg/brands/php.svg diff --git a/pages/_includes/icons/brands/pied-piper-alt.svg b/svg/brands/pied-piper-alt.svg similarity index 100% rename from pages/_includes/icons/brands/pied-piper-alt.svg rename to svg/brands/pied-piper-alt.svg diff --git a/pages/_includes/icons/brands/pied-piper-hat.svg b/svg/brands/pied-piper-hat.svg similarity index 100% rename from pages/_includes/icons/brands/pied-piper-hat.svg rename to svg/brands/pied-piper-hat.svg diff --git a/pages/_includes/icons/brands/pied-piper-pp.svg b/svg/brands/pied-piper-pp.svg similarity index 100% rename from pages/_includes/icons/brands/pied-piper-pp.svg rename to svg/brands/pied-piper-pp.svg diff --git a/pages/_includes/icons/brands/pied-piper.svg b/svg/brands/pied-piper.svg similarity index 100% rename from pages/_includes/icons/brands/pied-piper.svg rename to svg/brands/pied-piper.svg diff --git a/pages/_includes/icons/brands/pinterest-p.svg b/svg/brands/pinterest-p.svg similarity index 100% rename from pages/_includes/icons/brands/pinterest-p.svg rename to svg/brands/pinterest-p.svg diff --git a/pages/_includes/icons/brands/pinterest-square.svg b/svg/brands/pinterest-square.svg similarity index 100% rename from pages/_includes/icons/brands/pinterest-square.svg rename to svg/brands/pinterest-square.svg diff --git a/pages/_includes/icons/brands/pinterest.svg b/svg/brands/pinterest.svg similarity index 100% rename from pages/_includes/icons/brands/pinterest.svg rename to svg/brands/pinterest.svg diff --git a/pages/_includes/icons/brands/playstation.svg b/svg/brands/playstation.svg similarity index 100% rename from pages/_includes/icons/brands/playstation.svg rename to svg/brands/playstation.svg diff --git a/pages/_includes/icons/brands/product-hunt.svg b/svg/brands/product-hunt.svg similarity index 100% rename from pages/_includes/icons/brands/product-hunt.svg rename to svg/brands/product-hunt.svg diff --git a/pages/_includes/icons/brands/pushed.svg b/svg/brands/pushed.svg similarity index 100% rename from pages/_includes/icons/brands/pushed.svg rename to svg/brands/pushed.svg diff --git a/pages/_includes/icons/brands/python.svg b/svg/brands/python.svg similarity index 100% rename from pages/_includes/icons/brands/python.svg rename to svg/brands/python.svg diff --git a/pages/_includes/icons/brands/qq.svg b/svg/brands/qq.svg similarity index 100% rename from pages/_includes/icons/brands/qq.svg rename to svg/brands/qq.svg diff --git a/pages/_includes/icons/brands/quinscape.svg b/svg/brands/quinscape.svg similarity index 100% rename from pages/_includes/icons/brands/quinscape.svg rename to svg/brands/quinscape.svg diff --git a/pages/_includes/icons/brands/quora.svg b/svg/brands/quora.svg similarity index 100% rename from pages/_includes/icons/brands/quora.svg rename to svg/brands/quora.svg diff --git a/pages/_includes/icons/brands/r-project.svg b/svg/brands/r-project.svg similarity index 100% rename from pages/_includes/icons/brands/r-project.svg rename to svg/brands/r-project.svg diff --git a/pages/_includes/icons/brands/raspberry-pi.svg b/svg/brands/raspberry-pi.svg similarity index 100% rename from pages/_includes/icons/brands/raspberry-pi.svg rename to svg/brands/raspberry-pi.svg diff --git a/pages/_includes/icons/brands/ravelry.svg b/svg/brands/ravelry.svg similarity index 100% rename from pages/_includes/icons/brands/ravelry.svg rename to svg/brands/ravelry.svg diff --git a/pages/_includes/icons/brands/react.svg b/svg/brands/react.svg similarity index 100% rename from pages/_includes/icons/brands/react.svg rename to svg/brands/react.svg diff --git a/pages/_includes/icons/brands/reacteurope.svg b/svg/brands/reacteurope.svg similarity index 100% rename from pages/_includes/icons/brands/reacteurope.svg rename to svg/brands/reacteurope.svg diff --git a/pages/_includes/icons/brands/readme.svg b/svg/brands/readme.svg similarity index 100% rename from pages/_includes/icons/brands/readme.svg rename to svg/brands/readme.svg diff --git a/pages/_includes/icons/brands/rebel.svg b/svg/brands/rebel.svg similarity index 100% rename from pages/_includes/icons/brands/rebel.svg rename to svg/brands/rebel.svg diff --git a/pages/_includes/icons/brands/red-river.svg b/svg/brands/red-river.svg similarity index 100% rename from pages/_includes/icons/brands/red-river.svg rename to svg/brands/red-river.svg diff --git a/pages/_includes/icons/brands/reddit-alien.svg b/svg/brands/reddit-alien.svg similarity index 100% rename from pages/_includes/icons/brands/reddit-alien.svg rename to svg/brands/reddit-alien.svg diff --git a/pages/_includes/icons/brands/reddit-square.svg b/svg/brands/reddit-square.svg similarity index 100% rename from pages/_includes/icons/brands/reddit-square.svg rename to svg/brands/reddit-square.svg diff --git a/pages/_includes/icons/brands/reddit.svg b/svg/brands/reddit.svg similarity index 100% rename from pages/_includes/icons/brands/reddit.svg rename to svg/brands/reddit.svg diff --git a/pages/_includes/icons/brands/redhat.svg b/svg/brands/redhat.svg similarity index 100% rename from pages/_includes/icons/brands/redhat.svg rename to svg/brands/redhat.svg diff --git a/pages/_includes/icons/brands/renren.svg b/svg/brands/renren.svg similarity index 100% rename from pages/_includes/icons/brands/renren.svg rename to svg/brands/renren.svg diff --git a/pages/_includes/icons/brands/replyd.svg b/svg/brands/replyd.svg similarity index 100% rename from pages/_includes/icons/brands/replyd.svg rename to svg/brands/replyd.svg diff --git a/pages/_includes/icons/brands/researchgate.svg b/svg/brands/researchgate.svg similarity index 100% rename from pages/_includes/icons/brands/researchgate.svg rename to svg/brands/researchgate.svg diff --git a/pages/_includes/icons/brands/resolving.svg b/svg/brands/resolving.svg similarity index 100% rename from pages/_includes/icons/brands/resolving.svg rename to svg/brands/resolving.svg diff --git a/pages/_includes/icons/brands/rev.svg b/svg/brands/rev.svg similarity index 100% rename from pages/_includes/icons/brands/rev.svg rename to svg/brands/rev.svg diff --git a/pages/_includes/icons/brands/rocketchat.svg b/svg/brands/rocketchat.svg similarity index 100% rename from pages/_includes/icons/brands/rocketchat.svg rename to svg/brands/rocketchat.svg diff --git a/pages/_includes/icons/brands/rockrms.svg b/svg/brands/rockrms.svg similarity index 100% rename from pages/_includes/icons/brands/rockrms.svg rename to svg/brands/rockrms.svg diff --git a/pages/_includes/icons/brands/safari.svg b/svg/brands/safari.svg similarity index 100% rename from pages/_includes/icons/brands/safari.svg rename to svg/brands/safari.svg diff --git a/pages/_includes/icons/brands/sass.svg b/svg/brands/sass.svg similarity index 100% rename from pages/_includes/icons/brands/sass.svg rename to svg/brands/sass.svg diff --git a/pages/_includes/icons/brands/schlix.svg b/svg/brands/schlix.svg similarity index 100% rename from pages/_includes/icons/brands/schlix.svg rename to svg/brands/schlix.svg diff --git a/pages/_includes/icons/brands/scribd.svg b/svg/brands/scribd.svg similarity index 100% rename from pages/_includes/icons/brands/scribd.svg rename to svg/brands/scribd.svg diff --git a/pages/_includes/icons/brands/searchengin.svg b/svg/brands/searchengin.svg similarity index 100% rename from pages/_includes/icons/brands/searchengin.svg rename to svg/brands/searchengin.svg diff --git a/pages/_includes/icons/brands/sellcast.svg b/svg/brands/sellcast.svg similarity index 100% rename from pages/_includes/icons/brands/sellcast.svg rename to svg/brands/sellcast.svg diff --git a/pages/_includes/icons/brands/sellsy.svg b/svg/brands/sellsy.svg similarity index 100% rename from pages/_includes/icons/brands/sellsy.svg rename to svg/brands/sellsy.svg diff --git a/pages/_includes/icons/brands/servicestack.svg b/svg/brands/servicestack.svg similarity index 100% rename from pages/_includes/icons/brands/servicestack.svg rename to svg/brands/servicestack.svg diff --git a/pages/_includes/icons/brands/shirtsinbulk.svg b/svg/brands/shirtsinbulk.svg similarity index 100% rename from pages/_includes/icons/brands/shirtsinbulk.svg rename to svg/brands/shirtsinbulk.svg diff --git a/pages/_includes/icons/brands/shopware.svg b/svg/brands/shopware.svg similarity index 100% rename from pages/_includes/icons/brands/shopware.svg rename to svg/brands/shopware.svg diff --git a/pages/_includes/icons/brands/simplybuilt.svg b/svg/brands/simplybuilt.svg similarity index 100% rename from pages/_includes/icons/brands/simplybuilt.svg rename to svg/brands/simplybuilt.svg diff --git a/pages/_includes/icons/brands/sistrix.svg b/svg/brands/sistrix.svg similarity index 100% rename from pages/_includes/icons/brands/sistrix.svg rename to svg/brands/sistrix.svg diff --git a/pages/_includes/icons/brands/sith.svg b/svg/brands/sith.svg similarity index 100% rename from pages/_includes/icons/brands/sith.svg rename to svg/brands/sith.svg diff --git a/pages/_includes/icons/brands/sketch.svg b/svg/brands/sketch.svg similarity index 100% rename from pages/_includes/icons/brands/sketch.svg rename to svg/brands/sketch.svg diff --git a/pages/_includes/icons/brands/skyatlas.svg b/svg/brands/skyatlas.svg similarity index 100% rename from pages/_includes/icons/brands/skyatlas.svg rename to svg/brands/skyatlas.svg diff --git a/pages/_includes/icons/brands/skype.svg b/svg/brands/skype.svg similarity index 100% rename from pages/_includes/icons/brands/skype.svg rename to svg/brands/skype.svg diff --git a/pages/_includes/icons/brands/slack-hash.svg b/svg/brands/slack-hash.svg similarity index 100% rename from pages/_includes/icons/brands/slack-hash.svg rename to svg/brands/slack-hash.svg diff --git a/pages/_includes/icons/brands/slack.svg b/svg/brands/slack.svg similarity index 100% rename from pages/_includes/icons/brands/slack.svg rename to svg/brands/slack.svg diff --git a/pages/_includes/icons/brands/slideshare.svg b/svg/brands/slideshare.svg similarity index 100% rename from pages/_includes/icons/brands/slideshare.svg rename to svg/brands/slideshare.svg diff --git a/pages/_includes/icons/brands/snapchat-ghost.svg b/svg/brands/snapchat-ghost.svg similarity index 100% rename from pages/_includes/icons/brands/snapchat-ghost.svg rename to svg/brands/snapchat-ghost.svg diff --git a/pages/_includes/icons/brands/snapchat-square.svg b/svg/brands/snapchat-square.svg similarity index 100% rename from pages/_includes/icons/brands/snapchat-square.svg rename to svg/brands/snapchat-square.svg diff --git a/pages/_includes/icons/brands/snapchat.svg b/svg/brands/snapchat.svg similarity index 100% rename from pages/_includes/icons/brands/snapchat.svg rename to svg/brands/snapchat.svg diff --git a/pages/_includes/icons/brands/soundcloud.svg b/svg/brands/soundcloud.svg similarity index 100% rename from pages/_includes/icons/brands/soundcloud.svg rename to svg/brands/soundcloud.svg diff --git a/pages/_includes/icons/brands/sourcetree.svg b/svg/brands/sourcetree.svg similarity index 100% rename from pages/_includes/icons/brands/sourcetree.svg rename to svg/brands/sourcetree.svg diff --git a/pages/_includes/icons/brands/speakap.svg b/svg/brands/speakap.svg similarity index 100% rename from pages/_includes/icons/brands/speakap.svg rename to svg/brands/speakap.svg diff --git a/pages/_includes/icons/brands/spotify.svg b/svg/brands/spotify.svg similarity index 100% rename from pages/_includes/icons/brands/spotify.svg rename to svg/brands/spotify.svg diff --git a/pages/_includes/icons/brands/squarespace.svg b/svg/brands/squarespace.svg similarity index 100% rename from pages/_includes/icons/brands/squarespace.svg rename to svg/brands/squarespace.svg diff --git a/pages/_includes/icons/brands/stack-exchange.svg b/svg/brands/stack-exchange.svg similarity index 100% rename from pages/_includes/icons/brands/stack-exchange.svg rename to svg/brands/stack-exchange.svg diff --git a/pages/_includes/icons/brands/stack-overflow.svg b/svg/brands/stack-overflow.svg similarity index 100% rename from pages/_includes/icons/brands/stack-overflow.svg rename to svg/brands/stack-overflow.svg diff --git a/pages/_includes/icons/brands/staylinked.svg b/svg/brands/staylinked.svg similarity index 100% rename from pages/_includes/icons/brands/staylinked.svg rename to svg/brands/staylinked.svg diff --git a/pages/_includes/icons/brands/steam-square.svg b/svg/brands/steam-square.svg similarity index 100% rename from pages/_includes/icons/brands/steam-square.svg rename to svg/brands/steam-square.svg diff --git a/pages/_includes/icons/brands/steam-symbol.svg b/svg/brands/steam-symbol.svg similarity index 100% rename from pages/_includes/icons/brands/steam-symbol.svg rename to svg/brands/steam-symbol.svg diff --git a/pages/_includes/icons/brands/steam.svg b/svg/brands/steam.svg similarity index 100% rename from pages/_includes/icons/brands/steam.svg rename to svg/brands/steam.svg diff --git a/pages/_includes/icons/brands/sticker-mule.svg b/svg/brands/sticker-mule.svg similarity index 100% rename from pages/_includes/icons/brands/sticker-mule.svg rename to svg/brands/sticker-mule.svg diff --git a/pages/_includes/icons/brands/strava.svg b/svg/brands/strava.svg similarity index 100% rename from pages/_includes/icons/brands/strava.svg rename to svg/brands/strava.svg diff --git a/pages/_includes/icons/brands/stripe-s.svg b/svg/brands/stripe-s.svg similarity index 100% rename from pages/_includes/icons/brands/stripe-s.svg rename to svg/brands/stripe-s.svg diff --git a/pages/_includes/icons/brands/stripe.svg b/svg/brands/stripe.svg similarity index 100% rename from pages/_includes/icons/brands/stripe.svg rename to svg/brands/stripe.svg diff --git a/pages/_includes/icons/brands/studiovinari.svg b/svg/brands/studiovinari.svg similarity index 100% rename from pages/_includes/icons/brands/studiovinari.svg rename to svg/brands/studiovinari.svg diff --git a/pages/_includes/icons/brands/stumbleupon-circle.svg b/svg/brands/stumbleupon-circle.svg similarity index 100% rename from pages/_includes/icons/brands/stumbleupon-circle.svg rename to svg/brands/stumbleupon-circle.svg diff --git a/pages/_includes/icons/brands/stumbleupon.svg b/svg/brands/stumbleupon.svg similarity index 100% rename from pages/_includes/icons/brands/stumbleupon.svg rename to svg/brands/stumbleupon.svg diff --git a/pages/_includes/icons/brands/superpowers.svg b/svg/brands/superpowers.svg similarity index 100% rename from pages/_includes/icons/brands/superpowers.svg rename to svg/brands/superpowers.svg diff --git a/pages/_includes/icons/brands/supple.svg b/svg/brands/supple.svg similarity index 100% rename from pages/_includes/icons/brands/supple.svg rename to svg/brands/supple.svg diff --git a/pages/_includes/icons/brands/suse.svg b/svg/brands/suse.svg similarity index 100% rename from pages/_includes/icons/brands/suse.svg rename to svg/brands/suse.svg diff --git a/pages/_includes/icons/brands/teamspeak.svg b/svg/brands/teamspeak.svg similarity index 100% rename from pages/_includes/icons/brands/teamspeak.svg rename to svg/brands/teamspeak.svg diff --git a/pages/_includes/icons/brands/telegram-plane.svg b/svg/brands/telegram-plane.svg similarity index 100% rename from pages/_includes/icons/brands/telegram-plane.svg rename to svg/brands/telegram-plane.svg diff --git a/pages/_includes/icons/brands/telegram.svg b/svg/brands/telegram.svg similarity index 100% rename from pages/_includes/icons/brands/telegram.svg rename to svg/brands/telegram.svg diff --git a/pages/_includes/icons/brands/tencent-weibo.svg b/svg/brands/tencent-weibo.svg similarity index 100% rename from pages/_includes/icons/brands/tencent-weibo.svg rename to svg/brands/tencent-weibo.svg diff --git a/pages/_includes/icons/brands/the-red-yeti.svg b/svg/brands/the-red-yeti.svg similarity index 100% rename from pages/_includes/icons/brands/the-red-yeti.svg rename to svg/brands/the-red-yeti.svg diff --git a/pages/_includes/icons/brands/themeco.svg b/svg/brands/themeco.svg similarity index 100% rename from pages/_includes/icons/brands/themeco.svg rename to svg/brands/themeco.svg diff --git a/pages/_includes/icons/brands/themeisle.svg b/svg/brands/themeisle.svg similarity index 100% rename from pages/_includes/icons/brands/themeisle.svg rename to svg/brands/themeisle.svg diff --git a/pages/_includes/icons/brands/think-peaks.svg b/svg/brands/think-peaks.svg similarity index 100% rename from pages/_includes/icons/brands/think-peaks.svg rename to svg/brands/think-peaks.svg diff --git a/pages/_includes/icons/brands/trade-federation.svg b/svg/brands/trade-federation.svg similarity index 100% rename from pages/_includes/icons/brands/trade-federation.svg rename to svg/brands/trade-federation.svg diff --git a/pages/_includes/icons/brands/trello.svg b/svg/brands/trello.svg similarity index 100% rename from pages/_includes/icons/brands/trello.svg rename to svg/brands/trello.svg diff --git a/pages/_includes/icons/brands/tripadvisor.svg b/svg/brands/tripadvisor.svg similarity index 100% rename from pages/_includes/icons/brands/tripadvisor.svg rename to svg/brands/tripadvisor.svg diff --git a/pages/_includes/icons/brands/tumblr-square.svg b/svg/brands/tumblr-square.svg similarity index 100% rename from pages/_includes/icons/brands/tumblr-square.svg rename to svg/brands/tumblr-square.svg diff --git a/pages/_includes/icons/brands/tumblr.svg b/svg/brands/tumblr.svg similarity index 100% rename from pages/_includes/icons/brands/tumblr.svg rename to svg/brands/tumblr.svg diff --git a/pages/_includes/icons/brands/twitch.svg b/svg/brands/twitch.svg similarity index 100% rename from pages/_includes/icons/brands/twitch.svg rename to svg/brands/twitch.svg diff --git a/pages/_includes/icons/brands/twitter-square.svg b/svg/brands/twitter-square.svg similarity index 100% rename from pages/_includes/icons/brands/twitter-square.svg rename to svg/brands/twitter-square.svg diff --git a/pages/_includes/icons/brands/twitter.svg b/svg/brands/twitter.svg similarity index 100% rename from pages/_includes/icons/brands/twitter.svg rename to svg/brands/twitter.svg diff --git a/pages/_includes/icons/brands/typo3.svg b/svg/brands/typo3.svg similarity index 100% rename from pages/_includes/icons/brands/typo3.svg rename to svg/brands/typo3.svg diff --git a/pages/_includes/icons/brands/uber.svg b/svg/brands/uber.svg similarity index 100% rename from pages/_includes/icons/brands/uber.svg rename to svg/brands/uber.svg diff --git a/pages/_includes/icons/brands/ubuntu.svg b/svg/brands/ubuntu.svg similarity index 100% rename from pages/_includes/icons/brands/ubuntu.svg rename to svg/brands/ubuntu.svg diff --git a/pages/_includes/icons/brands/uikit.svg b/svg/brands/uikit.svg similarity index 100% rename from pages/_includes/icons/brands/uikit.svg rename to svg/brands/uikit.svg diff --git a/pages/_includes/icons/brands/uniregistry.svg b/svg/brands/uniregistry.svg similarity index 100% rename from pages/_includes/icons/brands/uniregistry.svg rename to svg/brands/uniregistry.svg diff --git a/pages/_includes/icons/brands/untappd.svg b/svg/brands/untappd.svg similarity index 100% rename from pages/_includes/icons/brands/untappd.svg rename to svg/brands/untappd.svg diff --git a/pages/_includes/icons/brands/ups.svg b/svg/brands/ups.svg similarity index 100% rename from pages/_includes/icons/brands/ups.svg rename to svg/brands/ups.svg diff --git a/pages/_includes/icons/brands/usb.svg b/svg/brands/usb.svg similarity index 100% rename from pages/_includes/icons/brands/usb.svg rename to svg/brands/usb.svg diff --git a/pages/_includes/icons/brands/usps.svg b/svg/brands/usps.svg similarity index 100% rename from pages/_includes/icons/brands/usps.svg rename to svg/brands/usps.svg diff --git a/pages/_includes/icons/brands/ussunnah.svg b/svg/brands/ussunnah.svg similarity index 100% rename from pages/_includes/icons/brands/ussunnah.svg rename to svg/brands/ussunnah.svg diff --git a/pages/_includes/icons/brands/vaadin.svg b/svg/brands/vaadin.svg similarity index 100% rename from pages/_includes/icons/brands/vaadin.svg rename to svg/brands/vaadin.svg diff --git a/pages/_includes/icons/brands/viacoin.svg b/svg/brands/viacoin.svg similarity index 100% rename from pages/_includes/icons/brands/viacoin.svg rename to svg/brands/viacoin.svg diff --git a/pages/_includes/icons/brands/viadeo-square.svg b/svg/brands/viadeo-square.svg similarity index 100% rename from pages/_includes/icons/brands/viadeo-square.svg rename to svg/brands/viadeo-square.svg diff --git a/pages/_includes/icons/brands/viadeo.svg b/svg/brands/viadeo.svg similarity index 100% rename from pages/_includes/icons/brands/viadeo.svg rename to svg/brands/viadeo.svg diff --git a/pages/_includes/icons/brands/viber.svg b/svg/brands/viber.svg similarity index 100% rename from pages/_includes/icons/brands/viber.svg rename to svg/brands/viber.svg diff --git a/pages/_includes/icons/brands/vimeo-square.svg b/svg/brands/vimeo-square.svg similarity index 100% rename from pages/_includes/icons/brands/vimeo-square.svg rename to svg/brands/vimeo-square.svg diff --git a/pages/_includes/icons/brands/vimeo-v.svg b/svg/brands/vimeo-v.svg similarity index 100% rename from pages/_includes/icons/brands/vimeo-v.svg rename to svg/brands/vimeo-v.svg diff --git a/pages/_includes/icons/brands/vimeo.svg b/svg/brands/vimeo.svg similarity index 100% rename from pages/_includes/icons/brands/vimeo.svg rename to svg/brands/vimeo.svg diff --git a/pages/_includes/icons/brands/vine.svg b/svg/brands/vine.svg similarity index 100% rename from pages/_includes/icons/brands/vine.svg rename to svg/brands/vine.svg diff --git a/pages/_includes/icons/brands/vk.svg b/svg/brands/vk.svg similarity index 100% rename from pages/_includes/icons/brands/vk.svg rename to svg/brands/vk.svg diff --git a/pages/_includes/icons/brands/vnv.svg b/svg/brands/vnv.svg similarity index 100% rename from pages/_includes/icons/brands/vnv.svg rename to svg/brands/vnv.svg diff --git a/pages/_includes/icons/brands/vuejs.svg b/svg/brands/vuejs.svg similarity index 100% rename from pages/_includes/icons/brands/vuejs.svg rename to svg/brands/vuejs.svg diff --git a/pages/_includes/icons/brands/weebly.svg b/svg/brands/weebly.svg similarity index 100% rename from pages/_includes/icons/brands/weebly.svg rename to svg/brands/weebly.svg diff --git a/pages/_includes/icons/brands/weibo.svg b/svg/brands/weibo.svg similarity index 100% rename from pages/_includes/icons/brands/weibo.svg rename to svg/brands/weibo.svg diff --git a/pages/_includes/icons/brands/weixin.svg b/svg/brands/weixin.svg similarity index 100% rename from pages/_includes/icons/brands/weixin.svg rename to svg/brands/weixin.svg diff --git a/pages/_includes/icons/brands/whatsapp-square.svg b/svg/brands/whatsapp-square.svg similarity index 100% rename from pages/_includes/icons/brands/whatsapp-square.svg rename to svg/brands/whatsapp-square.svg diff --git a/pages/_includes/icons/brands/whatsapp.svg b/svg/brands/whatsapp.svg similarity index 100% rename from pages/_includes/icons/brands/whatsapp.svg rename to svg/brands/whatsapp.svg diff --git a/pages/_includes/icons/brands/whmcs.svg b/svg/brands/whmcs.svg similarity index 100% rename from pages/_includes/icons/brands/whmcs.svg rename to svg/brands/whmcs.svg diff --git a/pages/_includes/icons/brands/wikipedia-w.svg b/svg/brands/wikipedia-w.svg similarity index 100% rename from pages/_includes/icons/brands/wikipedia-w.svg rename to svg/brands/wikipedia-w.svg diff --git a/pages/_includes/icons/brands/windows.svg b/svg/brands/windows.svg similarity index 100% rename from pages/_includes/icons/brands/windows.svg rename to svg/brands/windows.svg diff --git a/pages/_includes/icons/brands/wix.svg b/svg/brands/wix.svg similarity index 100% rename from pages/_includes/icons/brands/wix.svg rename to svg/brands/wix.svg diff --git a/pages/_includes/icons/brands/wizards-of-the-coast.svg b/svg/brands/wizards-of-the-coast.svg similarity index 100% rename from pages/_includes/icons/brands/wizards-of-the-coast.svg rename to svg/brands/wizards-of-the-coast.svg diff --git a/pages/_includes/icons/brands/wolf-pack-battalion.svg b/svg/brands/wolf-pack-battalion.svg similarity index 100% rename from pages/_includes/icons/brands/wolf-pack-battalion.svg rename to svg/brands/wolf-pack-battalion.svg diff --git a/pages/_includes/icons/brands/wordpress-simple.svg b/svg/brands/wordpress-simple.svg similarity index 100% rename from pages/_includes/icons/brands/wordpress-simple.svg rename to svg/brands/wordpress-simple.svg diff --git a/pages/_includes/icons/brands/wordpress.svg b/svg/brands/wordpress.svg similarity index 100% rename from pages/_includes/icons/brands/wordpress.svg rename to svg/brands/wordpress.svg diff --git a/pages/_includes/icons/brands/wpbeginner.svg b/svg/brands/wpbeginner.svg similarity index 100% rename from pages/_includes/icons/brands/wpbeginner.svg rename to svg/brands/wpbeginner.svg diff --git a/pages/_includes/icons/brands/wpexplorer.svg b/svg/brands/wpexplorer.svg similarity index 100% rename from pages/_includes/icons/brands/wpexplorer.svg rename to svg/brands/wpexplorer.svg diff --git a/pages/_includes/icons/brands/wpforms.svg b/svg/brands/wpforms.svg similarity index 100% rename from pages/_includes/icons/brands/wpforms.svg rename to svg/brands/wpforms.svg diff --git a/pages/_includes/icons/brands/wpressr.svg b/svg/brands/wpressr.svg similarity index 100% rename from pages/_includes/icons/brands/wpressr.svg rename to svg/brands/wpressr.svg diff --git a/pages/_includes/icons/brands/xbox.svg b/svg/brands/xbox.svg similarity index 100% rename from pages/_includes/icons/brands/xbox.svg rename to svg/brands/xbox.svg diff --git a/pages/_includes/icons/brands/xing-square.svg b/svg/brands/xing-square.svg similarity index 100% rename from pages/_includes/icons/brands/xing-square.svg rename to svg/brands/xing-square.svg diff --git a/pages/_includes/icons/brands/xing.svg b/svg/brands/xing.svg similarity index 100% rename from pages/_includes/icons/brands/xing.svg rename to svg/brands/xing.svg diff --git a/pages/_includes/icons/brands/y-combinator.svg b/svg/brands/y-combinator.svg similarity index 100% rename from pages/_includes/icons/brands/y-combinator.svg rename to svg/brands/y-combinator.svg diff --git a/pages/_includes/icons/brands/yahoo.svg b/svg/brands/yahoo.svg similarity index 100% rename from pages/_includes/icons/brands/yahoo.svg rename to svg/brands/yahoo.svg diff --git a/pages/_includes/icons/brands/yandex-international.svg b/svg/brands/yandex-international.svg similarity index 100% rename from pages/_includes/icons/brands/yandex-international.svg rename to svg/brands/yandex-international.svg diff --git a/pages/_includes/icons/brands/yandex.svg b/svg/brands/yandex.svg similarity index 100% rename from pages/_includes/icons/brands/yandex.svg rename to svg/brands/yandex.svg diff --git a/pages/_includes/icons/brands/yarn.svg b/svg/brands/yarn.svg similarity index 100% rename from pages/_includes/icons/brands/yarn.svg rename to svg/brands/yarn.svg diff --git a/pages/_includes/icons/brands/yelp.svg b/svg/brands/yelp.svg similarity index 100% rename from pages/_includes/icons/brands/yelp.svg rename to svg/brands/yelp.svg diff --git a/pages/_includes/icons/brands/yoast.svg b/svg/brands/yoast.svg similarity index 100% rename from pages/_includes/icons/brands/yoast.svg rename to svg/brands/yoast.svg diff --git a/pages/_includes/icons/brands/youtube-square.svg b/svg/brands/youtube-square.svg similarity index 100% rename from pages/_includes/icons/brands/youtube-square.svg rename to svg/brands/youtube-square.svg diff --git a/pages/_includes/icons/brands/youtube.svg b/svg/brands/youtube.svg similarity index 100% rename from pages/_includes/icons/brands/youtube.svg rename to svg/brands/youtube.svg diff --git a/pages/_includes/icons/brands/zhihu.svg b/svg/brands/zhihu.svg similarity index 100% rename from pages/_includes/icons/brands/zhihu.svg rename to svg/brands/zhihu.svg diff --git a/svg/feather/activity.svg b/svg/feather/activity.svg new file mode 100644 index 000000000..669a57a77 --- /dev/null +++ b/svg/feather/activity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/airplay.svg b/svg/feather/airplay.svg new file mode 100644 index 000000000..7ce730225 --- /dev/null +++ b/svg/feather/airplay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/alert-circle.svg b/svg/feather/alert-circle.svg new file mode 100644 index 000000000..6b41c0b95 --- /dev/null +++ b/svg/feather/alert-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/alert-octagon.svg b/svg/feather/alert-octagon.svg new file mode 100644 index 000000000..6943b6d02 --- /dev/null +++ b/svg/feather/alert-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/alert-triangle.svg b/svg/feather/alert-triangle.svg new file mode 100644 index 000000000..59e65b15b --- /dev/null +++ b/svg/feather/alert-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/align-center.svg b/svg/feather/align-center.svg new file mode 100644 index 000000000..5b8842ea7 --- /dev/null +++ b/svg/feather/align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/align-justify.svg b/svg/feather/align-justify.svg new file mode 100644 index 000000000..0539876ff --- /dev/null +++ b/svg/feather/align-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/align-left.svg b/svg/feather/align-left.svg new file mode 100644 index 000000000..9ac852a51 --- /dev/null +++ b/svg/feather/align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/align-right.svg b/svg/feather/align-right.svg new file mode 100644 index 000000000..ef139ffab --- /dev/null +++ b/svg/feather/align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/anchor.svg b/svg/feather/anchor.svg new file mode 100644 index 000000000..e01627a3d --- /dev/null +++ b/svg/feather/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/aperture.svg b/svg/feather/aperture.svg new file mode 100644 index 000000000..9936e8688 --- /dev/null +++ b/svg/feather/aperture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/archive.svg b/svg/feather/archive.svg new file mode 100644 index 000000000..428882c87 --- /dev/null +++ b/svg/feather/archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/arrow-down-circle.svg b/svg/feather/arrow-down-circle.svg new file mode 100644 index 000000000..3238091b9 --- /dev/null +++ b/svg/feather/arrow-down-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/arrow-down-left.svg b/svg/feather/arrow-down-left.svg new file mode 100644 index 000000000..724835842 --- /dev/null +++ b/svg/feather/arrow-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/arrow-down-right.svg b/svg/feather/arrow-down-right.svg new file mode 100644 index 000000000..81d9822ba --- /dev/null +++ b/svg/feather/arrow-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/arrow-down.svg b/svg/feather/arrow-down.svg new file mode 100644 index 000000000..4f84f627b --- /dev/null +++ b/svg/feather/arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/arrow-left-circle.svg b/svg/feather/arrow-left-circle.svg new file mode 100644 index 000000000..3b19ff8a5 --- /dev/null +++ b/svg/feather/arrow-left-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/arrow-left.svg b/svg/feather/arrow-left.svg new file mode 100644 index 000000000..a5058fc73 --- /dev/null +++ b/svg/feather/arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/arrow-right-circle.svg b/svg/feather/arrow-right-circle.svg new file mode 100644 index 000000000..ff01dd587 --- /dev/null +++ b/svg/feather/arrow-right-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/arrow-right.svg b/svg/feather/arrow-right.svg new file mode 100644 index 000000000..939b57c5b --- /dev/null +++ b/svg/feather/arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/arrow-up-circle.svg b/svg/feather/arrow-up-circle.svg new file mode 100644 index 000000000..044a75d39 --- /dev/null +++ b/svg/feather/arrow-up-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/arrow-up-left.svg b/svg/feather/arrow-up-left.svg new file mode 100644 index 000000000..cea55e87a --- /dev/null +++ b/svg/feather/arrow-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/arrow-up-right.svg b/svg/feather/arrow-up-right.svg new file mode 100644 index 000000000..95678e00b --- /dev/null +++ b/svg/feather/arrow-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/arrow-up.svg b/svg/feather/arrow-up.svg new file mode 100644 index 000000000..16b13aba8 --- /dev/null +++ b/svg/feather/arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/at-sign.svg b/svg/feather/at-sign.svg new file mode 100644 index 000000000..5a5e5d0d8 --- /dev/null +++ b/svg/feather/at-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/award.svg b/svg/feather/award.svg new file mode 100644 index 000000000..be70d5a13 --- /dev/null +++ b/svg/feather/award.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/bar-chart-2.svg b/svg/feather/bar-chart-2.svg new file mode 100644 index 000000000..864167a6c --- /dev/null +++ b/svg/feather/bar-chart-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/bar-chart.svg b/svg/feather/bar-chart.svg new file mode 100644 index 000000000..074d7c1a4 --- /dev/null +++ b/svg/feather/bar-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/battery-charging.svg b/svg/feather/battery-charging.svg new file mode 100644 index 000000000..644cb59cb --- /dev/null +++ b/svg/feather/battery-charging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/battery.svg b/svg/feather/battery.svg new file mode 100644 index 000000000..7fe87710b --- /dev/null +++ b/svg/feather/battery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/bell-off.svg b/svg/feather/bell-off.svg new file mode 100644 index 000000000..4b07c8480 --- /dev/null +++ b/svg/feather/bell-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/bell.svg b/svg/feather/bell.svg new file mode 100644 index 000000000..bba561c19 --- /dev/null +++ b/svg/feather/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/bluetooth.svg b/svg/feather/bluetooth.svg new file mode 100644 index 000000000..cebed7b18 --- /dev/null +++ b/svg/feather/bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/bold.svg b/svg/feather/bold.svg new file mode 100644 index 000000000..d1a4efd3a --- /dev/null +++ b/svg/feather/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/book-open.svg b/svg/feather/book-open.svg new file mode 100644 index 000000000..5e0ca0ab7 --- /dev/null +++ b/svg/feather/book-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/book.svg b/svg/feather/book.svg new file mode 100644 index 000000000..12ffcbc46 --- /dev/null +++ b/svg/feather/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/bookmark.svg b/svg/feather/bookmark.svg new file mode 100644 index 000000000..2239cc580 --- /dev/null +++ b/svg/feather/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/box.svg b/svg/feather/box.svg new file mode 100644 index 000000000..d89be30f5 --- /dev/null +++ b/svg/feather/box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/briefcase.svg b/svg/feather/briefcase.svg new file mode 100644 index 000000000..e3af05060 --- /dev/null +++ b/svg/feather/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/calendar.svg b/svg/feather/calendar.svg new file mode 100644 index 000000000..6c7fd870d --- /dev/null +++ b/svg/feather/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/camera-off.svg b/svg/feather/camera-off.svg new file mode 100644 index 000000000..daa3e25f0 --- /dev/null +++ b/svg/feather/camera-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/camera.svg b/svg/feather/camera.svg new file mode 100644 index 000000000..0e7f06037 --- /dev/null +++ b/svg/feather/camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/cast.svg b/svg/feather/cast.svg new file mode 100644 index 000000000..9e27cb487 --- /dev/null +++ b/svg/feather/cast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/check-circle.svg b/svg/feather/check-circle.svg new file mode 100644 index 000000000..f2f4fd1af --- /dev/null +++ b/svg/feather/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/check-square.svg b/svg/feather/check-square.svg new file mode 100644 index 000000000..72ab7a806 --- /dev/null +++ b/svg/feather/check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/check.svg b/svg/feather/check.svg new file mode 100644 index 000000000..1c209899d --- /dev/null +++ b/svg/feather/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/chevron-down.svg b/svg/feather/chevron-down.svg new file mode 100644 index 000000000..278c6a315 --- /dev/null +++ b/svg/feather/chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/chevron-left.svg b/svg/feather/chevron-left.svg new file mode 100644 index 000000000..747d46d90 --- /dev/null +++ b/svg/feather/chevron-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/chevron-right.svg b/svg/feather/chevron-right.svg new file mode 100644 index 000000000..258de414a --- /dev/null +++ b/svg/feather/chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/chevron-up.svg b/svg/feather/chevron-up.svg new file mode 100644 index 000000000..4eb5ecc33 --- /dev/null +++ b/svg/feather/chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/chevrons-down.svg b/svg/feather/chevrons-down.svg new file mode 100644 index 000000000..e67ef2fb0 --- /dev/null +++ b/svg/feather/chevrons-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/chevrons-left.svg b/svg/feather/chevrons-left.svg new file mode 100644 index 000000000..c32e39836 --- /dev/null +++ b/svg/feather/chevrons-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/chevrons-right.svg b/svg/feather/chevrons-right.svg new file mode 100644 index 000000000..f50681454 --- /dev/null +++ b/svg/feather/chevrons-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/chevrons-up.svg b/svg/feather/chevrons-up.svg new file mode 100644 index 000000000..0eaf5183a --- /dev/null +++ b/svg/feather/chevrons-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/chrome.svg b/svg/feather/chrome.svg new file mode 100644 index 000000000..9189815eb --- /dev/null +++ b/svg/feather/chrome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/circle.svg b/svg/feather/circle.svg new file mode 100644 index 000000000..b0090882b --- /dev/null +++ b/svg/feather/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/clipboard.svg b/svg/feather/clipboard.svg new file mode 100644 index 000000000..ccee454d8 --- /dev/null +++ b/svg/feather/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/clock.svg b/svg/feather/clock.svg new file mode 100644 index 000000000..ea3f5e507 --- /dev/null +++ b/svg/feather/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/cloud-drizzle.svg b/svg/feather/cloud-drizzle.svg new file mode 100644 index 000000000..13af6bb57 --- /dev/null +++ b/svg/feather/cloud-drizzle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/cloud-lightning.svg b/svg/feather/cloud-lightning.svg new file mode 100644 index 000000000..32d154cc0 --- /dev/null +++ b/svg/feather/cloud-lightning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/cloud-off.svg b/svg/feather/cloud-off.svg new file mode 100644 index 000000000..1e1e7d60b --- /dev/null +++ b/svg/feather/cloud-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/cloud-rain.svg b/svg/feather/cloud-rain.svg new file mode 100644 index 000000000..3e0b85b09 --- /dev/null +++ b/svg/feather/cloud-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/cloud-snow.svg b/svg/feather/cloud-snow.svg new file mode 100644 index 000000000..78e0008b4 --- /dev/null +++ b/svg/feather/cloud-snow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/cloud.svg b/svg/feather/cloud.svg new file mode 100644 index 000000000..0ee0c6322 --- /dev/null +++ b/svg/feather/cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/code.svg b/svg/feather/code.svg new file mode 100644 index 000000000..c4954b55a --- /dev/null +++ b/svg/feather/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/codepen.svg b/svg/feather/codepen.svg new file mode 100644 index 000000000..ab2a815aa --- /dev/null +++ b/svg/feather/codepen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/codesandbox.svg b/svg/feather/codesandbox.svg new file mode 100644 index 000000000..49848f520 --- /dev/null +++ b/svg/feather/codesandbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/coffee.svg b/svg/feather/coffee.svg new file mode 100644 index 000000000..32905e520 --- /dev/null +++ b/svg/feather/coffee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/columns.svg b/svg/feather/columns.svg new file mode 100644 index 000000000..d264b557b --- /dev/null +++ b/svg/feather/columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/command.svg b/svg/feather/command.svg new file mode 100644 index 000000000..93f554c34 --- /dev/null +++ b/svg/feather/command.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/compass.svg b/svg/feather/compass.svg new file mode 100644 index 000000000..329626080 --- /dev/null +++ b/svg/feather/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/copy.svg b/svg/feather/copy.svg new file mode 100644 index 000000000..4e0b09f19 --- /dev/null +++ b/svg/feather/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/corner-down-left.svg b/svg/feather/corner-down-left.svg new file mode 100644 index 000000000..9fffb3e9f --- /dev/null +++ b/svg/feather/corner-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/corner-down-right.svg b/svg/feather/corner-down-right.svg new file mode 100644 index 000000000..b27d408dd --- /dev/null +++ b/svg/feather/corner-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/corner-left-down.svg b/svg/feather/corner-left-down.svg new file mode 100644 index 000000000..24b8375c5 --- /dev/null +++ b/svg/feather/corner-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/corner-left-up.svg b/svg/feather/corner-left-up.svg new file mode 100644 index 000000000..e54527cd7 --- /dev/null +++ b/svg/feather/corner-left-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/corner-right-down.svg b/svg/feather/corner-right-down.svg new file mode 100644 index 000000000..a49e6d6c0 --- /dev/null +++ b/svg/feather/corner-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/corner-right-up.svg b/svg/feather/corner-right-up.svg new file mode 100644 index 000000000..a5c5dce55 --- /dev/null +++ b/svg/feather/corner-right-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/corner-up-left.svg b/svg/feather/corner-up-left.svg new file mode 100644 index 000000000..0a1ffd613 --- /dev/null +++ b/svg/feather/corner-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/corner-up-right.svg b/svg/feather/corner-up-right.svg new file mode 100644 index 000000000..0b8f961b7 --- /dev/null +++ b/svg/feather/corner-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/cpu.svg b/svg/feather/cpu.svg new file mode 100644 index 000000000..2ed16ef74 --- /dev/null +++ b/svg/feather/cpu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/credit-card.svg b/svg/feather/credit-card.svg new file mode 100644 index 000000000..1b7fd029d --- /dev/null +++ b/svg/feather/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/crop.svg b/svg/feather/crop.svg new file mode 100644 index 000000000..ffbfd0456 --- /dev/null +++ b/svg/feather/crop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/crosshair.svg b/svg/feather/crosshair.svg new file mode 100644 index 000000000..ba3940150 --- /dev/null +++ b/svg/feather/crosshair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/database.svg b/svg/feather/database.svg new file mode 100644 index 000000000..c296fbcfd --- /dev/null +++ b/svg/feather/database.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/delete.svg b/svg/feather/delete.svg new file mode 100644 index 000000000..8c6074b96 --- /dev/null +++ b/svg/feather/delete.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/disc.svg b/svg/feather/disc.svg new file mode 100644 index 000000000..2595b4446 --- /dev/null +++ b/svg/feather/disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/dollar-sign.svg b/svg/feather/dollar-sign.svg new file mode 100644 index 000000000..1a124d269 --- /dev/null +++ b/svg/feather/dollar-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/download-cloud.svg b/svg/feather/download-cloud.svg new file mode 100644 index 000000000..f3126fc39 --- /dev/null +++ b/svg/feather/download-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/download.svg b/svg/feather/download.svg new file mode 100644 index 000000000..76767a924 --- /dev/null +++ b/svg/feather/download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/droplet.svg b/svg/feather/droplet.svg new file mode 100644 index 000000000..ca093014e --- /dev/null +++ b/svg/feather/droplet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/edit-2.svg b/svg/feather/edit-2.svg new file mode 100644 index 000000000..06830c9d0 --- /dev/null +++ b/svg/feather/edit-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/edit-3.svg b/svg/feather/edit-3.svg new file mode 100644 index 000000000..d728efcc6 --- /dev/null +++ b/svg/feather/edit-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/edit.svg b/svg/feather/edit.svg new file mode 100644 index 000000000..ec7b4ca2d --- /dev/null +++ b/svg/feather/edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/external-link.svg b/svg/feather/external-link.svg new file mode 100644 index 000000000..6236df3e0 --- /dev/null +++ b/svg/feather/external-link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/eye-off.svg b/svg/feather/eye-off.svg new file mode 100644 index 000000000..77c54cb41 --- /dev/null +++ b/svg/feather/eye-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/eye.svg b/svg/feather/eye.svg new file mode 100644 index 000000000..9cde24372 --- /dev/null +++ b/svg/feather/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/facebook.svg b/svg/feather/facebook.svg new file mode 100644 index 000000000..2570f56a0 --- /dev/null +++ b/svg/feather/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/fast-forward.svg b/svg/feather/fast-forward.svg new file mode 100644 index 000000000..fa39877aa --- /dev/null +++ b/svg/feather/fast-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/feather.svg b/svg/feather/feather.svg new file mode 100644 index 000000000..ac3b868db --- /dev/null +++ b/svg/feather/feather.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/figma.svg b/svg/feather/figma.svg new file mode 100644 index 000000000..66fd21783 --- /dev/null +++ b/svg/feather/figma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/file-minus.svg b/svg/feather/file-minus.svg new file mode 100644 index 000000000..345756ef1 --- /dev/null +++ b/svg/feather/file-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/file-plus.svg b/svg/feather/file-plus.svg new file mode 100644 index 000000000..eed120047 --- /dev/null +++ b/svg/feather/file-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/file-text.svg b/svg/feather/file-text.svg new file mode 100644 index 000000000..4197ddd40 --- /dev/null +++ b/svg/feather/file-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/file.svg b/svg/feather/file.svg new file mode 100644 index 000000000..378519ab6 --- /dev/null +++ b/svg/feather/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/film.svg b/svg/feather/film.svg new file mode 100644 index 000000000..ac46360d2 --- /dev/null +++ b/svg/feather/film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/filter.svg b/svg/feather/filter.svg new file mode 100644 index 000000000..38a47e043 --- /dev/null +++ b/svg/feather/filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/flag.svg b/svg/feather/flag.svg new file mode 100644 index 000000000..037737cb6 --- /dev/null +++ b/svg/feather/flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/folder-minus.svg b/svg/feather/folder-minus.svg new file mode 100644 index 000000000..d5b7af65f --- /dev/null +++ b/svg/feather/folder-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/folder-plus.svg b/svg/feather/folder-plus.svg new file mode 100644 index 000000000..898f2fc98 --- /dev/null +++ b/svg/feather/folder-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/folder.svg b/svg/feather/folder.svg new file mode 100644 index 000000000..134458b98 --- /dev/null +++ b/svg/feather/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/frown.svg b/svg/feather/frown.svg new file mode 100644 index 000000000..f3122547d --- /dev/null +++ b/svg/feather/frown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/gift.svg b/svg/feather/gift.svg new file mode 100644 index 000000000..d2c14bd69 --- /dev/null +++ b/svg/feather/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/git-branch.svg b/svg/feather/git-branch.svg new file mode 100644 index 000000000..440037264 --- /dev/null +++ b/svg/feather/git-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/git-commit.svg b/svg/feather/git-commit.svg new file mode 100644 index 000000000..e959d725a --- /dev/null +++ b/svg/feather/git-commit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/git-merge.svg b/svg/feather/git-merge.svg new file mode 100644 index 000000000..c65fffddc --- /dev/null +++ b/svg/feather/git-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/git-pull-request.svg b/svg/feather/git-pull-request.svg new file mode 100644 index 000000000..fc80bdfd5 --- /dev/null +++ b/svg/feather/git-pull-request.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/github.svg b/svg/feather/github.svg new file mode 100644 index 000000000..ff0af4811 --- /dev/null +++ b/svg/feather/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/gitlab.svg b/svg/feather/gitlab.svg new file mode 100644 index 000000000..85d54a1ea --- /dev/null +++ b/svg/feather/gitlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/globe.svg b/svg/feather/globe.svg new file mode 100644 index 000000000..0a0586d36 --- /dev/null +++ b/svg/feather/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/grid.svg b/svg/feather/grid.svg new file mode 100644 index 000000000..8ef2e9d87 --- /dev/null +++ b/svg/feather/grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/hard-drive.svg b/svg/feather/hard-drive.svg new file mode 100644 index 000000000..c08131d69 --- /dev/null +++ b/svg/feather/hard-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/hash.svg b/svg/feather/hash.svg new file mode 100644 index 000000000..c9c8d41f6 --- /dev/null +++ b/svg/feather/hash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/headphones.svg b/svg/feather/headphones.svg new file mode 100644 index 000000000..fd8915b48 --- /dev/null +++ b/svg/feather/headphones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/heart.svg b/svg/feather/heart.svg new file mode 100644 index 000000000..a083b7e2a --- /dev/null +++ b/svg/feather/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/help-circle.svg b/svg/feather/help-circle.svg new file mode 100644 index 000000000..c9cd11a81 --- /dev/null +++ b/svg/feather/help-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/hexagon.svg b/svg/feather/hexagon.svg new file mode 100644 index 000000000..eae7f2559 --- /dev/null +++ b/svg/feather/hexagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/home.svg b/svg/feather/home.svg new file mode 100644 index 000000000..7bb31b23d --- /dev/null +++ b/svg/feather/home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/image.svg b/svg/feather/image.svg new file mode 100644 index 000000000..a7d84b98c --- /dev/null +++ b/svg/feather/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/inbox.svg b/svg/feather/inbox.svg new file mode 100644 index 000000000..03a13b4e4 --- /dev/null +++ b/svg/feather/inbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/info.svg b/svg/feather/info.svg new file mode 100644 index 000000000..332616d80 --- /dev/null +++ b/svg/feather/info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/instagram.svg b/svg/feather/instagram.svg new file mode 100644 index 000000000..c0a956289 --- /dev/null +++ b/svg/feather/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/italic.svg b/svg/feather/italic.svg new file mode 100644 index 000000000..a123d371a --- /dev/null +++ b/svg/feather/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/key.svg b/svg/feather/key.svg new file mode 100644 index 000000000..e778e74eb --- /dev/null +++ b/svg/feather/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/layers.svg b/svg/feather/layers.svg new file mode 100644 index 000000000..ea788c226 --- /dev/null +++ b/svg/feather/layers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/layout.svg b/svg/feather/layout.svg new file mode 100644 index 000000000..28743d928 --- /dev/null +++ b/svg/feather/layout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/life-buoy.svg b/svg/feather/life-buoy.svg new file mode 100644 index 000000000..54c2bd7dd --- /dev/null +++ b/svg/feather/life-buoy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/link-2.svg b/svg/feather/link-2.svg new file mode 100644 index 000000000..8cc7f6dda --- /dev/null +++ b/svg/feather/link-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/link.svg b/svg/feather/link.svg new file mode 100644 index 000000000..c89dd41c2 --- /dev/null +++ b/svg/feather/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/linkedin.svg b/svg/feather/linkedin.svg new file mode 100644 index 000000000..395310945 --- /dev/null +++ b/svg/feather/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/list.svg b/svg/feather/list.svg new file mode 100644 index 000000000..e7344989f --- /dev/null +++ b/svg/feather/list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/loader.svg b/svg/feather/loader.svg new file mode 100644 index 000000000..e1a70c127 --- /dev/null +++ b/svg/feather/loader.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/lock.svg b/svg/feather/lock.svg new file mode 100644 index 000000000..de09d9db3 --- /dev/null +++ b/svg/feather/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/log-in.svg b/svg/feather/log-in.svg new file mode 100644 index 000000000..ba0da59a1 --- /dev/null +++ b/svg/feather/log-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/log-out.svg b/svg/feather/log-out.svg new file mode 100644 index 000000000..c9002c903 --- /dev/null +++ b/svg/feather/log-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/mail.svg b/svg/feather/mail.svg new file mode 100644 index 000000000..2af169e83 --- /dev/null +++ b/svg/feather/mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/map-pin.svg b/svg/feather/map-pin.svg new file mode 100644 index 000000000..d5548e92c --- /dev/null +++ b/svg/feather/map-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/map.svg b/svg/feather/map.svg new file mode 100644 index 000000000..ecebd7bf7 --- /dev/null +++ b/svg/feather/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/maximize-2.svg b/svg/feather/maximize-2.svg new file mode 100644 index 000000000..e41fc0b73 --- /dev/null +++ b/svg/feather/maximize-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/maximize.svg b/svg/feather/maximize.svg new file mode 100644 index 000000000..fc3051894 --- /dev/null +++ b/svg/feather/maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/meh.svg b/svg/feather/meh.svg new file mode 100644 index 000000000..6f57fff24 --- /dev/null +++ b/svg/feather/meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/menu.svg b/svg/feather/menu.svg new file mode 100644 index 000000000..e8a84a952 --- /dev/null +++ b/svg/feather/menu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/message-circle.svg b/svg/feather/message-circle.svg new file mode 100644 index 000000000..4b21b32b6 --- /dev/null +++ b/svg/feather/message-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/message-square.svg b/svg/feather/message-square.svg new file mode 100644 index 000000000..6a2e4e596 --- /dev/null +++ b/svg/feather/message-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/mic-off.svg b/svg/feather/mic-off.svg new file mode 100644 index 000000000..0786219cb --- /dev/null +++ b/svg/feather/mic-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/mic.svg b/svg/feather/mic.svg new file mode 100644 index 000000000..dc5f780ce --- /dev/null +++ b/svg/feather/mic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/minimize-2.svg b/svg/feather/minimize-2.svg new file mode 100644 index 000000000..a720fa6c3 --- /dev/null +++ b/svg/feather/minimize-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/minimize.svg b/svg/feather/minimize.svg new file mode 100644 index 000000000..46d611969 --- /dev/null +++ b/svg/feather/minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/minus-circle.svg b/svg/feather/minus-circle.svg new file mode 100644 index 000000000..80c0de1e1 --- /dev/null +++ b/svg/feather/minus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/minus-square.svg b/svg/feather/minus-square.svg new file mode 100644 index 000000000..4862832a8 --- /dev/null +++ b/svg/feather/minus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/minus.svg b/svg/feather/minus.svg new file mode 100644 index 000000000..93cc73401 --- /dev/null +++ b/svg/feather/minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/monitor.svg b/svg/feather/monitor.svg new file mode 100644 index 000000000..6c3556db2 --- /dev/null +++ b/svg/feather/monitor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/moon.svg b/svg/feather/moon.svg new file mode 100644 index 000000000..dbf7c6cf5 --- /dev/null +++ b/svg/feather/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/more-horizontal.svg b/svg/feather/more-horizontal.svg new file mode 100644 index 000000000..dc6a85564 --- /dev/null +++ b/svg/feather/more-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/more-vertical.svg b/svg/feather/more-vertical.svg new file mode 100644 index 000000000..cba6958f2 --- /dev/null +++ b/svg/feather/more-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/mouse-pointer.svg b/svg/feather/mouse-pointer.svg new file mode 100644 index 000000000..f5af55916 --- /dev/null +++ b/svg/feather/mouse-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/move.svg b/svg/feather/move.svg new file mode 100644 index 000000000..4e251b562 --- /dev/null +++ b/svg/feather/move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/music.svg b/svg/feather/music.svg new file mode 100644 index 000000000..7bee2f7e1 --- /dev/null +++ b/svg/feather/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/navigation-2.svg b/svg/feather/navigation-2.svg new file mode 100644 index 000000000..ae31db96b --- /dev/null +++ b/svg/feather/navigation-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/navigation.svg b/svg/feather/navigation.svg new file mode 100644 index 000000000..f600a4145 --- /dev/null +++ b/svg/feather/navigation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/octagon.svg b/svg/feather/octagon.svg new file mode 100644 index 000000000..124c5483d --- /dev/null +++ b/svg/feather/octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/package.svg b/svg/feather/package.svg new file mode 100644 index 000000000..f1e09eec0 --- /dev/null +++ b/svg/feather/package.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/paperclip.svg b/svg/feather/paperclip.svg new file mode 100644 index 000000000..b1f69b7a7 --- /dev/null +++ b/svg/feather/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/pause-circle.svg b/svg/feather/pause-circle.svg new file mode 100644 index 000000000..f6b1a8dfd --- /dev/null +++ b/svg/feather/pause-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/pause.svg b/svg/feather/pause.svg new file mode 100644 index 000000000..4e78038de --- /dev/null +++ b/svg/feather/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/pen-tool.svg b/svg/feather/pen-tool.svg new file mode 100644 index 000000000..0d26fa1e5 --- /dev/null +++ b/svg/feather/pen-tool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/percent.svg b/svg/feather/percent.svg new file mode 100644 index 000000000..2cb9719da --- /dev/null +++ b/svg/feather/percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/phone-call.svg b/svg/feather/phone-call.svg new file mode 100644 index 000000000..8b8666026 --- /dev/null +++ b/svg/feather/phone-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/phone-forwarded.svg b/svg/feather/phone-forwarded.svg new file mode 100644 index 000000000..aa21befcb --- /dev/null +++ b/svg/feather/phone-forwarded.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/phone-incoming.svg b/svg/feather/phone-incoming.svg new file mode 100644 index 000000000..b2d523a87 --- /dev/null +++ b/svg/feather/phone-incoming.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/phone-missed.svg b/svg/feather/phone-missed.svg new file mode 100644 index 000000000..4950f09fa --- /dev/null +++ b/svg/feather/phone-missed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/phone-off.svg b/svg/feather/phone-off.svg new file mode 100644 index 000000000..4d00fb3d5 --- /dev/null +++ b/svg/feather/phone-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/phone-outgoing.svg b/svg/feather/phone-outgoing.svg new file mode 100644 index 000000000..fea27a37d --- /dev/null +++ b/svg/feather/phone-outgoing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/phone.svg b/svg/feather/phone.svg new file mode 100644 index 000000000..2a35154a9 --- /dev/null +++ b/svg/feather/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/pie-chart.svg b/svg/feather/pie-chart.svg new file mode 100644 index 000000000..b5bbe67c2 --- /dev/null +++ b/svg/feather/pie-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/play-circle.svg b/svg/feather/play-circle.svg new file mode 100644 index 000000000..8766dc7bf --- /dev/null +++ b/svg/feather/play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/play.svg b/svg/feather/play.svg new file mode 100644 index 000000000..fd76e30d6 --- /dev/null +++ b/svg/feather/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/plus-circle.svg b/svg/feather/plus-circle.svg new file mode 100644 index 000000000..4291ff052 --- /dev/null +++ b/svg/feather/plus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/plus-square.svg b/svg/feather/plus-square.svg new file mode 100644 index 000000000..c380e24bd --- /dev/null +++ b/svg/feather/plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/plus.svg b/svg/feather/plus.svg new file mode 100644 index 000000000..703c5b7b2 --- /dev/null +++ b/svg/feather/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/pocket.svg b/svg/feather/pocket.svg new file mode 100644 index 000000000..a3b256190 --- /dev/null +++ b/svg/feather/pocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/power.svg b/svg/feather/power.svg new file mode 100644 index 000000000..598308fce --- /dev/null +++ b/svg/feather/power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/printer.svg b/svg/feather/printer.svg new file mode 100644 index 000000000..8a9a7ace1 --- /dev/null +++ b/svg/feather/printer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/radio.svg b/svg/feather/radio.svg new file mode 100644 index 000000000..5abfcd13c --- /dev/null +++ b/svg/feather/radio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/refresh-ccw.svg b/svg/feather/refresh-ccw.svg new file mode 100644 index 000000000..10cff0eca --- /dev/null +++ b/svg/feather/refresh-ccw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/refresh-cw.svg b/svg/feather/refresh-cw.svg new file mode 100644 index 000000000..06c358dd0 --- /dev/null +++ b/svg/feather/refresh-cw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/repeat.svg b/svg/feather/repeat.svg new file mode 100644 index 000000000..c7657b08e --- /dev/null +++ b/svg/feather/repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/rewind.svg b/svg/feather/rewind.svg new file mode 100644 index 000000000..7b0fa3d55 --- /dev/null +++ b/svg/feather/rewind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/rotate-ccw.svg b/svg/feather/rotate-ccw.svg new file mode 100644 index 000000000..ade5dc426 --- /dev/null +++ b/svg/feather/rotate-ccw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/rotate-cw.svg b/svg/feather/rotate-cw.svg new file mode 100644 index 000000000..83dca3514 --- /dev/null +++ b/svg/feather/rotate-cw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/rss.svg b/svg/feather/rss.svg new file mode 100644 index 000000000..c9a136845 --- /dev/null +++ b/svg/feather/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/save.svg b/svg/feather/save.svg new file mode 100644 index 000000000..46c72990d --- /dev/null +++ b/svg/feather/save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/scissors.svg b/svg/feather/scissors.svg new file mode 100644 index 000000000..fd0647ff6 --- /dev/null +++ b/svg/feather/scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/search.svg b/svg/feather/search.svg new file mode 100644 index 000000000..8710306dd --- /dev/null +++ b/svg/feather/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/send.svg b/svg/feather/send.svg new file mode 100644 index 000000000..42ef2a243 --- /dev/null +++ b/svg/feather/send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/server.svg b/svg/feather/server.svg new file mode 100644 index 000000000..d1f6d4870 --- /dev/null +++ b/svg/feather/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/settings.svg b/svg/feather/settings.svg new file mode 100644 index 000000000..19c27265a --- /dev/null +++ b/svg/feather/settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/share-2.svg b/svg/feather/share-2.svg new file mode 100644 index 000000000..09b1c7bcd --- /dev/null +++ b/svg/feather/share-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/share.svg b/svg/feather/share.svg new file mode 100644 index 000000000..df38c14d6 --- /dev/null +++ b/svg/feather/share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/shield-off.svg b/svg/feather/shield-off.svg new file mode 100644 index 000000000..18692ddd8 --- /dev/null +++ b/svg/feather/shield-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/shield.svg b/svg/feather/shield.svg new file mode 100644 index 000000000..c7c484137 --- /dev/null +++ b/svg/feather/shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/shopping-bag.svg b/svg/feather/shopping-bag.svg new file mode 100644 index 000000000..eaa39e815 --- /dev/null +++ b/svg/feather/shopping-bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/shopping-cart.svg b/svg/feather/shopping-cart.svg new file mode 100644 index 000000000..17a40bf47 --- /dev/null +++ b/svg/feather/shopping-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/shuffle.svg b/svg/feather/shuffle.svg new file mode 100644 index 000000000..8cfb5db5d --- /dev/null +++ b/svg/feather/shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/sidebar.svg b/svg/feather/sidebar.svg new file mode 100644 index 000000000..8ba817e6f --- /dev/null +++ b/svg/feather/sidebar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/skip-back.svg b/svg/feather/skip-back.svg new file mode 100644 index 000000000..88d024e2f --- /dev/null +++ b/svg/feather/skip-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/skip-forward.svg b/svg/feather/skip-forward.svg new file mode 100644 index 000000000..f3fdac3ae --- /dev/null +++ b/svg/feather/skip-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/slack.svg b/svg/feather/slack.svg new file mode 100644 index 000000000..5d973466b --- /dev/null +++ b/svg/feather/slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/slash.svg b/svg/feather/slash.svg new file mode 100644 index 000000000..f4131b85f --- /dev/null +++ b/svg/feather/slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/sliders.svg b/svg/feather/sliders.svg new file mode 100644 index 000000000..19c938521 --- /dev/null +++ b/svg/feather/sliders.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/smartphone.svg b/svg/feather/smartphone.svg new file mode 100644 index 000000000..f7d5ba8eb --- /dev/null +++ b/svg/feather/smartphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/smile.svg b/svg/feather/smile.svg new file mode 100644 index 000000000..24dc8a26e --- /dev/null +++ b/svg/feather/smile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/speaker.svg b/svg/feather/speaker.svg new file mode 100644 index 000000000..8e7ffdaf5 --- /dev/null +++ b/svg/feather/speaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/square.svg b/svg/feather/square.svg new file mode 100644 index 000000000..6eabc77db --- /dev/null +++ b/svg/feather/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/star.svg b/svg/feather/star.svg new file mode 100644 index 000000000..bcdc31aa4 --- /dev/null +++ b/svg/feather/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/stop-circle.svg b/svg/feather/stop-circle.svg new file mode 100644 index 000000000..c10d9d47a --- /dev/null +++ b/svg/feather/stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/sun.svg b/svg/feather/sun.svg new file mode 100644 index 000000000..7f51b94d1 --- /dev/null +++ b/svg/feather/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/sunrise.svg b/svg/feather/sunrise.svg new file mode 100644 index 000000000..eff4b1e48 --- /dev/null +++ b/svg/feather/sunrise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/sunset.svg b/svg/feather/sunset.svg new file mode 100644 index 000000000..a5a222154 --- /dev/null +++ b/svg/feather/sunset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/tablet.svg b/svg/feather/tablet.svg new file mode 100644 index 000000000..76f584949 --- /dev/null +++ b/svg/feather/tablet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/tag.svg b/svg/feather/tag.svg new file mode 100644 index 000000000..b5e495cbb --- /dev/null +++ b/svg/feather/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/target.svg b/svg/feather/target.svg new file mode 100644 index 000000000..be84b17c8 --- /dev/null +++ b/svg/feather/target.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/terminal.svg b/svg/feather/terminal.svg new file mode 100644 index 000000000..af459c04e --- /dev/null +++ b/svg/feather/terminal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/thermometer.svg b/svg/feather/thermometer.svg new file mode 100644 index 000000000..33142cccc --- /dev/null +++ b/svg/feather/thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/thumbs-down.svg b/svg/feather/thumbs-down.svg new file mode 100644 index 000000000..3e7bcd6d9 --- /dev/null +++ b/svg/feather/thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/thumbs-up.svg b/svg/feather/thumbs-up.svg new file mode 100644 index 000000000..226c44d85 --- /dev/null +++ b/svg/feather/thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/toggle-left.svg b/svg/feather/toggle-left.svg new file mode 100644 index 000000000..240be290b --- /dev/null +++ b/svg/feather/toggle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/toggle-right.svg b/svg/feather/toggle-right.svg new file mode 100644 index 000000000..fc6e81c19 --- /dev/null +++ b/svg/feather/toggle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/trash-2.svg b/svg/feather/trash-2.svg new file mode 100644 index 000000000..f24d55bf6 --- /dev/null +++ b/svg/feather/trash-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/trash.svg b/svg/feather/trash.svg new file mode 100644 index 000000000..55650bd44 --- /dev/null +++ b/svg/feather/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/trello.svg b/svg/feather/trello.svg new file mode 100644 index 000000000..b2f599b64 --- /dev/null +++ b/svg/feather/trello.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/trending-down.svg b/svg/feather/trending-down.svg new file mode 100644 index 000000000..a9d4cfa54 --- /dev/null +++ b/svg/feather/trending-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/trending-up.svg b/svg/feather/trending-up.svg new file mode 100644 index 000000000..52026a4df --- /dev/null +++ b/svg/feather/trending-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/triangle.svg b/svg/feather/triangle.svg new file mode 100644 index 000000000..274b65284 --- /dev/null +++ b/svg/feather/triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/truck.svg b/svg/feather/truck.svg new file mode 100644 index 000000000..33898373e --- /dev/null +++ b/svg/feather/truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/tv.svg b/svg/feather/tv.svg new file mode 100644 index 000000000..955bbfff0 --- /dev/null +++ b/svg/feather/tv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/twitter.svg b/svg/feather/twitter.svg new file mode 100644 index 000000000..f8886eca8 --- /dev/null +++ b/svg/feather/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/type.svg b/svg/feather/type.svg new file mode 100644 index 000000000..c6b2de334 --- /dev/null +++ b/svg/feather/type.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/umbrella.svg b/svg/feather/umbrella.svg new file mode 100644 index 000000000..dc77c0cb0 --- /dev/null +++ b/svg/feather/umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/underline.svg b/svg/feather/underline.svg new file mode 100644 index 000000000..044945d4a --- /dev/null +++ b/svg/feather/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/unlock.svg b/svg/feather/unlock.svg new file mode 100644 index 000000000..01dc35973 --- /dev/null +++ b/svg/feather/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/upload-cloud.svg b/svg/feather/upload-cloud.svg new file mode 100644 index 000000000..a1db297c5 --- /dev/null +++ b/svg/feather/upload-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/upload.svg b/svg/feather/upload.svg new file mode 100644 index 000000000..91eaff755 --- /dev/null +++ b/svg/feather/upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/user-check.svg b/svg/feather/user-check.svg new file mode 100644 index 000000000..42f91b29d --- /dev/null +++ b/svg/feather/user-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/user-minus.svg b/svg/feather/user-minus.svg new file mode 100644 index 000000000..44b75f5a9 --- /dev/null +++ b/svg/feather/user-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/user-plus.svg b/svg/feather/user-plus.svg new file mode 100644 index 000000000..21460f6ec --- /dev/null +++ b/svg/feather/user-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/user-x.svg b/svg/feather/user-x.svg new file mode 100644 index 000000000..0c41a4819 --- /dev/null +++ b/svg/feather/user-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/user.svg b/svg/feather/user.svg new file mode 100644 index 000000000..7bb5f2911 --- /dev/null +++ b/svg/feather/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/users.svg b/svg/feather/users.svg new file mode 100644 index 000000000..aacf6b08e --- /dev/null +++ b/svg/feather/users.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/video-off.svg b/svg/feather/video-off.svg new file mode 100644 index 000000000..08ec69738 --- /dev/null +++ b/svg/feather/video-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/video.svg b/svg/feather/video.svg new file mode 100644 index 000000000..8ff156aa9 --- /dev/null +++ b/svg/feather/video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/voicemail.svg b/svg/feather/voicemail.svg new file mode 100644 index 000000000..5d78a8e79 --- /dev/null +++ b/svg/feather/voicemail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/volume-1.svg b/svg/feather/volume-1.svg new file mode 100644 index 000000000..150e875fc --- /dev/null +++ b/svg/feather/volume-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/volume-2.svg b/svg/feather/volume-2.svg new file mode 100644 index 000000000..03d521c7e --- /dev/null +++ b/svg/feather/volume-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/volume-x.svg b/svg/feather/volume-x.svg new file mode 100644 index 000000000..be4424069 --- /dev/null +++ b/svg/feather/volume-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/volume.svg b/svg/feather/volume.svg new file mode 100644 index 000000000..53bfe15ee --- /dev/null +++ b/svg/feather/volume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/watch.svg b/svg/feather/watch.svg new file mode 100644 index 000000000..a1099da33 --- /dev/null +++ b/svg/feather/watch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/wifi-off.svg b/svg/feather/wifi-off.svg new file mode 100644 index 000000000..79430c3c2 --- /dev/null +++ b/svg/feather/wifi-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/wifi.svg b/svg/feather/wifi.svg new file mode 100644 index 000000000..2e1a7fda4 --- /dev/null +++ b/svg/feather/wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/wind.svg b/svg/feather/wind.svg new file mode 100644 index 000000000..82b364681 --- /dev/null +++ b/svg/feather/wind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/x-circle.svg b/svg/feather/x-circle.svg new file mode 100644 index 000000000..94aad5e56 --- /dev/null +++ b/svg/feather/x-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/x-octagon.svg b/svg/feather/x-octagon.svg new file mode 100644 index 000000000..85431985d --- /dev/null +++ b/svg/feather/x-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/x-square.svg b/svg/feather/x-square.svg new file mode 100644 index 000000000..7677c3871 --- /dev/null +++ b/svg/feather/x-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/x.svg b/svg/feather/x.svg new file mode 100644 index 000000000..7d5875ca8 --- /dev/null +++ b/svg/feather/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/youtube.svg b/svg/feather/youtube.svg new file mode 100644 index 000000000..c48243850 --- /dev/null +++ b/svg/feather/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/zap-off.svg b/svg/feather/zap-off.svg new file mode 100644 index 000000000..c636f8bbd --- /dev/null +++ b/svg/feather/zap-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/zap.svg b/svg/feather/zap.svg new file mode 100644 index 000000000..8fdafa934 --- /dev/null +++ b/svg/feather/zap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/zoom-in.svg b/svg/feather/zoom-in.svg new file mode 100644 index 000000000..da4572d27 --- /dev/null +++ b/svg/feather/zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/svg/feather/zoom-out.svg b/svg/feather/zoom-out.svg new file mode 100644 index 000000000..fd678d728 --- /dev/null +++ b/svg/feather/zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file