diff client/src/application/assets/application.scss @ 585:ef307bd6b5d8

refac: restructured client application To make the application more accessible for developers, the structure was reorganized. Instead of sticking to technical terminology, the application terminology is according to the domain: I.e. "map" contains everything regarding map (including store).
author Thomas Junk <thomas.junk@intevation.de>
date Fri, 07 Sep 2018 11:13:56 +0200
parents
children b17a4482d07d
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/client/src/application/assets/application.scss	Fri Sep 07 11:13:56 2018 +0200
@@ -0,0 +1,24 @@
+$offset: 20px;
+$small-offset: 10px;
+$large-offset: 30px;
+$x-large-offset: 50px;
+$iconsize: 3em;
+$iconLineHeight: 0.25em;
+$iconwidth: 20px;
+$basic-shadow: 1px 3px 8px 2px rgba(220, 220, 220, 0.75);
+$basic-shadow-light: 1px 1px 12px 1px rgba(235, 235, 235, 0.75);
+$transition: 0.5s;
+$transition-fast: 0.1s;
+$transition-slow: 3s;
+$topbarheight: 5vh;
+
+%fully-centered {
+  position: absolute;
+  top: 50%;
+  left: 50%;
+  transform: translate(-50%, -50%);
+}
+
+.ui-element {
+  pointer-events: auto;
+}