comparison client/src/assets/application.sass @ 1272:bc55ffaeb639

cleaned up client/src directory better organization of files and directories, better naming, separation of admin and map context
author Markus Kottlaender <markus@intevation.de>
date Thu, 22 Nov 2018 07:07:12 +0100
parents
children dc3fb8ad8f86
comparison
equal deleted inserted replaced
1268:aca692e73028 1272:bc55ffaeb639
1 /*
2 * This is Free Software under GNU Affero General Public License v >= 3.0
3 * without warranty, see README.md and license for details.
4 *
5 * SPDX-License-Identifier: AGPL-3.0-or-later
6 * License-Filename: LICENSES/AGPL-3.0.txt
7 *
8 * Copyright (C) 2018 by via donau
9 * – Österreichische Wasserstraßen-Gesellschaft mbH
10 * Software engineering by Intevation GmbH
11 *
12 * Author(s):
13 * Thomas Junk <thomas.junk@intevation.de>
14 * Markus Kottländer <markus.kottlaender@intevation>
15 */
16 $shadow-xs: 0 0.1rem 0.5rem rgba(0, 0, 0, 0.2)
17 $border-radius: 0.25rem
18 $icon-height: 2rem
19 $icon-width: 2rem
20 $large-offset: 2rem
21 $offset: 1rem
22 $sidebar-width: 15rem
23 $slight-transparent: 0.96
24 $small-offset: 0.5rem
25 $smaller: 0.9rem
26 $transition-fast: 0.3s
27 $x-large-offset: 3rem
28 $xx-large-offset: 5rem
29 $color-info: #17a2b8
30
31 a
32 color: $color-info
33
34 .w-90
35 width: 90%
36
37 .debug
38 border: 1px solid red
39
40 %fully-centered
41 position: absolute
42 top: 50%
43 left: 50%
44 transform: translate(-50%, -50%)
45
46 .ui-element
47 pointer-events: auto
48
49 .shadow-xs
50 box-shadow: $shadow-xs
51
52 .box
53 opacity: $slight-transparent
54 max-height: 0
55 max-width: 0
56 overflow: hidden
57 margin-left: 0
58 margin-right: 0
59 box-shadow: $shadow-xs
60 transition: max-width .4s, max-height .4s, margin-left .4s, margin-right .4s
61
62 .expanded
63 max-height: 999px
64 max-width: 999px
65 margin-left: 0.5rem
66 margin-right: 0.5rem