summaryrefslogtreecommitdiffstats
path: root/webapp/src/assets
diff options
context:
space:
mode:
authorJannik Schönartz2018-07-02 22:39:23 +0200
committerJannik Schönartz2018-07-02 22:39:23 +0200
commit718f9b58331f4a9bee5eba3296329cc58b4364a6 (patch)
tree63e0048923f1a2a4f4fc44ef9aec0e7c51a967e1 /webapp/src/assets
parent[server] Initial commit to add the node server stuff. (diff)
downloadbas-718f9b58331f4a9bee5eba3296329cc58b4364a6.tar.gz
bas-718f9b58331f4a9bee5eba3296329cc58b4364a6.tar.xz
bas-718f9b58331f4a9bee5eba3296329cc58b4364a6.zip
[webapp] Initial commit to add the node webapp stuff.
Diffstat (limited to 'webapp/src/assets')
-rw-r--r--webapp/src/assets/logo.svg18
-rw-r--r--webapp/src/assets/styles.css27
2 files changed, 45 insertions, 0 deletions
diff --git a/webapp/src/assets/logo.svg b/webapp/src/assets/logo.svg
new file mode 100644
index 0000000..cadb999
--- /dev/null
+++ b/webapp/src/assets/logo.svg
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
+<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
+ viewBox="0 0 655 768" style="enable-background:new 0 0 655 768;" xml:space="preserve">
+<style type="text/css">
+ .st0{fill:#FFFFFF;}
+ .st1{fill:#0095FF;}
+ .st2{fill:#004373;}
+ .st3{fill:#0076CA;}
+ .st4{fill:#005998;}
+</style>
+<polygon id="XMLID_5_" class="st0" points="618.8,360.3 3.5,715.5 3.5,753.6 651.8,379.4 "/>
+<polygon id="XMLID_13_" class="st1" points="586,342.5 585.4,342.9 171.5,582.7 171.5,491.3 428.4,343 428.5,342.9 427.8,342.5
+ 333.5,288.1 333.5,196.3 "/>
+<polygon id="XMLID_14_" class="st2" points="249.5,147.6 249.5,239.6 87.5,146.1 87.5,631.3 3.5,680 3.5,5.1 5.5,6.2 "/>
+<polygon id="XMLID_8_" class="st3" points="586,342.5 585.4,342.9 428.4,343 428.5,342.9 427.8,342.5 333.5,288.1 333.5,196.3 "/>
+<polygon id="XMLID_11_" class="st4" points="249.5,147.6 249.5,239.6 87.5,146.1 5.5,6.2 "/>
+</svg>
diff --git a/webapp/src/assets/styles.css b/webapp/src/assets/styles.css
new file mode 100644
index 0000000..3a7da9a
--- /dev/null
+++ b/webapp/src/assets/styles.css
@@ -0,0 +1,27 @@
+html {
+ overflow-y: auto;
+}
+
+.non-selectable {
+ -webkit-user-select: none; /* Safari 3.1+ */
+ -moz-user-select: none; /* Firefox 2+ */
+ -ms-user-select: none; /* IE 10+ */
+ user-select: none; /* Standard syntax */
+}
+
+.non-draggable {
+ -webkit-user-drag: none;
+ user-drag: none;
+}
+
+::-webkit-scrollbar {
+ width: 8px;
+}
+
+::-webkit-scrollbar-thumb {
+ background-color: #666666;
+}
+
+::-webkit-scrollbar-button {
+ display: none;
+}