annotate client/src/assets/application.scss @ 32:0c19dcc352f9

Dynamic height of dialogbox Depending on status (loginfailed) the height of the loginmask is now dynamic.
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 26 Jun 2018 13:43:14 +0200
parents 7ba0a77fd679
children 2c58906649be
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19
c7fe6244528c Refactoring local SCSS to a application wide accessible SCSS
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
1 $offset: 20px;
c7fe6244528c Refactoring local SCSS to a application wide accessible SCSS
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
2 $small-offset: 10px;
30
7ba0a77fd679 ol component added
Thomas Junk <thomas.junk@intevation.de>
parents: 25
diff changeset
3 $large-offset: 30px;
19
c7fe6244528c Refactoring local SCSS to a application wide accessible SCSS
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
4 $iconsize: 3em;
c7fe6244528c Refactoring local SCSS to a application wide accessible SCSS
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
5 $iconLineHeight: 0.25em;
c7fe6244528c Refactoring local SCSS to a application wide accessible SCSS
Thomas Junk <thomas.junk@intevation.de>
parents:
diff changeset
6 $iconwidth: 20px;
24
10ebbf197523 Rework layout of login page
Thomas Junk <thomas.junk@intevation.de>
parents: 19
diff changeset
7 $basic-shadow: 1px 3px 8px 2px rgba(220, 220, 220, 0.75);
25
a728610b3812 Add Light visual hints
Thomas Junk <thomas.junk@intevation.de>
parents: 24
diff changeset
8 $basic-shadow-light: 1px 1px 12px 1px rgba(235, 235, 235, 0.75);
30
7ba0a77fd679 ol component added
Thomas Junk <thomas.junk@intevation.de>
parents: 25
diff changeset
9
24
10ebbf197523 Rework layout of login page
Thomas Junk <thomas.junk@intevation.de>
parents: 19
diff changeset
10
10ebbf197523 Rework layout of login page
Thomas Junk <thomas.junk@intevation.de>
parents: 19
diff changeset
11 %fully-centered {
10ebbf197523 Rework layout of login page
Thomas Junk <thomas.junk@intevation.de>
parents: 19
diff changeset
12 position: absolute;
10ebbf197523 Rework layout of login page
Thomas Junk <thomas.junk@intevation.de>
parents: 19
diff changeset
13 top: 50%;
10ebbf197523 Rework layout of login page
Thomas Junk <thomas.junk@intevation.de>
parents: 19
diff changeset
14 left: 50%;
10ebbf197523 Rework layout of login page
Thomas Junk <thomas.junk@intevation.de>
parents: 19
diff changeset
15 transform: translate(-50%, -50%);
10ebbf197523 Rework layout of login page
Thomas Junk <thomas.junk@intevation.de>
parents: 19
diff changeset
16 }