From 6090c696ace991b799f5bb965a9f3e1e5cbaa42d Mon Sep 17 00:00:00 2001 From: Marko Semet Date: Thu, 28 Mar 2019 19:33:31 +0100 Subject: [PATCH 01/12] Init page --- .gitignore | 1 + pelicanconf.py | 35 +++++++++++++++++++++++++++++++++++ publishconf.py | 25 +++++++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 .gitignore create mode 100644 pelicanconf.py create mode 100644 publishconf.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a979ee7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/venv \ No newline at end of file diff --git a/pelicanconf.py b/pelicanconf.py new file mode 100644 index 0000000..38398b4 --- /dev/null +++ b/pelicanconf.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- # +from __future__ import unicode_literals + +AUTHOR = 'Marko Semet' +SITENAME = 'Marko10_000' +SITEURL = '' + +PATH = 'content' + +TIMEZONE = 'Europe/Berlin' + +DEFAULT_LANG = 'de' + +# Feed generation is usually not desired when developing +FEED_ALL_ATOM = None +CATEGORY_FEED_ATOM = None +TRANSLATION_FEED_ATOM = None +AUTHOR_FEED_ATOM = None +AUTHOR_FEED_RSS = None + +# Blogroll +LINKS = (('Pelican', 'http://getpelican.com/'), + ('Python.org', 'http://python.org/'), + ('Jinja2', 'http://jinja.pocoo.org/'), + ('You can modify those links in your config file', '#'),) + +# Social widget +SOCIAL = (('You can add links in your config file', '#'), + ('Another social link', '#'),) + +DEFAULT_PAGINATION = False + +# Uncomment following line if you want document-relative URLs when developing +#RELATIVE_URLS = True \ No newline at end of file diff --git a/publishconf.py b/publishconf.py new file mode 100644 index 0000000..185184d --- /dev/null +++ b/publishconf.py @@ -0,0 +1,25 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- # +from __future__ import unicode_literals + +# This file is only used if you use `make publish` or +# explicitly specify it as your config file. + +import os +import sys +sys.path.append(os.curdir) +from pelicanconf import * + +# If your site is available via HTTPS, make sure SITEURL begins with https:// +SITEURL = '' +RELATIVE_URLS = False + +FEED_ALL_ATOM = 'feeds/all.atom.xml' +CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml' + +DELETE_OUTPUT_DIRECTORY = True + +# Following items are often useful when publishing + +#DISQUS_SITENAME = "" +#GOOGLE_ANALYTICS = "" \ No newline at end of file From adb21ffe5c9f8c3daf34db56fecceba815cfb014 Mon Sep 17 00:00:00 2001 From: Marko Semet Date: Sat, 11 May 2019 13:48:58 +0200 Subject: [PATCH 02/12] Fix config --- .gitignore | 4 +++- pelicanconf.py | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a979ee7..3469edc 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -/venv \ No newline at end of file +/venv +/output +*.pyc diff --git a/pelicanconf.py b/pelicanconf.py index 38398b4..4ab85f4 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -5,6 +5,7 @@ from __future__ import unicode_literals AUTHOR = 'Marko Semet' SITENAME = 'Marko10_000' SITEURL = '' +THEME = "./theme" PATH = 'content' @@ -32,4 +33,4 @@ SOCIAL = (('You can add links in your config file', '#'), DEFAULT_PAGINATION = False # Uncomment following line if you want document-relative URLs when developing -#RELATIVE_URLS = True \ No newline at end of file +RELATIVE_URLS = True From df8c30f5b4f481e1c3de87e6db1b07cde243f26a Mon Sep 17 00:00:00 2001 From: Marko Semet Date: Sat, 11 May 2019 13:49:33 +0200 Subject: [PATCH 03/12] Generator script --- gen.sh | 27 +++++++++++++++++++++++++++ tools/cssfix.py | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100755 gen.sh create mode 100755 tools/cssfix.py diff --git a/gen.sh b/gen.sh new file mode 100755 index 0000000..8eaac81 --- /dev/null +++ b/gen.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +# Install updates +pip3 install --upgrade --user pip && +pip3 install --upgrade --user pelican markdown htmlmin && + +# Clean and generate +(rm -rf output || true) && +python3 -c "import pelican; pelican.main()" content && + +# Optimize +tools/cssfix.py output/theme/css/* && +( + for i in `find output -wholename "*.html"` + do + htmlmin -c -s "$i" "$i" || exit 1 + done +) && + +# Compress +( + for i in `find output -wholename "*.css" -or -wholename "*.js" -or -wholename "*.html"` + do + (gzip --best --keep "$i" && brotli --best --keep "$i") || + (echo ERROR in file $i; exit 1) || exit 1 + done +) diff --git a/tools/cssfix.py b/tools/cssfix.py new file mode 100755 index 0000000..c987bf9 --- /dev/null +++ b/tools/cssfix.py @@ -0,0 +1,33 @@ +#!/usr/bin/env python3 + +if __name__ == '__main__': + # Install cssutils + import subprocess + + subprocess.check_call(("pip", "install", "--upgrade", "--user", "cssutils")) + + # Run tool + import base64 + import cssutils + import cssutils.scripts + import mimetypes + import os + import sys + + for i in sys.argv[1:]: + file = cssutils.parseFile(i) + + # Inline urls + def urlInlineFunction(url): + tmp = os.path.join(os.path.split(i)[0], url) + try: + urlType = mimetypes.guess_type(tmp)[0] + return (b"data:" + urlType.encode() + b";base64," + base64.encodebytes(open(tmp, "rb").read()).replace(b"\n", b"")).decode() + except Exception as e: + print("Can't use file: " + repr(url)) + print(e) + return url + cssutils.replaceUrls(file, urlInlineFunction, True) + + with open(i, "wb") as tmp: + tmp.write(cssutils.scripts.csscombine(path=i, cssText=file.cssText, minify=True)) From 76fcfbd4477c44b2549dc8e1c62ab764e548d6d5 Mon Sep 17 00:00:00 2001 From: Marko Semet Date: Sat, 11 May 2019 13:50:39 +0200 Subject: [PATCH 04/12] Start theme --- theme/static/css/light.css | 17 ++++++++ theme/static/css/main.css | 23 +++++++++++ theme/templates/base.html | 69 +++++++++++++++++++++++++++++++++ theme/templates/index.html | 23 +++++++++++ theme/templates/pagination.html | 7 ++++ 5 files changed, 139 insertions(+) create mode 100644 theme/static/css/light.css create mode 100644 theme/static/css/main.css create mode 100644 theme/templates/base.html create mode 100644 theme/templates/index.html create mode 100644 theme/templates/pagination.html diff --git a/theme/static/css/light.css b/theme/static/css/light.css new file mode 100644 index 0000000..de9dcd0 --- /dev/null +++ b/theme/static/css/light.css @@ -0,0 +1,17 @@ +/* Main colors */ +body { + color: #110; +} + +body > * { + background: #110; + color: #EEF; +} + +.main1 { + background: #DDE; + color: #110; +} +.main2 { + background: #FFF; +} diff --git a/theme/static/css/main.css b/theme/static/css/main.css new file mode 100644 index 0000000..24bb954 --- /dev/null +++ b/theme/static/css/main.css @@ -0,0 +1,23 @@ +/* Main structure */ +html, body { + margin: 0; + padding: 0; + border: 0; + height: 100%; +} + +body { + display: grid; + grid-template-rows: auto 1fr auto; +} + +body > * { + padding: 0 10%; +} + +.main2 { + height: 100%; +} +.main3 { + display: inline-block; +} diff --git a/theme/templates/base.html b/theme/templates/base.html new file mode 100644 index 0000000..8734a6a --- /dev/null +++ b/theme/templates/base.html @@ -0,0 +1,69 @@ + + + + {% block head %} + {% block title %}{{ SITENAME }}{% endblock title %} + + {% if FEED_ALL_ATOM %} + + {% endif %} + {% if FEED_ALL_RSS %} + + {% endif %} + {% if FEED_ATOM %} + + {% endif %} + {% if FEED_RSS %} + + {% endif %} + {% if CATEGORY_FEED_ATOM and category %} + + {% endif %} + {% if CATEGORY_FEED_RSS and category %} + + {% endif %} + {% if TAG_FEED_ATOM and tag %} + + {% endif %} + {% if TAG_FEED_RSS and tag %} + + {% endif %} + {% endblock head %} + + + + +
+

{{ SITENAME }} {{ SITESUBTITLE }}

+ +
+
+
+
{% block content %}{% endblock %}
+
+
+ + + diff --git a/theme/templates/index.html b/theme/templates/index.html new file mode 100644 index 0000000..2cf9118 --- /dev/null +++ b/theme/templates/index.html @@ -0,0 +1,23 @@ +{% extends "base.html" %} +{% block content %} +
+ {% block content_title %}
Alle Artikel
{% endblock content_title %} +
    + {% for article in articles_page.object_list %} +
  • + +
  • + {% endfor %} +
+ {% if articles_page.has_other_pages() %} + {% include 'pagination.html' %} + {% endif %} +
+{% endblock content %} diff --git a/theme/templates/pagination.html b/theme/templates/pagination.html new file mode 100644 index 0000000..942806b --- /dev/null +++ b/theme/templates/pagination.html @@ -0,0 +1,7 @@ +{% if DEFAULT_PAGINATION %} +

{% if articles_page.has_previous() %} + «{% endif %} + Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}{% if articles_page.has_next() %} + »{% endif %} +

+{% endif %} From 988e0bb5903b54dfe2195e7fdfcddc09e247b2c5 Mon Sep 17 00:00:00 2001 From: Marko Semet Date: Sat, 11 May 2019 13:51:20 +0200 Subject: [PATCH 05/12] Add feather icon theme as resource --- theme/resources/feather/activity.svg | 1 + theme/resources/feather/airplay.svg | 1 + theme/resources/feather/alert-circle.svg | 1 + theme/resources/feather/alert-octagon.svg | 1 + theme/resources/feather/alert-triangle.svg | 1 + theme/resources/feather/align-center.svg | 1 + theme/resources/feather/align-justify.svg | 1 + theme/resources/feather/align-left.svg | 1 + theme/resources/feather/align-right.svg | 1 + theme/resources/feather/anchor.svg | 1 + theme/resources/feather/aperture.svg | 1 + theme/resources/feather/archive.svg | 1 + theme/resources/feather/arrow-down-circle.svg | 1 + theme/resources/feather/arrow-down-left.svg | 1 + theme/resources/feather/arrow-down-right.svg | 1 + theme/resources/feather/arrow-down.svg | 1 + theme/resources/feather/arrow-left-circle.svg | 1 + theme/resources/feather/arrow-left.svg | 1 + theme/resources/feather/arrow-right-circle.svg | 1 + theme/resources/feather/arrow-right.svg | 1 + theme/resources/feather/arrow-up-circle.svg | 1 + theme/resources/feather/arrow-up-left.svg | 1 + theme/resources/feather/arrow-up-right.svg | 1 + theme/resources/feather/arrow-up.svg | 1 + theme/resources/feather/at-sign.svg | 1 + theme/resources/feather/award.svg | 1 + theme/resources/feather/bar-chart-2.svg | 1 + theme/resources/feather/bar-chart.svg | 1 + theme/resources/feather/battery-charging.svg | 1 + theme/resources/feather/battery.svg | 1 + theme/resources/feather/bell-off.svg | 1 + theme/resources/feather/bell.svg | 1 + theme/resources/feather/bluetooth.svg | 1 + theme/resources/feather/bold.svg | 1 + theme/resources/feather/book-open.svg | 1 + theme/resources/feather/book.svg | 1 + theme/resources/feather/bookmark.svg | 1 + theme/resources/feather/box.svg | 1 + theme/resources/feather/briefcase.svg | 1 + theme/resources/feather/calendar.svg | 1 + theme/resources/feather/camera-off.svg | 1 + theme/resources/feather/camera.svg | 1 + theme/resources/feather/cast.svg | 1 + theme/resources/feather/check-circle.svg | 1 + theme/resources/feather/check-square.svg | 1 + theme/resources/feather/check.svg | 1 + theme/resources/feather/chevron-down.svg | 1 + theme/resources/feather/chevron-left.svg | 1 + theme/resources/feather/chevron-right.svg | 1 + theme/resources/feather/chevron-up.svg | 1 + theme/resources/feather/chevrons-down.svg | 1 + theme/resources/feather/chevrons-left.svg | 1 + theme/resources/feather/chevrons-right.svg | 1 + theme/resources/feather/chevrons-up.svg | 1 + theme/resources/feather/chrome.svg | 1 + theme/resources/feather/circle.svg | 1 + theme/resources/feather/clipboard.svg | 1 + theme/resources/feather/clock.svg | 1 + theme/resources/feather/cloud-drizzle.svg | 1 + theme/resources/feather/cloud-lightning.svg | 1 + theme/resources/feather/cloud-off.svg | 1 + theme/resources/feather/cloud-rain.svg | 1 + theme/resources/feather/cloud-snow.svg | 1 + theme/resources/feather/cloud.svg | 1 + theme/resources/feather/code.svg | 1 + theme/resources/feather/codepen.svg | 1 + theme/resources/feather/codesandbox.svg | 1 + theme/resources/feather/coffee.svg | 1 + theme/resources/feather/columns.svg | 1 + theme/resources/feather/command.svg | 1 + theme/resources/feather/compass.svg | 1 + theme/resources/feather/copy.svg | 1 + theme/resources/feather/corner-down-left.svg | 1 + theme/resources/feather/corner-down-right.svg | 1 + theme/resources/feather/corner-left-down.svg | 1 + theme/resources/feather/corner-left-up.svg | 1 + theme/resources/feather/corner-right-down.svg | 1 + theme/resources/feather/corner-right-up.svg | 1 + theme/resources/feather/corner-up-left.svg | 1 + theme/resources/feather/corner-up-right.svg | 1 + theme/resources/feather/cpu.svg | 1 + theme/resources/feather/credit-card.svg | 1 + theme/resources/feather/crop.svg | 1 + theme/resources/feather/crosshair.svg | 1 + theme/resources/feather/database.svg | 1 + theme/resources/feather/delete.svg | 1 + theme/resources/feather/disc.svg | 1 + theme/resources/feather/dollar-sign.svg | 1 + theme/resources/feather/download-cloud.svg | 1 + theme/resources/feather/download.svg | 1 + theme/resources/feather/droplet.svg | 1 + theme/resources/feather/edit-2.svg | 1 + theme/resources/feather/edit-3.svg | 1 + theme/resources/feather/edit.svg | 1 + theme/resources/feather/external-link.svg | 1 + theme/resources/feather/eye-off.svg | 1 + theme/resources/feather/eye.svg | 1 + theme/resources/feather/facebook.svg | 1 + theme/resources/feather/fast-forward.svg | 1 + theme/resources/feather/feather.svg | 1 + theme/resources/feather/figma.svg | 1 + theme/resources/feather/file-minus.svg | 1 + theme/resources/feather/file-plus.svg | 1 + theme/resources/feather/file-text.svg | 1 + theme/resources/feather/file.svg | 1 + theme/resources/feather/film.svg | 1 + theme/resources/feather/filter.svg | 1 + theme/resources/feather/flag.svg | 1 + theme/resources/feather/folder-minus.svg | 1 + theme/resources/feather/folder-plus.svg | 1 + theme/resources/feather/folder.svg | 1 + theme/resources/feather/frown.svg | 1 + theme/resources/feather/gift.svg | 1 + theme/resources/feather/git-branch.svg | 1 + theme/resources/feather/git-commit.svg | 1 + theme/resources/feather/git-merge.svg | 1 + theme/resources/feather/git-pull-request.svg | 1 + theme/resources/feather/github.svg | 1 + theme/resources/feather/gitlab.svg | 1 + theme/resources/feather/globe.svg | 1 + theme/resources/feather/grid.svg | 1 + theme/resources/feather/hard-drive.svg | 1 + theme/resources/feather/hash.svg | 1 + theme/resources/feather/headphones.svg | 1 + theme/resources/feather/heart.svg | 1 + theme/resources/feather/help-circle.svg | 1 + theme/resources/feather/hexagon.svg | 1 + theme/resources/feather/home.svg | 1 + theme/resources/feather/image.svg | 1 + theme/resources/feather/inbox.svg | 1 + theme/resources/feather/info.svg | 1 + theme/resources/feather/instagram.svg | 1 + theme/resources/feather/italic.svg | 1 + theme/resources/feather/key.svg | 1 + theme/resources/feather/layers.svg | 1 + theme/resources/feather/layout.svg | 1 + theme/resources/feather/life-buoy.svg | 1 + theme/resources/feather/link-2.svg | 1 + theme/resources/feather/link.svg | 1 + theme/resources/feather/linkedin.svg | 1 + theme/resources/feather/list.svg | 1 + theme/resources/feather/loader.svg | 1 + theme/resources/feather/lock.svg | 1 + theme/resources/feather/log-in.svg | 1 + theme/resources/feather/log-out.svg | 1 + theme/resources/feather/mail.svg | 1 + theme/resources/feather/map-pin.svg | 1 + theme/resources/feather/map.svg | 1 + theme/resources/feather/maximize-2.svg | 1 + theme/resources/feather/maximize.svg | 1 + theme/resources/feather/meh.svg | 1 + theme/resources/feather/menu.svg | 1 + theme/resources/feather/message-circle.svg | 1 + theme/resources/feather/message-square.svg | 1 + theme/resources/feather/mic-off.svg | 1 + theme/resources/feather/mic.svg | 1 + theme/resources/feather/minimize-2.svg | 1 + theme/resources/feather/minimize.svg | 1 + theme/resources/feather/minus-circle.svg | 1 + theme/resources/feather/minus-square.svg | 1 + theme/resources/feather/minus.svg | 1 + theme/resources/feather/monitor.svg | 1 + theme/resources/feather/moon.svg | 1 + theme/resources/feather/more-horizontal.svg | 1 + theme/resources/feather/more-vertical.svg | 1 + theme/resources/feather/mouse-pointer.svg | 1 + theme/resources/feather/move.svg | 1 + theme/resources/feather/music.svg | 1 + theme/resources/feather/navigation-2.svg | 1 + theme/resources/feather/navigation.svg | 1 + theme/resources/feather/octagon.svg | 1 + theme/resources/feather/package.svg | 1 + theme/resources/feather/paperclip.svg | 1 + theme/resources/feather/pause-circle.svg | 1 + theme/resources/feather/pause.svg | 1 + theme/resources/feather/pen-tool.svg | 1 + theme/resources/feather/percent.svg | 1 + theme/resources/feather/phone-call.svg | 1 + theme/resources/feather/phone-forwarded.svg | 1 + theme/resources/feather/phone-incoming.svg | 1 + theme/resources/feather/phone-missed.svg | 1 + theme/resources/feather/phone-off.svg | 1 + theme/resources/feather/phone-outgoing.svg | 1 + theme/resources/feather/phone.svg | 1 + theme/resources/feather/pie-chart.svg | 1 + theme/resources/feather/play-circle.svg | 1 + theme/resources/feather/play.svg | 1 + theme/resources/feather/plus-circle.svg | 1 + theme/resources/feather/plus-square.svg | 1 + theme/resources/feather/plus.svg | 1 + theme/resources/feather/pocket.svg | 1 + theme/resources/feather/power.svg | 1 + theme/resources/feather/printer.svg | 1 + theme/resources/feather/radio.svg | 1 + theme/resources/feather/refresh-ccw.svg | 1 + theme/resources/feather/refresh-cw.svg | 1 + theme/resources/feather/repeat.svg | 1 + theme/resources/feather/rewind.svg | 1 + theme/resources/feather/rotate-ccw.svg | 1 + theme/resources/feather/rotate-cw.svg | 1 + theme/resources/feather/rss.svg | 1 + theme/resources/feather/save.svg | 1 + theme/resources/feather/scissors.svg | 1 + theme/resources/feather/search.svg | 1 + theme/resources/feather/send.svg | 1 + theme/resources/feather/server.svg | 1 + theme/resources/feather/settings.svg | 1 + theme/resources/feather/share-2.svg | 1 + theme/resources/feather/share.svg | 1 + theme/resources/feather/shield-off.svg | 1 + theme/resources/feather/shield.svg | 1 + theme/resources/feather/shopping-bag.svg | 1 + theme/resources/feather/shopping-cart.svg | 1 + theme/resources/feather/shuffle.svg | 1 + theme/resources/feather/sidebar.svg | 1 + theme/resources/feather/skip-back.svg | 1 + theme/resources/feather/skip-forward.svg | 1 + theme/resources/feather/slack.svg | 1 + theme/resources/feather/slash.svg | 1 + theme/resources/feather/sliders.svg | 1 + theme/resources/feather/smartphone.svg | 1 + theme/resources/feather/smile.svg | 1 + theme/resources/feather/speaker.svg | 1 + theme/resources/feather/square.svg | 1 + theme/resources/feather/star.svg | 1 + theme/resources/feather/stop-circle.svg | 1 + theme/resources/feather/sun.svg | 1 + theme/resources/feather/sunrise.svg | 1 + theme/resources/feather/sunset.svg | 1 + theme/resources/feather/tablet.svg | 1 + theme/resources/feather/tag.svg | 1 + theme/resources/feather/target.svg | 1 + theme/resources/feather/terminal.svg | 1 + theme/resources/feather/thermometer.svg | 1 + theme/resources/feather/thumbs-down.svg | 1 + theme/resources/feather/thumbs-up.svg | 1 + theme/resources/feather/toggle-left.svg | 1 + theme/resources/feather/toggle-right.svg | 1 + theme/resources/feather/trash-2.svg | 1 + theme/resources/feather/trash.svg | 1 + theme/resources/feather/trello.svg | 1 + theme/resources/feather/trending-down.svg | 1 + theme/resources/feather/trending-up.svg | 1 + theme/resources/feather/triangle.svg | 1 + theme/resources/feather/truck.svg | 1 + theme/resources/feather/tv.svg | 1 + theme/resources/feather/twitter.svg | 1 + theme/resources/feather/type.svg | 1 + theme/resources/feather/umbrella.svg | 1 + theme/resources/feather/underline.svg | 1 + theme/resources/feather/unlock.svg | 1 + theme/resources/feather/upload-cloud.svg | 1 + theme/resources/feather/upload.svg | 1 + theme/resources/feather/user-check.svg | 1 + theme/resources/feather/user-minus.svg | 1 + theme/resources/feather/user-plus.svg | 1 + theme/resources/feather/user-x.svg | 1 + theme/resources/feather/user.svg | 1 + theme/resources/feather/users.svg | 1 + theme/resources/feather/video-off.svg | 1 + theme/resources/feather/video.svg | 1 + theme/resources/feather/voicemail.svg | 1 + theme/resources/feather/volume-1.svg | 1 + theme/resources/feather/volume-2.svg | 1 + theme/resources/feather/volume-x.svg | 1 + theme/resources/feather/volume.svg | 1 + theme/resources/feather/watch.svg | 1 + theme/resources/feather/wifi-off.svg | 1 + theme/resources/feather/wifi.svg | 1 + theme/resources/feather/wind.svg | 1 + theme/resources/feather/x-circle.svg | 1 + theme/resources/feather/x-octagon.svg | 1 + theme/resources/feather/x-square.svg | 1 + theme/resources/feather/x.svg | 1 + theme/resources/feather/youtube.svg | 1 + theme/resources/feather/zap-off.svg | 1 + theme/resources/feather/zap.svg | 1 + theme/resources/feather/zoom-in.svg | 1 + theme/resources/feather/zoom-out.svg | 1 + 279 files changed, 279 insertions(+) create mode 100644 theme/resources/feather/activity.svg create mode 100644 theme/resources/feather/airplay.svg create mode 100644 theme/resources/feather/alert-circle.svg create mode 100644 theme/resources/feather/alert-octagon.svg create mode 100644 theme/resources/feather/alert-triangle.svg create mode 100644 theme/resources/feather/align-center.svg create mode 100644 theme/resources/feather/align-justify.svg create mode 100644 theme/resources/feather/align-left.svg create mode 100644 theme/resources/feather/align-right.svg create mode 100644 theme/resources/feather/anchor.svg create mode 100644 theme/resources/feather/aperture.svg create mode 100644 theme/resources/feather/archive.svg create mode 100644 theme/resources/feather/arrow-down-circle.svg create mode 100644 theme/resources/feather/arrow-down-left.svg create mode 100644 theme/resources/feather/arrow-down-right.svg create mode 100644 theme/resources/feather/arrow-down.svg create mode 100644 theme/resources/feather/arrow-left-circle.svg create mode 100644 theme/resources/feather/arrow-left.svg create mode 100644 theme/resources/feather/arrow-right-circle.svg create mode 100644 theme/resources/feather/arrow-right.svg create mode 100644 theme/resources/feather/arrow-up-circle.svg create mode 100644 theme/resources/feather/arrow-up-left.svg create mode 100644 theme/resources/feather/arrow-up-right.svg create mode 100644 theme/resources/feather/arrow-up.svg create mode 100644 theme/resources/feather/at-sign.svg create mode 100644 theme/resources/feather/award.svg create mode 100644 theme/resources/feather/bar-chart-2.svg create mode 100644 theme/resources/feather/bar-chart.svg create mode 100644 theme/resources/feather/battery-charging.svg create mode 100644 theme/resources/feather/battery.svg create mode 100644 theme/resources/feather/bell-off.svg create mode 100644 theme/resources/feather/bell.svg create mode 100644 theme/resources/feather/bluetooth.svg create mode 100644 theme/resources/feather/bold.svg create mode 100644 theme/resources/feather/book-open.svg create mode 100644 theme/resources/feather/book.svg create mode 100644 theme/resources/feather/bookmark.svg create mode 100644 theme/resources/feather/box.svg create mode 100644 theme/resources/feather/briefcase.svg create mode 100644 theme/resources/feather/calendar.svg create mode 100644 theme/resources/feather/camera-off.svg create mode 100644 theme/resources/feather/camera.svg create mode 100644 theme/resources/feather/cast.svg create mode 100644 theme/resources/feather/check-circle.svg create mode 100644 theme/resources/feather/check-square.svg create mode 100644 theme/resources/feather/check.svg create mode 100644 theme/resources/feather/chevron-down.svg create mode 100644 theme/resources/feather/chevron-left.svg create mode 100644 theme/resources/feather/chevron-right.svg create mode 100644 theme/resources/feather/chevron-up.svg create mode 100644 theme/resources/feather/chevrons-down.svg create mode 100644 theme/resources/feather/chevrons-left.svg create mode 100644 theme/resources/feather/chevrons-right.svg create mode 100644 theme/resources/feather/chevrons-up.svg create mode 100644 theme/resources/feather/chrome.svg create mode 100644 theme/resources/feather/circle.svg create mode 100644 theme/resources/feather/clipboard.svg create mode 100644 theme/resources/feather/clock.svg create mode 100644 theme/resources/feather/cloud-drizzle.svg create mode 100644 theme/resources/feather/cloud-lightning.svg create mode 100644 theme/resources/feather/cloud-off.svg create mode 100644 theme/resources/feather/cloud-rain.svg create mode 100644 theme/resources/feather/cloud-snow.svg create mode 100644 theme/resources/feather/cloud.svg create mode 100644 theme/resources/feather/code.svg create mode 100644 theme/resources/feather/codepen.svg create mode 100644 theme/resources/feather/codesandbox.svg create mode 100644 theme/resources/feather/coffee.svg create mode 100644 theme/resources/feather/columns.svg create mode 100644 theme/resources/feather/command.svg create mode 100644 theme/resources/feather/compass.svg create mode 100644 theme/resources/feather/copy.svg create mode 100644 theme/resources/feather/corner-down-left.svg create mode 100644 theme/resources/feather/corner-down-right.svg create mode 100644 theme/resources/feather/corner-left-down.svg create mode 100644 theme/resources/feather/corner-left-up.svg create mode 100644 theme/resources/feather/corner-right-down.svg create mode 100644 theme/resources/feather/corner-right-up.svg create mode 100644 theme/resources/feather/corner-up-left.svg create mode 100644 theme/resources/feather/corner-up-right.svg create mode 100644 theme/resources/feather/cpu.svg create mode 100644 theme/resources/feather/credit-card.svg create mode 100644 theme/resources/feather/crop.svg create mode 100644 theme/resources/feather/crosshair.svg create mode 100644 theme/resources/feather/database.svg create mode 100644 theme/resources/feather/delete.svg create mode 100644 theme/resources/feather/disc.svg create mode 100644 theme/resources/feather/dollar-sign.svg create mode 100644 theme/resources/feather/download-cloud.svg create mode 100644 theme/resources/feather/download.svg create mode 100644 theme/resources/feather/droplet.svg create mode 100644 theme/resources/feather/edit-2.svg create mode 100644 theme/resources/feather/edit-3.svg create mode 100644 theme/resources/feather/edit.svg create mode 100644 theme/resources/feather/external-link.svg create mode 100644 theme/resources/feather/eye-off.svg create mode 100644 theme/resources/feather/eye.svg create mode 100644 theme/resources/feather/facebook.svg create mode 100644 theme/resources/feather/fast-forward.svg create mode 100644 theme/resources/feather/feather.svg create mode 100644 theme/resources/feather/figma.svg create mode 100644 theme/resources/feather/file-minus.svg create mode 100644 theme/resources/feather/file-plus.svg create mode 100644 theme/resources/feather/file-text.svg create mode 100644 theme/resources/feather/file.svg create mode 100644 theme/resources/feather/film.svg create mode 100644 theme/resources/feather/filter.svg create mode 100644 theme/resources/feather/flag.svg create mode 100644 theme/resources/feather/folder-minus.svg create mode 100644 theme/resources/feather/folder-plus.svg create mode 100644 theme/resources/feather/folder.svg create mode 100644 theme/resources/feather/frown.svg create mode 100644 theme/resources/feather/gift.svg create mode 100644 theme/resources/feather/git-branch.svg create mode 100644 theme/resources/feather/git-commit.svg create mode 100644 theme/resources/feather/git-merge.svg create mode 100644 theme/resources/feather/git-pull-request.svg create mode 100644 theme/resources/feather/github.svg create mode 100644 theme/resources/feather/gitlab.svg create mode 100644 theme/resources/feather/globe.svg create mode 100644 theme/resources/feather/grid.svg create mode 100644 theme/resources/feather/hard-drive.svg create mode 100644 theme/resources/feather/hash.svg create mode 100644 theme/resources/feather/headphones.svg create mode 100644 theme/resources/feather/heart.svg create mode 100644 theme/resources/feather/help-circle.svg create mode 100644 theme/resources/feather/hexagon.svg create mode 100644 theme/resources/feather/home.svg create mode 100644 theme/resources/feather/image.svg create mode 100644 theme/resources/feather/inbox.svg create mode 100644 theme/resources/feather/info.svg create mode 100644 theme/resources/feather/instagram.svg create mode 100644 theme/resources/feather/italic.svg create mode 100644 theme/resources/feather/key.svg create mode 100644 theme/resources/feather/layers.svg create mode 100644 theme/resources/feather/layout.svg create mode 100644 theme/resources/feather/life-buoy.svg create mode 100644 theme/resources/feather/link-2.svg create mode 100644 theme/resources/feather/link.svg create mode 100644 theme/resources/feather/linkedin.svg create mode 100644 theme/resources/feather/list.svg create mode 100644 theme/resources/feather/loader.svg create mode 100644 theme/resources/feather/lock.svg create mode 100644 theme/resources/feather/log-in.svg create mode 100644 theme/resources/feather/log-out.svg create mode 100644 theme/resources/feather/mail.svg create mode 100644 theme/resources/feather/map-pin.svg create mode 100644 theme/resources/feather/map.svg create mode 100644 theme/resources/feather/maximize-2.svg create mode 100644 theme/resources/feather/maximize.svg create mode 100644 theme/resources/feather/meh.svg create mode 100644 theme/resources/feather/menu.svg create mode 100644 theme/resources/feather/message-circle.svg create mode 100644 theme/resources/feather/message-square.svg create mode 100644 theme/resources/feather/mic-off.svg create mode 100644 theme/resources/feather/mic.svg create mode 100644 theme/resources/feather/minimize-2.svg create mode 100644 theme/resources/feather/minimize.svg create mode 100644 theme/resources/feather/minus-circle.svg create mode 100644 theme/resources/feather/minus-square.svg create mode 100644 theme/resources/feather/minus.svg create mode 100644 theme/resources/feather/monitor.svg create mode 100644 theme/resources/feather/moon.svg create mode 100644 theme/resources/feather/more-horizontal.svg create mode 100644 theme/resources/feather/more-vertical.svg create mode 100644 theme/resources/feather/mouse-pointer.svg create mode 100644 theme/resources/feather/move.svg create mode 100644 theme/resources/feather/music.svg create mode 100644 theme/resources/feather/navigation-2.svg create mode 100644 theme/resources/feather/navigation.svg create mode 100644 theme/resources/feather/octagon.svg create mode 100644 theme/resources/feather/package.svg create mode 100644 theme/resources/feather/paperclip.svg create mode 100644 theme/resources/feather/pause-circle.svg create mode 100644 theme/resources/feather/pause.svg create mode 100644 theme/resources/feather/pen-tool.svg create mode 100644 theme/resources/feather/percent.svg create mode 100644 theme/resources/feather/phone-call.svg create mode 100644 theme/resources/feather/phone-forwarded.svg create mode 100644 theme/resources/feather/phone-incoming.svg create mode 100644 theme/resources/feather/phone-missed.svg create mode 100644 theme/resources/feather/phone-off.svg create mode 100644 theme/resources/feather/phone-outgoing.svg create mode 100644 theme/resources/feather/phone.svg create mode 100644 theme/resources/feather/pie-chart.svg create mode 100644 theme/resources/feather/play-circle.svg create mode 100644 theme/resources/feather/play.svg create mode 100644 theme/resources/feather/plus-circle.svg create mode 100644 theme/resources/feather/plus-square.svg create mode 100644 theme/resources/feather/plus.svg create mode 100644 theme/resources/feather/pocket.svg create mode 100644 theme/resources/feather/power.svg create mode 100644 theme/resources/feather/printer.svg create mode 100644 theme/resources/feather/radio.svg create mode 100644 theme/resources/feather/refresh-ccw.svg create mode 100644 theme/resources/feather/refresh-cw.svg create mode 100644 theme/resources/feather/repeat.svg create mode 100644 theme/resources/feather/rewind.svg create mode 100644 theme/resources/feather/rotate-ccw.svg create mode 100644 theme/resources/feather/rotate-cw.svg create mode 100644 theme/resources/feather/rss.svg create mode 100644 theme/resources/feather/save.svg create mode 100644 theme/resources/feather/scissors.svg create mode 100644 theme/resources/feather/search.svg create mode 100644 theme/resources/feather/send.svg create mode 100644 theme/resources/feather/server.svg create mode 100644 theme/resources/feather/settings.svg create mode 100644 theme/resources/feather/share-2.svg create mode 100644 theme/resources/feather/share.svg create mode 100644 theme/resources/feather/shield-off.svg create mode 100644 theme/resources/feather/shield.svg create mode 100644 theme/resources/feather/shopping-bag.svg create mode 100644 theme/resources/feather/shopping-cart.svg create mode 100644 theme/resources/feather/shuffle.svg create mode 100644 theme/resources/feather/sidebar.svg create mode 100644 theme/resources/feather/skip-back.svg create mode 100644 theme/resources/feather/skip-forward.svg create mode 100644 theme/resources/feather/slack.svg create mode 100644 theme/resources/feather/slash.svg create mode 100644 theme/resources/feather/sliders.svg create mode 100644 theme/resources/feather/smartphone.svg create mode 100644 theme/resources/feather/smile.svg create mode 100644 theme/resources/feather/speaker.svg create mode 100644 theme/resources/feather/square.svg create mode 100644 theme/resources/feather/star.svg create mode 100644 theme/resources/feather/stop-circle.svg create mode 100644 theme/resources/feather/sun.svg create mode 100644 theme/resources/feather/sunrise.svg create mode 100644 theme/resources/feather/sunset.svg create mode 100644 theme/resources/feather/tablet.svg create mode 100644 theme/resources/feather/tag.svg create mode 100644 theme/resources/feather/target.svg create mode 100644 theme/resources/feather/terminal.svg create mode 100644 theme/resources/feather/thermometer.svg create mode 100644 theme/resources/feather/thumbs-down.svg create mode 100644 theme/resources/feather/thumbs-up.svg create mode 100644 theme/resources/feather/toggle-left.svg create mode 100644 theme/resources/feather/toggle-right.svg create mode 100644 theme/resources/feather/trash-2.svg create mode 100644 theme/resources/feather/trash.svg create mode 100644 theme/resources/feather/trello.svg create mode 100644 theme/resources/feather/trending-down.svg create mode 100644 theme/resources/feather/trending-up.svg create mode 100644 theme/resources/feather/triangle.svg create mode 100644 theme/resources/feather/truck.svg create mode 100644 theme/resources/feather/tv.svg create mode 100644 theme/resources/feather/twitter.svg create mode 100644 theme/resources/feather/type.svg create mode 100644 theme/resources/feather/umbrella.svg create mode 100644 theme/resources/feather/underline.svg create mode 100644 theme/resources/feather/unlock.svg create mode 100644 theme/resources/feather/upload-cloud.svg create mode 100644 theme/resources/feather/upload.svg create mode 100644 theme/resources/feather/user-check.svg create mode 100644 theme/resources/feather/user-minus.svg create mode 100644 theme/resources/feather/user-plus.svg create mode 100644 theme/resources/feather/user-x.svg create mode 100644 theme/resources/feather/user.svg create mode 100644 theme/resources/feather/users.svg create mode 100644 theme/resources/feather/video-off.svg create mode 100644 theme/resources/feather/video.svg create mode 100644 theme/resources/feather/voicemail.svg create mode 100644 theme/resources/feather/volume-1.svg create mode 100644 theme/resources/feather/volume-2.svg create mode 100644 theme/resources/feather/volume-x.svg create mode 100644 theme/resources/feather/volume.svg create mode 100644 theme/resources/feather/watch.svg create mode 100644 theme/resources/feather/wifi-off.svg create mode 100644 theme/resources/feather/wifi.svg create mode 100644 theme/resources/feather/wind.svg create mode 100644 theme/resources/feather/x-circle.svg create mode 100644 theme/resources/feather/x-octagon.svg create mode 100644 theme/resources/feather/x-square.svg create mode 100644 theme/resources/feather/x.svg create mode 100644 theme/resources/feather/youtube.svg create mode 100644 theme/resources/feather/zap-off.svg create mode 100644 theme/resources/feather/zap.svg create mode 100644 theme/resources/feather/zoom-in.svg create mode 100644 theme/resources/feather/zoom-out.svg diff --git a/theme/resources/feather/activity.svg b/theme/resources/feather/activity.svg new file mode 100644 index 0000000..669a57a --- /dev/null +++ b/theme/resources/feather/activity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/airplay.svg b/theme/resources/feather/airplay.svg new file mode 100644 index 0000000..7ce7302 --- /dev/null +++ b/theme/resources/feather/airplay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/alert-circle.svg b/theme/resources/feather/alert-circle.svg new file mode 100644 index 0000000..6b41c0b --- /dev/null +++ b/theme/resources/feather/alert-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/alert-octagon.svg b/theme/resources/feather/alert-octagon.svg new file mode 100644 index 0000000..6943b6d --- /dev/null +++ b/theme/resources/feather/alert-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/alert-triangle.svg b/theme/resources/feather/alert-triangle.svg new file mode 100644 index 0000000..59e65b1 --- /dev/null +++ b/theme/resources/feather/alert-triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/align-center.svg b/theme/resources/feather/align-center.svg new file mode 100644 index 0000000..5b8842e --- /dev/null +++ b/theme/resources/feather/align-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/align-justify.svg b/theme/resources/feather/align-justify.svg new file mode 100644 index 0000000..0539876 --- /dev/null +++ b/theme/resources/feather/align-justify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/align-left.svg b/theme/resources/feather/align-left.svg new file mode 100644 index 0000000..9ac852a --- /dev/null +++ b/theme/resources/feather/align-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/align-right.svg b/theme/resources/feather/align-right.svg new file mode 100644 index 0000000..ef139ff --- /dev/null +++ b/theme/resources/feather/align-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/anchor.svg b/theme/resources/feather/anchor.svg new file mode 100644 index 0000000..e01627a --- /dev/null +++ b/theme/resources/feather/anchor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/aperture.svg b/theme/resources/feather/aperture.svg new file mode 100644 index 0000000..9936e86 --- /dev/null +++ b/theme/resources/feather/aperture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/archive.svg b/theme/resources/feather/archive.svg new file mode 100644 index 0000000..428882c --- /dev/null +++ b/theme/resources/feather/archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-down-circle.svg b/theme/resources/feather/arrow-down-circle.svg new file mode 100644 index 0000000..3238091 --- /dev/null +++ b/theme/resources/feather/arrow-down-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-down-left.svg b/theme/resources/feather/arrow-down-left.svg new file mode 100644 index 0000000..7248358 --- /dev/null +++ b/theme/resources/feather/arrow-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-down-right.svg b/theme/resources/feather/arrow-down-right.svg new file mode 100644 index 0000000..81d9822 --- /dev/null +++ b/theme/resources/feather/arrow-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-down.svg b/theme/resources/feather/arrow-down.svg new file mode 100644 index 0000000..4f84f62 --- /dev/null +++ b/theme/resources/feather/arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-left-circle.svg b/theme/resources/feather/arrow-left-circle.svg new file mode 100644 index 0000000..3b19ff8 --- /dev/null +++ b/theme/resources/feather/arrow-left-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-left.svg b/theme/resources/feather/arrow-left.svg new file mode 100644 index 0000000..a5058fc --- /dev/null +++ b/theme/resources/feather/arrow-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-right-circle.svg b/theme/resources/feather/arrow-right-circle.svg new file mode 100644 index 0000000..ff01dd5 --- /dev/null +++ b/theme/resources/feather/arrow-right-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-right.svg b/theme/resources/feather/arrow-right.svg new file mode 100644 index 0000000..939b57c --- /dev/null +++ b/theme/resources/feather/arrow-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-up-circle.svg b/theme/resources/feather/arrow-up-circle.svg new file mode 100644 index 0000000..044a75d --- /dev/null +++ b/theme/resources/feather/arrow-up-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-up-left.svg b/theme/resources/feather/arrow-up-left.svg new file mode 100644 index 0000000..cea55e8 --- /dev/null +++ b/theme/resources/feather/arrow-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-up-right.svg b/theme/resources/feather/arrow-up-right.svg new file mode 100644 index 0000000..95678e0 --- /dev/null +++ b/theme/resources/feather/arrow-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/arrow-up.svg b/theme/resources/feather/arrow-up.svg new file mode 100644 index 0000000..16b13ab --- /dev/null +++ b/theme/resources/feather/arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/at-sign.svg b/theme/resources/feather/at-sign.svg new file mode 100644 index 0000000..5a5e5d0 --- /dev/null +++ b/theme/resources/feather/at-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/award.svg b/theme/resources/feather/award.svg new file mode 100644 index 0000000..be70d5a --- /dev/null +++ b/theme/resources/feather/award.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/bar-chart-2.svg b/theme/resources/feather/bar-chart-2.svg new file mode 100644 index 0000000..864167a --- /dev/null +++ b/theme/resources/feather/bar-chart-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/bar-chart.svg b/theme/resources/feather/bar-chart.svg new file mode 100644 index 0000000..074d7c1 --- /dev/null +++ b/theme/resources/feather/bar-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/battery-charging.svg b/theme/resources/feather/battery-charging.svg new file mode 100644 index 0000000..644cb59 --- /dev/null +++ b/theme/resources/feather/battery-charging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/battery.svg b/theme/resources/feather/battery.svg new file mode 100644 index 0000000..7fe8771 --- /dev/null +++ b/theme/resources/feather/battery.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/bell-off.svg b/theme/resources/feather/bell-off.svg new file mode 100644 index 0000000..4b07c84 --- /dev/null +++ b/theme/resources/feather/bell-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/bell.svg b/theme/resources/feather/bell.svg new file mode 100644 index 0000000..bba561c --- /dev/null +++ b/theme/resources/feather/bell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/bluetooth.svg b/theme/resources/feather/bluetooth.svg new file mode 100644 index 0000000..cebed7b --- /dev/null +++ b/theme/resources/feather/bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/bold.svg b/theme/resources/feather/bold.svg new file mode 100644 index 0000000..d1a4efd --- /dev/null +++ b/theme/resources/feather/bold.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/book-open.svg b/theme/resources/feather/book-open.svg new file mode 100644 index 0000000..5e0ca0a --- /dev/null +++ b/theme/resources/feather/book-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/book.svg b/theme/resources/feather/book.svg new file mode 100644 index 0000000..12ffcbc --- /dev/null +++ b/theme/resources/feather/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/bookmark.svg b/theme/resources/feather/bookmark.svg new file mode 100644 index 0000000..2239cc5 --- /dev/null +++ b/theme/resources/feather/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/box.svg b/theme/resources/feather/box.svg new file mode 100644 index 0000000..d89be30 --- /dev/null +++ b/theme/resources/feather/box.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/briefcase.svg b/theme/resources/feather/briefcase.svg new file mode 100644 index 0000000..e3af050 --- /dev/null +++ b/theme/resources/feather/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/calendar.svg b/theme/resources/feather/calendar.svg new file mode 100644 index 0000000..6c7fd87 --- /dev/null +++ b/theme/resources/feather/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/camera-off.svg b/theme/resources/feather/camera-off.svg new file mode 100644 index 0000000..daa3e25 --- /dev/null +++ b/theme/resources/feather/camera-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/camera.svg b/theme/resources/feather/camera.svg new file mode 100644 index 0000000..0e7f060 --- /dev/null +++ b/theme/resources/feather/camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cast.svg b/theme/resources/feather/cast.svg new file mode 100644 index 0000000..9e27cb4 --- /dev/null +++ b/theme/resources/feather/cast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/check-circle.svg b/theme/resources/feather/check-circle.svg new file mode 100644 index 0000000..f2f4fd1 --- /dev/null +++ b/theme/resources/feather/check-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/check-square.svg b/theme/resources/feather/check-square.svg new file mode 100644 index 0000000..72ab7a8 --- /dev/null +++ b/theme/resources/feather/check-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/check.svg b/theme/resources/feather/check.svg new file mode 100644 index 0000000..1c20989 --- /dev/null +++ b/theme/resources/feather/check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevron-down.svg b/theme/resources/feather/chevron-down.svg new file mode 100644 index 0000000..278c6a3 --- /dev/null +++ b/theme/resources/feather/chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevron-left.svg b/theme/resources/feather/chevron-left.svg new file mode 100644 index 0000000..747d46d --- /dev/null +++ b/theme/resources/feather/chevron-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevron-right.svg b/theme/resources/feather/chevron-right.svg new file mode 100644 index 0000000..258de41 --- /dev/null +++ b/theme/resources/feather/chevron-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevron-up.svg b/theme/resources/feather/chevron-up.svg new file mode 100644 index 0000000..4eb5ecc --- /dev/null +++ b/theme/resources/feather/chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevrons-down.svg b/theme/resources/feather/chevrons-down.svg new file mode 100644 index 0000000..e67ef2f --- /dev/null +++ b/theme/resources/feather/chevrons-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevrons-left.svg b/theme/resources/feather/chevrons-left.svg new file mode 100644 index 0000000..c32e398 --- /dev/null +++ b/theme/resources/feather/chevrons-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevrons-right.svg b/theme/resources/feather/chevrons-right.svg new file mode 100644 index 0000000..f506814 --- /dev/null +++ b/theme/resources/feather/chevrons-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chevrons-up.svg b/theme/resources/feather/chevrons-up.svg new file mode 100644 index 0000000..0eaf518 --- /dev/null +++ b/theme/resources/feather/chevrons-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/chrome.svg b/theme/resources/feather/chrome.svg new file mode 100644 index 0000000..9189815 --- /dev/null +++ b/theme/resources/feather/chrome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/circle.svg b/theme/resources/feather/circle.svg new file mode 100644 index 0000000..b009088 --- /dev/null +++ b/theme/resources/feather/circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/clipboard.svg b/theme/resources/feather/clipboard.svg new file mode 100644 index 0000000..ccee454 --- /dev/null +++ b/theme/resources/feather/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/clock.svg b/theme/resources/feather/clock.svg new file mode 100644 index 0000000..ea3f5e5 --- /dev/null +++ b/theme/resources/feather/clock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cloud-drizzle.svg b/theme/resources/feather/cloud-drizzle.svg new file mode 100644 index 0000000..13af6bb --- /dev/null +++ b/theme/resources/feather/cloud-drizzle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cloud-lightning.svg b/theme/resources/feather/cloud-lightning.svg new file mode 100644 index 0000000..32d154c --- /dev/null +++ b/theme/resources/feather/cloud-lightning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cloud-off.svg b/theme/resources/feather/cloud-off.svg new file mode 100644 index 0000000..1e1e7d6 --- /dev/null +++ b/theme/resources/feather/cloud-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cloud-rain.svg b/theme/resources/feather/cloud-rain.svg new file mode 100644 index 0000000..3e0b85b --- /dev/null +++ b/theme/resources/feather/cloud-rain.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cloud-snow.svg b/theme/resources/feather/cloud-snow.svg new file mode 100644 index 0000000..78e0008 --- /dev/null +++ b/theme/resources/feather/cloud-snow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cloud.svg b/theme/resources/feather/cloud.svg new file mode 100644 index 0000000..0ee0c63 --- /dev/null +++ b/theme/resources/feather/cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/code.svg b/theme/resources/feather/code.svg new file mode 100644 index 0000000..c4954b5 --- /dev/null +++ b/theme/resources/feather/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/codepen.svg b/theme/resources/feather/codepen.svg new file mode 100644 index 0000000..ab2a815 --- /dev/null +++ b/theme/resources/feather/codepen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/codesandbox.svg b/theme/resources/feather/codesandbox.svg new file mode 100644 index 0000000..49848f5 --- /dev/null +++ b/theme/resources/feather/codesandbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/coffee.svg b/theme/resources/feather/coffee.svg new file mode 100644 index 0000000..32905e5 --- /dev/null +++ b/theme/resources/feather/coffee.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/columns.svg b/theme/resources/feather/columns.svg new file mode 100644 index 0000000..d264b55 --- /dev/null +++ b/theme/resources/feather/columns.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/command.svg b/theme/resources/feather/command.svg new file mode 100644 index 0000000..93f554c --- /dev/null +++ b/theme/resources/feather/command.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/compass.svg b/theme/resources/feather/compass.svg new file mode 100644 index 0000000..3296260 --- /dev/null +++ b/theme/resources/feather/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/copy.svg b/theme/resources/feather/copy.svg new file mode 100644 index 0000000..4e0b09f --- /dev/null +++ b/theme/resources/feather/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-down-left.svg b/theme/resources/feather/corner-down-left.svg new file mode 100644 index 0000000..9fffb3e --- /dev/null +++ b/theme/resources/feather/corner-down-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-down-right.svg b/theme/resources/feather/corner-down-right.svg new file mode 100644 index 0000000..b27d408 --- /dev/null +++ b/theme/resources/feather/corner-down-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-left-down.svg b/theme/resources/feather/corner-left-down.svg new file mode 100644 index 0000000..24b8375 --- /dev/null +++ b/theme/resources/feather/corner-left-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-left-up.svg b/theme/resources/feather/corner-left-up.svg new file mode 100644 index 0000000..e54527c --- /dev/null +++ b/theme/resources/feather/corner-left-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-right-down.svg b/theme/resources/feather/corner-right-down.svg new file mode 100644 index 0000000..a49e6d6 --- /dev/null +++ b/theme/resources/feather/corner-right-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-right-up.svg b/theme/resources/feather/corner-right-up.svg new file mode 100644 index 0000000..a5c5dce --- /dev/null +++ b/theme/resources/feather/corner-right-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-up-left.svg b/theme/resources/feather/corner-up-left.svg new file mode 100644 index 0000000..0a1ffd6 --- /dev/null +++ b/theme/resources/feather/corner-up-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/corner-up-right.svg b/theme/resources/feather/corner-up-right.svg new file mode 100644 index 0000000..0b8f961 --- /dev/null +++ b/theme/resources/feather/corner-up-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/cpu.svg b/theme/resources/feather/cpu.svg new file mode 100644 index 0000000..2ed16ef --- /dev/null +++ b/theme/resources/feather/cpu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/credit-card.svg b/theme/resources/feather/credit-card.svg new file mode 100644 index 0000000..1b7fd02 --- /dev/null +++ b/theme/resources/feather/credit-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/crop.svg b/theme/resources/feather/crop.svg new file mode 100644 index 0000000..ffbfd04 --- /dev/null +++ b/theme/resources/feather/crop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/crosshair.svg b/theme/resources/feather/crosshair.svg new file mode 100644 index 0000000..ba39401 --- /dev/null +++ b/theme/resources/feather/crosshair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/database.svg b/theme/resources/feather/database.svg new file mode 100644 index 0000000..c296fbc --- /dev/null +++ b/theme/resources/feather/database.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/delete.svg b/theme/resources/feather/delete.svg new file mode 100644 index 0000000..8c6074b --- /dev/null +++ b/theme/resources/feather/delete.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/disc.svg b/theme/resources/feather/disc.svg new file mode 100644 index 0000000..2595b44 --- /dev/null +++ b/theme/resources/feather/disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/dollar-sign.svg b/theme/resources/feather/dollar-sign.svg new file mode 100644 index 0000000..1a124d2 --- /dev/null +++ b/theme/resources/feather/dollar-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/download-cloud.svg b/theme/resources/feather/download-cloud.svg new file mode 100644 index 0000000..f3126fc --- /dev/null +++ b/theme/resources/feather/download-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/download.svg b/theme/resources/feather/download.svg new file mode 100644 index 0000000..76767a9 --- /dev/null +++ b/theme/resources/feather/download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/droplet.svg b/theme/resources/feather/droplet.svg new file mode 100644 index 0000000..ca09301 --- /dev/null +++ b/theme/resources/feather/droplet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/edit-2.svg b/theme/resources/feather/edit-2.svg new file mode 100644 index 0000000..06830c9 --- /dev/null +++ b/theme/resources/feather/edit-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/edit-3.svg b/theme/resources/feather/edit-3.svg new file mode 100644 index 0000000..d728efc --- /dev/null +++ b/theme/resources/feather/edit-3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/edit.svg b/theme/resources/feather/edit.svg new file mode 100644 index 0000000..ec7b4ca --- /dev/null +++ b/theme/resources/feather/edit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/external-link.svg b/theme/resources/feather/external-link.svg new file mode 100644 index 0000000..6236df3 --- /dev/null +++ b/theme/resources/feather/external-link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/eye-off.svg b/theme/resources/feather/eye-off.svg new file mode 100644 index 0000000..77c54cb --- /dev/null +++ b/theme/resources/feather/eye-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/eye.svg b/theme/resources/feather/eye.svg new file mode 100644 index 0000000..9cde243 --- /dev/null +++ b/theme/resources/feather/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/facebook.svg b/theme/resources/feather/facebook.svg new file mode 100644 index 0000000..2570f56 --- /dev/null +++ b/theme/resources/feather/facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/fast-forward.svg b/theme/resources/feather/fast-forward.svg new file mode 100644 index 0000000..fa39877 --- /dev/null +++ b/theme/resources/feather/fast-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/feather.svg b/theme/resources/feather/feather.svg new file mode 100644 index 0000000..ac3b868 --- /dev/null +++ b/theme/resources/feather/feather.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/figma.svg b/theme/resources/feather/figma.svg new file mode 100644 index 0000000..66fd217 --- /dev/null +++ b/theme/resources/feather/figma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/file-minus.svg b/theme/resources/feather/file-minus.svg new file mode 100644 index 0000000..345756e --- /dev/null +++ b/theme/resources/feather/file-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/file-plus.svg b/theme/resources/feather/file-plus.svg new file mode 100644 index 0000000..eed1200 --- /dev/null +++ b/theme/resources/feather/file-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/file-text.svg b/theme/resources/feather/file-text.svg new file mode 100644 index 0000000..4197ddd --- /dev/null +++ b/theme/resources/feather/file-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/file.svg b/theme/resources/feather/file.svg new file mode 100644 index 0000000..378519a --- /dev/null +++ b/theme/resources/feather/file.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/film.svg b/theme/resources/feather/film.svg new file mode 100644 index 0000000..ac46360 --- /dev/null +++ b/theme/resources/feather/film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/filter.svg b/theme/resources/feather/filter.svg new file mode 100644 index 0000000..38a47e0 --- /dev/null +++ b/theme/resources/feather/filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/flag.svg b/theme/resources/feather/flag.svg new file mode 100644 index 0000000..037737c --- /dev/null +++ b/theme/resources/feather/flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/folder-minus.svg b/theme/resources/feather/folder-minus.svg new file mode 100644 index 0000000..d5b7af6 --- /dev/null +++ b/theme/resources/feather/folder-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/folder-plus.svg b/theme/resources/feather/folder-plus.svg new file mode 100644 index 0000000..898f2fc --- /dev/null +++ b/theme/resources/feather/folder-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/folder.svg b/theme/resources/feather/folder.svg new file mode 100644 index 0000000..134458b --- /dev/null +++ b/theme/resources/feather/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/frown.svg b/theme/resources/feather/frown.svg new file mode 100644 index 0000000..f312254 --- /dev/null +++ b/theme/resources/feather/frown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/gift.svg b/theme/resources/feather/gift.svg new file mode 100644 index 0000000..d2c14bd --- /dev/null +++ b/theme/resources/feather/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/git-branch.svg b/theme/resources/feather/git-branch.svg new file mode 100644 index 0000000..4400372 --- /dev/null +++ b/theme/resources/feather/git-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/git-commit.svg b/theme/resources/feather/git-commit.svg new file mode 100644 index 0000000..e959d72 --- /dev/null +++ b/theme/resources/feather/git-commit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/git-merge.svg b/theme/resources/feather/git-merge.svg new file mode 100644 index 0000000..c65fffd --- /dev/null +++ b/theme/resources/feather/git-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/git-pull-request.svg b/theme/resources/feather/git-pull-request.svg new file mode 100644 index 0000000..fc80bdf --- /dev/null +++ b/theme/resources/feather/git-pull-request.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/github.svg b/theme/resources/feather/github.svg new file mode 100644 index 0000000..ff0af48 --- /dev/null +++ b/theme/resources/feather/github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/gitlab.svg b/theme/resources/feather/gitlab.svg new file mode 100644 index 0000000..85d54a1 --- /dev/null +++ b/theme/resources/feather/gitlab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/globe.svg b/theme/resources/feather/globe.svg new file mode 100644 index 0000000..0a0586d --- /dev/null +++ b/theme/resources/feather/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/grid.svg b/theme/resources/feather/grid.svg new file mode 100644 index 0000000..8ef2e9d --- /dev/null +++ b/theme/resources/feather/grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/hard-drive.svg b/theme/resources/feather/hard-drive.svg new file mode 100644 index 0000000..c08131d --- /dev/null +++ b/theme/resources/feather/hard-drive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/hash.svg b/theme/resources/feather/hash.svg new file mode 100644 index 0000000..c9c8d41 --- /dev/null +++ b/theme/resources/feather/hash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/headphones.svg b/theme/resources/feather/headphones.svg new file mode 100644 index 0000000..fd8915b --- /dev/null +++ b/theme/resources/feather/headphones.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/heart.svg b/theme/resources/feather/heart.svg new file mode 100644 index 0000000..a083b7e --- /dev/null +++ b/theme/resources/feather/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/help-circle.svg b/theme/resources/feather/help-circle.svg new file mode 100644 index 0000000..c9cd11a --- /dev/null +++ b/theme/resources/feather/help-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/hexagon.svg b/theme/resources/feather/hexagon.svg new file mode 100644 index 0000000..eae7f25 --- /dev/null +++ b/theme/resources/feather/hexagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/home.svg b/theme/resources/feather/home.svg new file mode 100644 index 0000000..7bb31b2 --- /dev/null +++ b/theme/resources/feather/home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/image.svg b/theme/resources/feather/image.svg new file mode 100644 index 0000000..a7d84b9 --- /dev/null +++ b/theme/resources/feather/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/inbox.svg b/theme/resources/feather/inbox.svg new file mode 100644 index 0000000..03a13b4 --- /dev/null +++ b/theme/resources/feather/inbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/info.svg b/theme/resources/feather/info.svg new file mode 100644 index 0000000..332616d --- /dev/null +++ b/theme/resources/feather/info.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/instagram.svg b/theme/resources/feather/instagram.svg new file mode 100644 index 0000000..c0a9562 --- /dev/null +++ b/theme/resources/feather/instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/italic.svg b/theme/resources/feather/italic.svg new file mode 100644 index 0000000..a123d37 --- /dev/null +++ b/theme/resources/feather/italic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/key.svg b/theme/resources/feather/key.svg new file mode 100644 index 0000000..e778e74 --- /dev/null +++ b/theme/resources/feather/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/layers.svg b/theme/resources/feather/layers.svg new file mode 100644 index 0000000..ea788c2 --- /dev/null +++ b/theme/resources/feather/layers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/layout.svg b/theme/resources/feather/layout.svg new file mode 100644 index 0000000..28743d9 --- /dev/null +++ b/theme/resources/feather/layout.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/life-buoy.svg b/theme/resources/feather/life-buoy.svg new file mode 100644 index 0000000..54c2bd7 --- /dev/null +++ b/theme/resources/feather/life-buoy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/link-2.svg b/theme/resources/feather/link-2.svg new file mode 100644 index 0000000..8cc7f6d --- /dev/null +++ b/theme/resources/feather/link-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/link.svg b/theme/resources/feather/link.svg new file mode 100644 index 0000000..c89dd41 --- /dev/null +++ b/theme/resources/feather/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/linkedin.svg b/theme/resources/feather/linkedin.svg new file mode 100644 index 0000000..3953109 --- /dev/null +++ b/theme/resources/feather/linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/list.svg b/theme/resources/feather/list.svg new file mode 100644 index 0000000..e734498 --- /dev/null +++ b/theme/resources/feather/list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/loader.svg b/theme/resources/feather/loader.svg new file mode 100644 index 0000000..e1a70c1 --- /dev/null +++ b/theme/resources/feather/loader.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/lock.svg b/theme/resources/feather/lock.svg new file mode 100644 index 0000000..de09d9d --- /dev/null +++ b/theme/resources/feather/lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/log-in.svg b/theme/resources/feather/log-in.svg new file mode 100644 index 0000000..ba0da59 --- /dev/null +++ b/theme/resources/feather/log-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/log-out.svg b/theme/resources/feather/log-out.svg new file mode 100644 index 0000000..c9002c9 --- /dev/null +++ b/theme/resources/feather/log-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/mail.svg b/theme/resources/feather/mail.svg new file mode 100644 index 0000000..2af169e --- /dev/null +++ b/theme/resources/feather/mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/map-pin.svg b/theme/resources/feather/map-pin.svg new file mode 100644 index 0000000..d5548e9 --- /dev/null +++ b/theme/resources/feather/map-pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/map.svg b/theme/resources/feather/map.svg new file mode 100644 index 0000000..ecebd7b --- /dev/null +++ b/theme/resources/feather/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/maximize-2.svg b/theme/resources/feather/maximize-2.svg new file mode 100644 index 0000000..e41fc0b --- /dev/null +++ b/theme/resources/feather/maximize-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/maximize.svg b/theme/resources/feather/maximize.svg new file mode 100644 index 0000000..fc30518 --- /dev/null +++ b/theme/resources/feather/maximize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/meh.svg b/theme/resources/feather/meh.svg new file mode 100644 index 0000000..6f57fff --- /dev/null +++ b/theme/resources/feather/meh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/menu.svg b/theme/resources/feather/menu.svg new file mode 100644 index 0000000..e8a84a9 --- /dev/null +++ b/theme/resources/feather/menu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/message-circle.svg b/theme/resources/feather/message-circle.svg new file mode 100644 index 0000000..4b21b32 --- /dev/null +++ b/theme/resources/feather/message-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/message-square.svg b/theme/resources/feather/message-square.svg new file mode 100644 index 0000000..6a2e4e5 --- /dev/null +++ b/theme/resources/feather/message-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/mic-off.svg b/theme/resources/feather/mic-off.svg new file mode 100644 index 0000000..0786219 --- /dev/null +++ b/theme/resources/feather/mic-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/mic.svg b/theme/resources/feather/mic.svg new file mode 100644 index 0000000..dc5f780 --- /dev/null +++ b/theme/resources/feather/mic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/minimize-2.svg b/theme/resources/feather/minimize-2.svg new file mode 100644 index 0000000..a720fa6 --- /dev/null +++ b/theme/resources/feather/minimize-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/minimize.svg b/theme/resources/feather/minimize.svg new file mode 100644 index 0000000..46d6119 --- /dev/null +++ b/theme/resources/feather/minimize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/minus-circle.svg b/theme/resources/feather/minus-circle.svg new file mode 100644 index 0000000..80c0de1 --- /dev/null +++ b/theme/resources/feather/minus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/minus-square.svg b/theme/resources/feather/minus-square.svg new file mode 100644 index 0000000..4862832 --- /dev/null +++ b/theme/resources/feather/minus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/minus.svg b/theme/resources/feather/minus.svg new file mode 100644 index 0000000..93cc734 --- /dev/null +++ b/theme/resources/feather/minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/monitor.svg b/theme/resources/feather/monitor.svg new file mode 100644 index 0000000..6c3556d --- /dev/null +++ b/theme/resources/feather/monitor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/moon.svg b/theme/resources/feather/moon.svg new file mode 100644 index 0000000..dbf7c6c --- /dev/null +++ b/theme/resources/feather/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/more-horizontal.svg b/theme/resources/feather/more-horizontal.svg new file mode 100644 index 0000000..dc6a855 --- /dev/null +++ b/theme/resources/feather/more-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/more-vertical.svg b/theme/resources/feather/more-vertical.svg new file mode 100644 index 0000000..cba6958 --- /dev/null +++ b/theme/resources/feather/more-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/mouse-pointer.svg b/theme/resources/feather/mouse-pointer.svg new file mode 100644 index 0000000..f5af559 --- /dev/null +++ b/theme/resources/feather/mouse-pointer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/move.svg b/theme/resources/feather/move.svg new file mode 100644 index 0000000..4e251b5 --- /dev/null +++ b/theme/resources/feather/move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/music.svg b/theme/resources/feather/music.svg new file mode 100644 index 0000000..7bee2f7 --- /dev/null +++ b/theme/resources/feather/music.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/navigation-2.svg b/theme/resources/feather/navigation-2.svg new file mode 100644 index 0000000..ae31db9 --- /dev/null +++ b/theme/resources/feather/navigation-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/navigation.svg b/theme/resources/feather/navigation.svg new file mode 100644 index 0000000..f600a41 --- /dev/null +++ b/theme/resources/feather/navigation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/octagon.svg b/theme/resources/feather/octagon.svg new file mode 100644 index 0000000..124c548 --- /dev/null +++ b/theme/resources/feather/octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/package.svg b/theme/resources/feather/package.svg new file mode 100644 index 0000000..f1e09ee --- /dev/null +++ b/theme/resources/feather/package.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/paperclip.svg b/theme/resources/feather/paperclip.svg new file mode 100644 index 0000000..b1f69b7 --- /dev/null +++ b/theme/resources/feather/paperclip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/pause-circle.svg b/theme/resources/feather/pause-circle.svg new file mode 100644 index 0000000..f6b1a8d --- /dev/null +++ b/theme/resources/feather/pause-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/pause.svg b/theme/resources/feather/pause.svg new file mode 100644 index 0000000..4e78038 --- /dev/null +++ b/theme/resources/feather/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/pen-tool.svg b/theme/resources/feather/pen-tool.svg new file mode 100644 index 0000000..0d26fa1 --- /dev/null +++ b/theme/resources/feather/pen-tool.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/percent.svg b/theme/resources/feather/percent.svg new file mode 100644 index 0000000..2cb9719 --- /dev/null +++ b/theme/resources/feather/percent.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/phone-call.svg b/theme/resources/feather/phone-call.svg new file mode 100644 index 0000000..8b86660 --- /dev/null +++ b/theme/resources/feather/phone-call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/phone-forwarded.svg b/theme/resources/feather/phone-forwarded.svg new file mode 100644 index 0000000..aa21bef --- /dev/null +++ b/theme/resources/feather/phone-forwarded.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/phone-incoming.svg b/theme/resources/feather/phone-incoming.svg new file mode 100644 index 0000000..b2d523a --- /dev/null +++ b/theme/resources/feather/phone-incoming.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/phone-missed.svg b/theme/resources/feather/phone-missed.svg new file mode 100644 index 0000000..4950f09 --- /dev/null +++ b/theme/resources/feather/phone-missed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/phone-off.svg b/theme/resources/feather/phone-off.svg new file mode 100644 index 0000000..4d00fb3 --- /dev/null +++ b/theme/resources/feather/phone-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/phone-outgoing.svg b/theme/resources/feather/phone-outgoing.svg new file mode 100644 index 0000000..fea27a3 --- /dev/null +++ b/theme/resources/feather/phone-outgoing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/phone.svg b/theme/resources/feather/phone.svg new file mode 100644 index 0000000..2a35154 --- /dev/null +++ b/theme/resources/feather/phone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/pie-chart.svg b/theme/resources/feather/pie-chart.svg new file mode 100644 index 0000000..b5bbe67 --- /dev/null +++ b/theme/resources/feather/pie-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/play-circle.svg b/theme/resources/feather/play-circle.svg new file mode 100644 index 0000000..8766dc7 --- /dev/null +++ b/theme/resources/feather/play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/play.svg b/theme/resources/feather/play.svg new file mode 100644 index 0000000..fd76e30 --- /dev/null +++ b/theme/resources/feather/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/plus-circle.svg b/theme/resources/feather/plus-circle.svg new file mode 100644 index 0000000..4291ff0 --- /dev/null +++ b/theme/resources/feather/plus-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/plus-square.svg b/theme/resources/feather/plus-square.svg new file mode 100644 index 0000000..c380e24 --- /dev/null +++ b/theme/resources/feather/plus-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/plus.svg b/theme/resources/feather/plus.svg new file mode 100644 index 0000000..703c5b7 --- /dev/null +++ b/theme/resources/feather/plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/pocket.svg b/theme/resources/feather/pocket.svg new file mode 100644 index 0000000..a3b2561 --- /dev/null +++ b/theme/resources/feather/pocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/power.svg b/theme/resources/feather/power.svg new file mode 100644 index 0000000..598308f --- /dev/null +++ b/theme/resources/feather/power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/printer.svg b/theme/resources/feather/printer.svg new file mode 100644 index 0000000..8a9a7ac --- /dev/null +++ b/theme/resources/feather/printer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/radio.svg b/theme/resources/feather/radio.svg new file mode 100644 index 0000000..5abfcd1 --- /dev/null +++ b/theme/resources/feather/radio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/refresh-ccw.svg b/theme/resources/feather/refresh-ccw.svg new file mode 100644 index 0000000..10cff0e --- /dev/null +++ b/theme/resources/feather/refresh-ccw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/refresh-cw.svg b/theme/resources/feather/refresh-cw.svg new file mode 100644 index 0000000..06c358d --- /dev/null +++ b/theme/resources/feather/refresh-cw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/repeat.svg b/theme/resources/feather/repeat.svg new file mode 100644 index 0000000..c7657b0 --- /dev/null +++ b/theme/resources/feather/repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/rewind.svg b/theme/resources/feather/rewind.svg new file mode 100644 index 0000000..7b0fa3d --- /dev/null +++ b/theme/resources/feather/rewind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/rotate-ccw.svg b/theme/resources/feather/rotate-ccw.svg new file mode 100644 index 0000000..ade5dc4 --- /dev/null +++ b/theme/resources/feather/rotate-ccw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/rotate-cw.svg b/theme/resources/feather/rotate-cw.svg new file mode 100644 index 0000000..83dca35 --- /dev/null +++ b/theme/resources/feather/rotate-cw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/rss.svg b/theme/resources/feather/rss.svg new file mode 100644 index 0000000..c9a1368 --- /dev/null +++ b/theme/resources/feather/rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/save.svg b/theme/resources/feather/save.svg new file mode 100644 index 0000000..46c7299 --- /dev/null +++ b/theme/resources/feather/save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/scissors.svg b/theme/resources/feather/scissors.svg new file mode 100644 index 0000000..fd0647f --- /dev/null +++ b/theme/resources/feather/scissors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/search.svg b/theme/resources/feather/search.svg new file mode 100644 index 0000000..8710306 --- /dev/null +++ b/theme/resources/feather/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/send.svg b/theme/resources/feather/send.svg new file mode 100644 index 0000000..42ef2a2 --- /dev/null +++ b/theme/resources/feather/send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/server.svg b/theme/resources/feather/server.svg new file mode 100644 index 0000000..d1f6d48 --- /dev/null +++ b/theme/resources/feather/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/settings.svg b/theme/resources/feather/settings.svg new file mode 100644 index 0000000..19c2726 --- /dev/null +++ b/theme/resources/feather/settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/share-2.svg b/theme/resources/feather/share-2.svg new file mode 100644 index 0000000..09b1c7b --- /dev/null +++ b/theme/resources/feather/share-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/share.svg b/theme/resources/feather/share.svg new file mode 100644 index 0000000..df38c14 --- /dev/null +++ b/theme/resources/feather/share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/shield-off.svg b/theme/resources/feather/shield-off.svg new file mode 100644 index 0000000..18692dd --- /dev/null +++ b/theme/resources/feather/shield-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/shield.svg b/theme/resources/feather/shield.svg new file mode 100644 index 0000000..c7c4841 --- /dev/null +++ b/theme/resources/feather/shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/shopping-bag.svg b/theme/resources/feather/shopping-bag.svg new file mode 100644 index 0000000..eaa39e8 --- /dev/null +++ b/theme/resources/feather/shopping-bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/shopping-cart.svg b/theme/resources/feather/shopping-cart.svg new file mode 100644 index 0000000..17a40bf --- /dev/null +++ b/theme/resources/feather/shopping-cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/shuffle.svg b/theme/resources/feather/shuffle.svg new file mode 100644 index 0000000..8cfb5db --- /dev/null +++ b/theme/resources/feather/shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/sidebar.svg b/theme/resources/feather/sidebar.svg new file mode 100644 index 0000000..8ba817e --- /dev/null +++ b/theme/resources/feather/sidebar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/skip-back.svg b/theme/resources/feather/skip-back.svg new file mode 100644 index 0000000..88d024e --- /dev/null +++ b/theme/resources/feather/skip-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/skip-forward.svg b/theme/resources/feather/skip-forward.svg new file mode 100644 index 0000000..f3fdac3 --- /dev/null +++ b/theme/resources/feather/skip-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/slack.svg b/theme/resources/feather/slack.svg new file mode 100644 index 0000000..5d97346 --- /dev/null +++ b/theme/resources/feather/slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/slash.svg b/theme/resources/feather/slash.svg new file mode 100644 index 0000000..f4131b8 --- /dev/null +++ b/theme/resources/feather/slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/sliders.svg b/theme/resources/feather/sliders.svg new file mode 100644 index 0000000..19c9385 --- /dev/null +++ b/theme/resources/feather/sliders.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/smartphone.svg b/theme/resources/feather/smartphone.svg new file mode 100644 index 0000000..f7d5ba8 --- /dev/null +++ b/theme/resources/feather/smartphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/smile.svg b/theme/resources/feather/smile.svg new file mode 100644 index 0000000..24dc8a2 --- /dev/null +++ b/theme/resources/feather/smile.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/speaker.svg b/theme/resources/feather/speaker.svg new file mode 100644 index 0000000..8e7ffda --- /dev/null +++ b/theme/resources/feather/speaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/square.svg b/theme/resources/feather/square.svg new file mode 100644 index 0000000..6eabc77 --- /dev/null +++ b/theme/resources/feather/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/star.svg b/theme/resources/feather/star.svg new file mode 100644 index 0000000..bcdc31a --- /dev/null +++ b/theme/resources/feather/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/stop-circle.svg b/theme/resources/feather/stop-circle.svg new file mode 100644 index 0000000..c10d9d4 --- /dev/null +++ b/theme/resources/feather/stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/sun.svg b/theme/resources/feather/sun.svg new file mode 100644 index 0000000..7f51b94 --- /dev/null +++ b/theme/resources/feather/sun.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/sunrise.svg b/theme/resources/feather/sunrise.svg new file mode 100644 index 0000000..eff4b1e --- /dev/null +++ b/theme/resources/feather/sunrise.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/sunset.svg b/theme/resources/feather/sunset.svg new file mode 100644 index 0000000..a5a2221 --- /dev/null +++ b/theme/resources/feather/sunset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/tablet.svg b/theme/resources/feather/tablet.svg new file mode 100644 index 0000000..76f5849 --- /dev/null +++ b/theme/resources/feather/tablet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/tag.svg b/theme/resources/feather/tag.svg new file mode 100644 index 0000000..b5e495c --- /dev/null +++ b/theme/resources/feather/tag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/target.svg b/theme/resources/feather/target.svg new file mode 100644 index 0000000..be84b17 --- /dev/null +++ b/theme/resources/feather/target.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/terminal.svg b/theme/resources/feather/terminal.svg new file mode 100644 index 0000000..af459c0 --- /dev/null +++ b/theme/resources/feather/terminal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/thermometer.svg b/theme/resources/feather/thermometer.svg new file mode 100644 index 0000000..33142cc --- /dev/null +++ b/theme/resources/feather/thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/thumbs-down.svg b/theme/resources/feather/thumbs-down.svg new file mode 100644 index 0000000..3e7bcd6 --- /dev/null +++ b/theme/resources/feather/thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/thumbs-up.svg b/theme/resources/feather/thumbs-up.svg new file mode 100644 index 0000000..226c44d --- /dev/null +++ b/theme/resources/feather/thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/toggle-left.svg b/theme/resources/feather/toggle-left.svg new file mode 100644 index 0000000..240be29 --- /dev/null +++ b/theme/resources/feather/toggle-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/toggle-right.svg b/theme/resources/feather/toggle-right.svg new file mode 100644 index 0000000..fc6e81c --- /dev/null +++ b/theme/resources/feather/toggle-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/trash-2.svg b/theme/resources/feather/trash-2.svg new file mode 100644 index 0000000..f24d55b --- /dev/null +++ b/theme/resources/feather/trash-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/trash.svg b/theme/resources/feather/trash.svg new file mode 100644 index 0000000..55650bd --- /dev/null +++ b/theme/resources/feather/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/trello.svg b/theme/resources/feather/trello.svg new file mode 100644 index 0000000..b2f599b --- /dev/null +++ b/theme/resources/feather/trello.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/trending-down.svg b/theme/resources/feather/trending-down.svg new file mode 100644 index 0000000..a9d4cfa --- /dev/null +++ b/theme/resources/feather/trending-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/trending-up.svg b/theme/resources/feather/trending-up.svg new file mode 100644 index 0000000..52026a4 --- /dev/null +++ b/theme/resources/feather/trending-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/triangle.svg b/theme/resources/feather/triangle.svg new file mode 100644 index 0000000..274b652 --- /dev/null +++ b/theme/resources/feather/triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/truck.svg b/theme/resources/feather/truck.svg new file mode 100644 index 0000000..3389837 --- /dev/null +++ b/theme/resources/feather/truck.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/tv.svg b/theme/resources/feather/tv.svg new file mode 100644 index 0000000..955bbff --- /dev/null +++ b/theme/resources/feather/tv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/twitter.svg b/theme/resources/feather/twitter.svg new file mode 100644 index 0000000..f8886ec --- /dev/null +++ b/theme/resources/feather/twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/type.svg b/theme/resources/feather/type.svg new file mode 100644 index 0000000..c6b2de3 --- /dev/null +++ b/theme/resources/feather/type.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/umbrella.svg b/theme/resources/feather/umbrella.svg new file mode 100644 index 0000000..dc77c0c --- /dev/null +++ b/theme/resources/feather/umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/underline.svg b/theme/resources/feather/underline.svg new file mode 100644 index 0000000..044945d --- /dev/null +++ b/theme/resources/feather/underline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/unlock.svg b/theme/resources/feather/unlock.svg new file mode 100644 index 0000000..01dc359 --- /dev/null +++ b/theme/resources/feather/unlock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/upload-cloud.svg b/theme/resources/feather/upload-cloud.svg new file mode 100644 index 0000000..a1db297 --- /dev/null +++ b/theme/resources/feather/upload-cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/upload.svg b/theme/resources/feather/upload.svg new file mode 100644 index 0000000..91eaff7 --- /dev/null +++ b/theme/resources/feather/upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/user-check.svg b/theme/resources/feather/user-check.svg new file mode 100644 index 0000000..42f91b2 --- /dev/null +++ b/theme/resources/feather/user-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/user-minus.svg b/theme/resources/feather/user-minus.svg new file mode 100644 index 0000000..44b75f5 --- /dev/null +++ b/theme/resources/feather/user-minus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/user-plus.svg b/theme/resources/feather/user-plus.svg new file mode 100644 index 0000000..21460f6 --- /dev/null +++ b/theme/resources/feather/user-plus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/user-x.svg b/theme/resources/feather/user-x.svg new file mode 100644 index 0000000..0c41a48 --- /dev/null +++ b/theme/resources/feather/user-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/user.svg b/theme/resources/feather/user.svg new file mode 100644 index 0000000..7bb5f29 --- /dev/null +++ b/theme/resources/feather/user.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/users.svg b/theme/resources/feather/users.svg new file mode 100644 index 0000000..aacf6b0 --- /dev/null +++ b/theme/resources/feather/users.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/video-off.svg b/theme/resources/feather/video-off.svg new file mode 100644 index 0000000..08ec697 --- /dev/null +++ b/theme/resources/feather/video-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/video.svg b/theme/resources/feather/video.svg new file mode 100644 index 0000000..8ff156a --- /dev/null +++ b/theme/resources/feather/video.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/voicemail.svg b/theme/resources/feather/voicemail.svg new file mode 100644 index 0000000..5d78a8e --- /dev/null +++ b/theme/resources/feather/voicemail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/volume-1.svg b/theme/resources/feather/volume-1.svg new file mode 100644 index 0000000..150e875 --- /dev/null +++ b/theme/resources/feather/volume-1.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/volume-2.svg b/theme/resources/feather/volume-2.svg new file mode 100644 index 0000000..03d521c --- /dev/null +++ b/theme/resources/feather/volume-2.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/volume-x.svg b/theme/resources/feather/volume-x.svg new file mode 100644 index 0000000..be44240 --- /dev/null +++ b/theme/resources/feather/volume-x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/volume.svg b/theme/resources/feather/volume.svg new file mode 100644 index 0000000..53bfe15 --- /dev/null +++ b/theme/resources/feather/volume.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/watch.svg b/theme/resources/feather/watch.svg new file mode 100644 index 0000000..a1099da --- /dev/null +++ b/theme/resources/feather/watch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/wifi-off.svg b/theme/resources/feather/wifi-off.svg new file mode 100644 index 0000000..79430c3 --- /dev/null +++ b/theme/resources/feather/wifi-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/wifi.svg b/theme/resources/feather/wifi.svg new file mode 100644 index 0000000..2e1a7fd --- /dev/null +++ b/theme/resources/feather/wifi.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/wind.svg b/theme/resources/feather/wind.svg new file mode 100644 index 0000000..82b3646 --- /dev/null +++ b/theme/resources/feather/wind.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/x-circle.svg b/theme/resources/feather/x-circle.svg new file mode 100644 index 0000000..94aad5e --- /dev/null +++ b/theme/resources/feather/x-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/x-octagon.svg b/theme/resources/feather/x-octagon.svg new file mode 100644 index 0000000..8543198 --- /dev/null +++ b/theme/resources/feather/x-octagon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/x-square.svg b/theme/resources/feather/x-square.svg new file mode 100644 index 0000000..7677c38 --- /dev/null +++ b/theme/resources/feather/x-square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/x.svg b/theme/resources/feather/x.svg new file mode 100644 index 0000000..7d5875c --- /dev/null +++ b/theme/resources/feather/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/youtube.svg b/theme/resources/feather/youtube.svg new file mode 100644 index 0000000..c482438 --- /dev/null +++ b/theme/resources/feather/youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/zap-off.svg b/theme/resources/feather/zap-off.svg new file mode 100644 index 0000000..c636f8b --- /dev/null +++ b/theme/resources/feather/zap-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/zap.svg b/theme/resources/feather/zap.svg new file mode 100644 index 0000000..8fdafa9 --- /dev/null +++ b/theme/resources/feather/zap.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/zoom-in.svg b/theme/resources/feather/zoom-in.svg new file mode 100644 index 0000000..da4572d --- /dev/null +++ b/theme/resources/feather/zoom-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/theme/resources/feather/zoom-out.svg b/theme/resources/feather/zoom-out.svg new file mode 100644 index 0000000..fd678d7 --- /dev/null +++ b/theme/resources/feather/zoom-out.svg @@ -0,0 +1 @@ + \ No newline at end of file From d0f547102b0efb012cc6507cedbfad0bc15a35a2 Mon Sep 17 00:00:00 2001 From: Marko Semet Date: Wed, 22 May 2019 09:06:59 +0200 Subject: [PATCH 06/12] Use venv --- gen.sh | 11 +++++++++-- tools/cssfix.py | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/gen.sh b/gen.sh index 8eaac81..75ae894 100755 --- a/gen.sh +++ b/gen.sh @@ -1,8 +1,15 @@ #!/usr/bin/env bash +# Init venv +echo "Create venv" && +cd `dirname $0` && +rm -rf ./venv && +python3 -m venv venv && +source ./venv/bin/activate && + # Install updates -pip3 install --upgrade --user pip && -pip3 install --upgrade --user pelican markdown htmlmin && +pip install --upgrade pip && +pip install --upgrade pelican markdown htmlmin && # Clean and generate (rm -rf output || true) && diff --git a/tools/cssfix.py b/tools/cssfix.py index c987bf9..32df29d 100755 --- a/tools/cssfix.py +++ b/tools/cssfix.py @@ -4,7 +4,7 @@ if __name__ == '__main__': # Install cssutils import subprocess - subprocess.check_call(("pip", "install", "--upgrade", "--user", "cssutils")) + subprocess.check_call(("pip", "install", "--upgrade", "cssutils")) # Run tool import base64 From c8beebdb1f90d0b0797636f05525c2d48c28ac97 Mon Sep 17 00:00:00 2001 From: Marko Semet Date: Wed, 22 May 2019 10:16:50 +0200 Subject: [PATCH 07/12] Just create venv onetime --- gen.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/gen.sh b/gen.sh index 75ae894..4657bcc 100755 --- a/gen.sh +++ b/gen.sh @@ -1,10 +1,13 @@ #!/usr/bin/env bash # Init venv -echo "Create venv" && cd `dirname $0` && -rm -rf ./venv && -python3 -m venv venv && +( + if [ ! -d ./venv ]; then + echo "Create venv" && + python3 -m venv venv + fi +) && source ./venv/bin/activate && # Install updates From 87cee4043d3d9400275a3ca200fc3a1fc3846217 Mon Sep 17 00:00:00 2001 From: Marko Semet Date: Wed, 22 May 2019 20:05:09 +0200 Subject: [PATCH 08/12] page and translations --- theme/static/css/light.css | 33 +++++++++++++++++++++++++------ theme/static/css/main.css | 17 ++++++++++++++-- theme/templates/page.html | 30 ++++++++++++++++++++++++++++ theme/templates/translations.html | 18 +++++++++++++++++ 4 files changed, 90 insertions(+), 8 deletions(-) create mode 100644 theme/templates/page.html create mode 100644 theme/templates/translations.html diff --git a/theme/static/css/light.css b/theme/static/css/light.css index de9dcd0..ba9aff6 100644 --- a/theme/static/css/light.css +++ b/theme/static/css/light.css @@ -1,17 +1,38 @@ /* Main colors */ body { - color: #110; + color: #000; } body > * { - background: #110; - color: #EEF; + background: #000; + color: #FFF; +} + +a { + color: #FFF; + text-decoration: underline; + font-style: none; } .main1 { - background: #DDE; - color: #110; + background: #FFF; + color: #000; + overflow: hidden;; +} +.main1 a { + color: #000; } .main2 { - background: #FFF; + margin: -1em; +} +.main3 { + margin: 0 1em; + padding: 1em 0; + background: #FFF; + box-shadow: 0 0 1em #000; +} + +/* Page */ +.updated, .translations, .translation a { + color: #888; } diff --git a/theme/static/css/main.css b/theme/static/css/main.css index 24bb954..8d8555f 100644 --- a/theme/static/css/main.css +++ b/theme/static/css/main.css @@ -16,8 +16,21 @@ body > * { } .main2 { - height: 100%; + height: calc(100%); } .main3 { - display: inline-block; + margin-left: 1em; + margin-right: 1em; + height: calc(100%); +} + +/* page */ +.page_title { + +} +.translations { + float: right; +} +.updated { + font-style: italic; } diff --git a/theme/templates/page.html b/theme/templates/page.html new file mode 100644 index 0000000..bb8c977 --- /dev/null +++ b/theme/templates/page.html @@ -0,0 +1,30 @@ +{% extends "base.html" %} +{% block html_lang %}{{ page.lang }}{% endblock %} + +{% block title %}{{ SITENAME }} - {{ page.title }}{%endblock%} + +{% block head %} + {{ super() }} + + {% import 'translations.html' as translations with context %} + {% if translations.entry_hreflang(page) %} + {{ translations.entry_hreflang(page) }} + {% endif %} +{% endblock %} + +{% block content %} +
+
+ {% import 'translations.html' as translations with context %} + {{ translations.translations_for(page) }} + {{ page.title }} +
+ {% if page.modified %} +

Zuletzt aktualisiert: {{ page.locale_modified }}

+ {% endif %} + +
+ {{ page.content }} +
+
+{% endblock %} diff --git a/theme/templates/translations.html b/theme/templates/translations.html new file mode 100644 index 0000000..80cc423 --- /dev/null +++ b/theme/templates/translations.html @@ -0,0 +1,18 @@ +{% macro translations_for(article) %} + {% if article.translations %} +
+ {{ article.translations[0].lang }} + {% for translation in article.translations[1:] %} + / {{ translation.lang }} + {% endfor %} +
+ {% endif %} +{% endmacro %} + +{% macro entry_hreflang(entry) %} + {% if entry.translations %} + {% for translation in entry.translations %} + + {% endfor %} + {% endif %} +{% endmacro %} From 48397d9c289a912374f2786b7b469d509cd6ce6a Mon Sep 17 00:00:00 2001 From: Marko Semet Date: Sat, 25 May 2019 03:53:02 +0200 Subject: [PATCH 09/12] Fix relative urls --- publishconf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/publishconf.py b/publishconf.py index 185184d..58e6726 100644 --- a/publishconf.py +++ b/publishconf.py @@ -12,7 +12,7 @@ from pelicanconf import * # If your site is available via HTTPS, make sure SITEURL begins with https:// SITEURL = '' -RELATIVE_URLS = False +RELATIVE_URLS = True FEED_ALL_ATOM = 'feeds/all.atom.xml' CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml' @@ -22,4 +22,4 @@ DELETE_OUTPUT_DIRECTORY = True # Following items are often useful when publishing #DISQUS_SITENAME = "" -#GOOGLE_ANALYTICS = "" \ No newline at end of file +#GOOGLE_ANALYTICS = "" From f3279c071ff05cfa609a5ae9d4762d00633d2da0 Mon Sep 17 00:00:00 2001 From: Marko Semet Date: Sat, 25 May 2019 03:53:52 +0200 Subject: [PATCH 10/12] Add menu css --- theme/static/css/light.css | 19 ++++++++++----- theme/static/css/main.css | 49 ++++++++++++++++++++++++++++++++++---- theme/templates/base.html | 8 +++++-- 3 files changed, 63 insertions(+), 13 deletions(-) diff --git a/theme/static/css/light.css b/theme/static/css/light.css index ba9aff6..ca32e8e 100644 --- a/theme/static/css/light.css +++ b/theme/static/css/light.css @@ -17,21 +17,28 @@ a { .main1 { background: #FFF; color: #000; - overflow: hidden;; + overflow: hidden; } .main1 a { color: #000; } -.main2 { - margin: -1em; -} .main3 { - margin: 0 1em; - padding: 1em 0; background: #FFF; box-shadow: 0 0 1em #000; } +/* header */ +header nav li a { + font-style: none; + text-decoration: none; +} +header nav > ul > li { + background: #FFF; +} +header nav > ul > li > div > a { + background: #000; +} + /* Page */ .updated, .translations, .translation a { color: #888; diff --git a/theme/static/css/main.css b/theme/static/css/main.css index 8d8555f..7134998 100644 --- a/theme/static/css/main.css +++ b/theme/static/css/main.css @@ -15,19 +15,58 @@ body > * { padding: 0 10%; } +.main1 { + overflow: hidden; +} .main2 { height: calc(100%); + margin: -1em; } .main3 { - margin-left: 1em; - margin-right: 1em; + padding: 1em 0; + margin: 0 1em; height: calc(100%); } +/* header */ +header nav ul { + padding: 0; + border: 0; + margin: 0; + list-style: none; + display: block; +} +header nav li { + display: inline-block; + margin: 0; + padding: 0; + border: 0; +} +header nav > ul { + padding-top: 0.25em; +} +header nav > ul > li { + float: left; + margin-left: 0.5em; +} +header nav > ul > li:first-child { + margin-left: 0; +} +header nav > ul > li > div { + margin-bottom: 0.25em; +} +header nav > ul > li > div > a { + display: inline-block; + position: relative; + padding-bottom: 0.25em; + transition: top 0.5s; + top: 0; +} +header nav > ul > li:hover > div > a, header nav > ul > li.active > div > a { + top: -0.25em; +} + /* page */ -.page_title { - -} .translations { float: right; } diff --git a/theme/templates/base.html b/theme/templates/base.html index 8734a6a..6057834 100644 --- a/theme/templates/base.html +++ b/theme/templates/base.html @@ -45,10 +45,14 @@ {% if DISPLAY_PAGES_ON_MENU %} {% for p in pages %} - {{ p.title }} + {% endfor %}{% endif %}{% if DISPLAY_CATEGORIES_ON_MENU %}{% for cat, null in categories %} - {{ cat }} +
+ {{ cat }} +
{% endfor %} {% endif %} From 42372f5598a63602a14748969306da76d520be87 Mon Sep 17 00:00:00 2001 From: Marko Semet Date: Sat, 25 May 2019 14:29:35 +0200 Subject: [PATCH 11/12] Speed up header nav movement --- theme/static/css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme/static/css/main.css b/theme/static/css/main.css index 7134998..ae268f0 100644 --- a/theme/static/css/main.css +++ b/theme/static/css/main.css @@ -59,7 +59,7 @@ header nav > ul > li > div > a { display: inline-block; position: relative; padding-bottom: 0.25em; - transition: top 0.5s; + transition: top 0.25s; top: 0; } header nav > ul > li:hover > div > a, header nav > ul > li.active > div > a { From d469ce74cc5a9082f889f881e0d488a8e5df941e Mon Sep 17 00:00:00 2001 From: Marko Semet Date: Mon, 17 Jun 2019 10:12:12 +0200 Subject: [PATCH 12/12] Fix main viewport --- theme/static/css/main.css | 15 +++++++++++---- theme/templates/base.html | 10 ++++++---- 2 files changed, 17 insertions(+), 8 deletions(-) diff --git a/theme/static/css/main.css b/theme/static/css/main.css index ae268f0..f2e9072 100644 --- a/theme/static/css/main.css +++ b/theme/static/css/main.css @@ -3,8 +3,13 @@ html, body { margin: 0; padding: 0; border: 0; +} +html { height: 100%; } +body { + min-height: 100%; +} body { display: grid; @@ -19,13 +24,14 @@ body > * { overflow: hidden; } .main2 { - height: calc(100%); + height: 100%; + min-height: 100%; margin: -1em; } .main3 { padding: 1em 0; margin: 0 1em; - height: calc(100%); + min-height: 100%; } /* header */ @@ -44,13 +50,14 @@ header nav li { } header nav > ul { padding-top: 0.25em; + margin-left: -0.5em; } header nav > ul > li { float: left; margin-left: 0.5em; } -header nav > ul > li:first-child { - margin-left: 0; +header nav > ul > li.page { + float: right; } header nav > ul > li > div { margin-bottom: 0.25em; diff --git a/theme/templates/base.html b/theme/templates/base.html index 6057834..2f9d1d6 100644 --- a/theme/templates/base.html +++ b/theme/templates/base.html @@ -37,19 +37,21 @@

{{ SITENAME }} {{ SITESUBTITLE }}