mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
804 lines
17 KiB
CSS
804 lines
17 KiB
CSS
/* ============================================================
|
|
|
|
Grid Layout Page
|
|
|
|
Datei : layout.less
|
|
Datum : 2020-04-30
|
|
Autor : Christine Slotty
|
|
Copyright : Gradio
|
|
|
|
============================================================*/
|
|
/*====================================
|
|
= BREAK POINTS =
|
|
====================================*/
|
|
/* https://scotch.io/courses/getting-started-with-less/responsive-and-media-queries */
|
|
/* GRID */
|
|
.layout {
|
|
display: grid;
|
|
grid-template-rows: [top] 2vh [line2] 86vh [footer1] 7vh [footer2] 5vh [end];
|
|
grid-template-columns: [left1] 1fr [left2] 1fr [left3] 8fr [right3] 1fr [right2] 1fr [right1];
|
|
grid-template-areas: "header header header header header" "left . center . ." "footer footer footer footer footer" "bottom bottom bottom bottom bottom";
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
/*.header {
|
|
grid-area: header;
|
|
}*/
|
|
.sidebar1 {
|
|
grid-area: left;
|
|
grid-row-start: top;
|
|
grid-row-end: end;
|
|
}
|
|
.content {
|
|
grid-area: center;
|
|
grid-row-start: line2;
|
|
grid-row-end: footer1;
|
|
}
|
|
.footer {
|
|
grid-area: footer;
|
|
grid-row-start: footer1;
|
|
grid-row-end: footer2;
|
|
}
|
|
.nav-bottom {
|
|
grid-area: bottom;
|
|
grid-row-start: footer2;
|
|
grid-row-end: end;
|
|
}
|
|
/* ============================================================
|
|
|
|
Color Definitions
|
|
|
|
Datei : colors.less
|
|
Datum : 2020-05-26
|
|
Autor : Christine Slotty
|
|
Copyright : Gradio
|
|
|
|
============================================================*/
|
|
/* MAIN */
|
|
/* MENU */
|
|
/* CONTENT */
|
|
/* CONTENT-NAV */
|
|
/* CONTENT-ITEMS */
|
|
/* CONTENT-TABLE */
|
|
/* VARIOUS INDIVIDUAL */
|
|
/* XXX TODO XXX */
|
|
/*rgba(0, 0, 0, 0.5) ??? */
|
|
/* https://www.w3schools.com/colors/colors_shades.asp */
|
|
/* ============================================================
|
|
|
|
Typography Definitions
|
|
|
|
Datei : typography.less
|
|
Datum : 2020-05-26
|
|
Autor : Christine Slotty
|
|
Copyright : Gradio
|
|
|
|
============================================================*/
|
|
/* ============================================================
|
|
|
|
Screen styles.
|
|
|
|
Datei : screen.less
|
|
Datum : 2020-04-30
|
|
Autor : Christine Slotty
|
|
Copyright : Gradio
|
|
|
|
============================================================*/
|
|
@font-face {
|
|
font-family: 'Material Icons Outlined';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url(../fonts/MaterialIconsOutlined/Material-Icons-Outline.eot);
|
|
/* For IE6-8 */
|
|
src: local('Material Icons Outlined'), local('Material-Icons-Outlined'), url(../fonts/MaterialIconsOutlined/Material-Icons-Outline.woff2) format('woff2'), url(../fonts/MaterialIconsOutlined/Material-Icons-Outline.woff) format('woff'), url(../fonts/MaterialIconsOutlined/Material-Icons-Outline.ttf) format('truetype');
|
|
}
|
|
.material-icons-outlined {
|
|
font-family: 'Material Icons Outlined';
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-size: 24px;
|
|
line-height: 1;
|
|
letter-spacing: normal;
|
|
text-transform: none;
|
|
display: inline-block;
|
|
white-space: nowrap;
|
|
word-wrap: normal;
|
|
direction: ltr;
|
|
-webkit-font-feature-settings: 'liga';
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
@media screen {
|
|
/* =======================
|
|
Basis
|
|
=======================*/
|
|
html,
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
font-size: 100%;
|
|
line-height: 27px;
|
|
color: #212529;
|
|
background-color: #f9fafb;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
/* =======================
|
|
Kopfbereich
|
|
=======================*/
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex: flex-grow;
|
|
width: 100%;
|
|
padding: 1em;
|
|
background-color: #fff;
|
|
}
|
|
/* =======================
|
|
Fußbereich
|
|
=======================*/
|
|
.footer {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
font-size: 70%;
|
|
font-style: italic;
|
|
}
|
|
.bottomright {
|
|
position: fixed;
|
|
bottom: 0;
|
|
right: 0;
|
|
color: grey;
|
|
font-size: smaller;
|
|
line-height: 1.125em;
|
|
padding-right: 0.25em;
|
|
text-align: right;
|
|
}
|
|
.bottomleft {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
color: grey;
|
|
font-size: smaller;
|
|
line-height: 1.125em;
|
|
padding-left: 0.25em;
|
|
}
|
|
/* =======================
|
|
Sonstige
|
|
=======================*/
|
|
/* Hyperlinks */
|
|
a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
main a {
|
|
text-decoration: underline;
|
|
font-style: italic;
|
|
}
|
|
a:link,
|
|
a:visited {
|
|
color: inherit;
|
|
}
|
|
a:hover,
|
|
a:focus {
|
|
text-decoration: underline;
|
|
}
|
|
a:active {
|
|
background-color: #fff;
|
|
color: #000;
|
|
}
|
|
a:focus,
|
|
a:active {
|
|
outline: none;
|
|
}
|
|
a.grd_invisible_link {
|
|
color: #000;
|
|
text-decoration: none;
|
|
}
|
|
a.grd_invisible_link:hover {
|
|
color: grey;
|
|
}
|
|
/* =======================
|
|
Gradido
|
|
=======================*/
|
|
/* Gradido */
|
|
.grd-negative-currency {
|
|
color: red;
|
|
}
|
|
/* Gradido Transform */
|
|
.gdt-text-color {
|
|
color: #a27824;
|
|
}
|
|
.grd-orange-color {
|
|
color: #ffa600;
|
|
}
|
|
.grd_clickable {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
/* Ende @media screen */
|
|
/* ============================================================
|
|
|
|
Navigation
|
|
|
|
Datei : navi.less
|
|
Datum : 2020-04-30
|
|
Autor : einhornimmond / Christine Slotty
|
|
Copyright : Gradio
|
|
|
|
============================================================*/
|
|
@media screen {
|
|
.logo {
|
|
display: none;
|
|
vertical-align: middle;
|
|
height: 30px;
|
|
padding: 0.5em;
|
|
}
|
|
.logo.big.visible,
|
|
.logo.small.visible {
|
|
display: block !important;
|
|
}
|
|
.logo.small.visible {
|
|
padding-left: 118px;
|
|
}
|
|
/*
|
|
SIDEBARS
|
|
*/
|
|
.sidebar1 {
|
|
background-color: #fff;
|
|
font-size: 0.8em;
|
|
font-weight: 500;
|
|
line-height: 2.5em;
|
|
padding: 0;
|
|
border-right: 1px solid #f2f4f5;
|
|
}
|
|
.sidebar2 {
|
|
padding: 1em;
|
|
background-color: #f9fafb;
|
|
}
|
|
.sidebar1-header {
|
|
font-size: 0.75em;
|
|
font-style: italic;
|
|
color: grey;
|
|
}
|
|
/* set general icons size here! */
|
|
.nav-icon {
|
|
font-size: 18px !important;
|
|
color: #4F4F4F;
|
|
vertical-align: middle;
|
|
padding-right: 1em;
|
|
}
|
|
/* important! order matters! we need to overwrite the main button's size here */
|
|
.nav-main-button {
|
|
font-size: 32px !important;
|
|
color: grey;
|
|
margin: 0.3em;
|
|
}
|
|
.nav-menu {
|
|
width: 280px;
|
|
height: 100%;
|
|
}
|
|
.nav-menu-maximized {
|
|
-webkit-animation: slide-out 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
animation: slide-out 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
}
|
|
.nav-menu-minimized {
|
|
-webkit-animation: slide-in 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
animation: slide-in 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
}
|
|
.nav-menu-minimized .link-title {
|
|
display: none;
|
|
}
|
|
.nav-menu-minimized .nav-icon,
|
|
.nav-menu-minimized .nav-main-button {
|
|
padding-left: 224px;
|
|
}
|
|
/**
|
|
* ----------------------------------------
|
|
* animations slide-in / slide-out
|
|
* ----------------------------------------
|
|
*/
|
|
/* slide-in */
|
|
@-webkit-keyframes slide-in {
|
|
0% {
|
|
-webkit-transform: translateX(0);
|
|
transform: translateX(0);
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
-webkit-transform: translateX(-224px);
|
|
transform: translateX(-224px);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
@keyframes slide-in {
|
|
0% {
|
|
-webkit-transform: translateX(0);
|
|
transform: translateX(0);
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
-webkit-transform: translateX(-224px);
|
|
transform: translateX(-224px);
|
|
opacity: 1;
|
|
}
|
|
}
|
|
/* slide-out */
|
|
@-webkit-keyframes slide-out {
|
|
0% {
|
|
-webkit-transform: translateX(-224px);
|
|
transform: translateX(-224px);
|
|
}
|
|
100% {
|
|
-webkit-transform: translateX(0);
|
|
transform: translateX(0);
|
|
}
|
|
}
|
|
@keyframes slide-out {
|
|
0% {
|
|
-webkit-transform: translateX(-224px);
|
|
transform: translateX(-224px);
|
|
}
|
|
100% {
|
|
-webkit-transform: translateX(0);
|
|
transform: translateX(0);
|
|
}
|
|
}
|
|
.selected {
|
|
color: #047006;
|
|
}
|
|
.link-title {
|
|
vertical-align: middle;
|
|
line-height: normal;
|
|
background-color: transparent;
|
|
}
|
|
.nav-horizontal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
justify-content: center;
|
|
align-items: flex-end;
|
|
list-style-type: none;
|
|
gap: 5%;
|
|
padding: 1em;
|
|
}
|
|
.nav-vertical {
|
|
margin-top: -2em;
|
|
}
|
|
.nav-horizontal li {
|
|
padding: 0.5em;
|
|
}
|
|
.nav-vertical > ul {
|
|
display: flex;
|
|
flex-direction: column;
|
|
list-style-type: none;
|
|
gap: 5%;
|
|
padding: 1em;
|
|
}
|
|
.nav-vertical li {
|
|
padding: 0.5em;
|
|
}
|
|
.nav-top > ul {
|
|
padding: 0;
|
|
padding-right: 2em;
|
|
}
|
|
.nav-bottom {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
list-style-type: none;
|
|
}
|
|
.nav-bottom p {
|
|
font-size: 0.9em;
|
|
color: grey;
|
|
margin: 0;
|
|
}
|
|
nav.grd-left-bar {
|
|
position: fixed;
|
|
top: 80.5px;
|
|
}
|
|
nav .grd-nav-bn {
|
|
width: 100px;
|
|
}
|
|
nav ul {
|
|
margin-top: 0;
|
|
padding-left: 0;
|
|
}
|
|
/* buttons */
|
|
.grd-nav-bn:hover,
|
|
.grd-active {
|
|
background-color: lightgray;
|
|
border-color: #000;
|
|
}
|
|
.grd-nav-bn {
|
|
padding: 10px;
|
|
border: 1px solid grey;
|
|
display: table-cell;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
color: grey;
|
|
}
|
|
.grd-nav-bn-large {
|
|
width: 40vw;
|
|
height: 18vh;
|
|
font-size: 35px;
|
|
}
|
|
a.grd-nav-bn,
|
|
a.grd-nav-bn:visited {
|
|
color: #000;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
@media screen and (max-width:480px) {
|
|
.logo.big {
|
|
display: none;
|
|
}
|
|
.logo.small {
|
|
display: block;
|
|
}
|
|
}
|
|
/* ============================================================
|
|
|
|
Screen styles for center part.
|
|
|
|
Datei : center.css
|
|
Datum : 2020-04-30
|
|
Autor : Christine Slotty
|
|
Copyright : Gradio
|
|
|
|
============================================================*/
|
|
@media screen {
|
|
/* =========
|
|
CONTENT
|
|
=========*/
|
|
.content {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
flex-direction: column;
|
|
overflow: auto;
|
|
width: 100%;
|
|
background-color: #f9fafb;
|
|
line-height: 1.5em;
|
|
letter-spacing: 0.03rem;
|
|
font-family: Roboto, sans-serif;
|
|
font-weight: 500;
|
|
font-size: 1rem;
|
|
padding-top: 6em;
|
|
padding-right: 10em;
|
|
}
|
|
/* Center Navigation Top */
|
|
.nav-content {
|
|
color: #565656;
|
|
margin: 0 0.25em;
|
|
margin-bottom: 1em;
|
|
}
|
|
.nav-content-list {
|
|
display: flex;
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin-left: 0.25em;
|
|
}
|
|
.nav-content-separator {
|
|
margin: 0 1em;
|
|
}
|
|
/* Center Content Container */
|
|
.content-container {
|
|
background-color: #fff;
|
|
color: #212529;
|
|
border-radius: 0.5em;
|
|
box-shadow: 0 0 10px 0 rgba(183, 192, 206, 0.2);
|
|
border: 1px solid rgba(238, 238, 238, 0.75);
|
|
}
|
|
/* Top Info Above Main */
|
|
.info-container {
|
|
max-width: 70%;
|
|
padding: 0.5em 25px;
|
|
margin: 1em 0.25em;
|
|
}
|
|
/* Main Container */
|
|
.main-container {
|
|
width: 100%;
|
|
}
|
|
/* Generic Content */
|
|
.content-region {
|
|
border-bottom: 1px dashed #F5F5F5;
|
|
padding: 0 25px;
|
|
margin: 1em 0.25em;
|
|
}
|
|
.content-collection {
|
|
display: flex;
|
|
}
|
|
.content-item {
|
|
margin: 0.5em 0;
|
|
margin-right: 5em;
|
|
width: 160px;
|
|
padding: 1em 2em;
|
|
}
|
|
.action-button {
|
|
background: #f9fafb;
|
|
border-left: 3px solid #047006;
|
|
}
|
|
.info-item {
|
|
border-left: 2px solid grey;
|
|
}
|
|
/* List Content */
|
|
.content-list {
|
|
width: 100%;
|
|
}
|
|
.content-list-title {
|
|
font-size: 1rem;
|
|
margin: 0;
|
|
padding: 20px 25px;
|
|
color: #313131;
|
|
}
|
|
.content-list-table {
|
|
display: grid;
|
|
width: 100%;
|
|
overflow: auto;
|
|
font-size: 16px;
|
|
color: #212529;
|
|
}
|
|
.header-cell {
|
|
padding: 1em 2em;
|
|
border-top: 1px solid #f2f4f9;
|
|
background-color: #fafafa;
|
|
color: #101010;
|
|
}
|
|
.content-list-table img,
|
|
.content-list-table i {
|
|
vertical-align: middle;
|
|
}
|
|
.content-list-table > span {
|
|
font-size: 0.8em;
|
|
padding: 0.5em 2em;
|
|
vertical-align: middle;
|
|
}
|
|
/* Individual Tables */
|
|
.wiretransfer {
|
|
grid-template-columns: 5fr 4fr 3fr 2fr 1fr;
|
|
}
|
|
/* Form Content */
|
|
.action-form {
|
|
width: 100%;
|
|
}
|
|
.form-header {
|
|
border-left: 3px solid #047006;
|
|
background: #f9fafb;
|
|
padding: 15px 20px;
|
|
margin: 0;
|
|
margin-bottom: 15px;
|
|
border-radius: 0 6px 0 0;
|
|
}
|
|
.form-body {
|
|
margin: 36px 75px;
|
|
}
|
|
.form-group {
|
|
display: flex;
|
|
}
|
|
/* OTHER */
|
|
.info-item i,
|
|
.info-item-link,
|
|
.action-button i,
|
|
.action-button-link {
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
@media screen and (max-width:480px) {
|
|
.content {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
/* Ende @media screen */
|
|
/* ============================================================
|
|
|
|
Print styles.
|
|
|
|
Datei : print.css
|
|
Datum : 2020-04-30
|
|
Autor : Christine Slotty
|
|
Copyright : Gradio
|
|
|
|
============================================================*/
|
|
/* ---------------------------------------------------------
|
|
Print styles
|
|
---------------------------------------------------------*/
|
|
@media print {
|
|
* {
|
|
color: #000 !important;
|
|
box-shadow: none !important;
|
|
text-shadow: none !important;
|
|
background: transparent !important;
|
|
}
|
|
html {
|
|
background-color: #111;
|
|
}
|
|
/* Hide navigation */
|
|
nav {
|
|
display: none;
|
|
}
|
|
/* Show link destinations in brackets after the link text */
|
|
a[href]:after {
|
|
content: " (" attr(href) ") ";
|
|
}
|
|
a[href] {
|
|
font-weight: bold;
|
|
text-decoration: underline;
|
|
color: #06c;
|
|
border: none;
|
|
}
|
|
/* Don't show link destinations for JavaScript or internal links */
|
|
a[href^="javascript:"]:after,
|
|
a[href^="#"]:after {
|
|
content: "";
|
|
}
|
|
/* Show abbr title value in brackets after the text */
|
|
abbr[title]:after {
|
|
content: " (" attr(title) ")";
|
|
}
|
|
figure {
|
|
margin-bottom: 1em;
|
|
overflow: hidden;
|
|
}
|
|
figure img {
|
|
border: 1px solid #000;
|
|
}
|
|
}
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 12.07.2019, 07:59:32
|
|
Author : einhornimmond
|
|
*/
|
|
div[role='grd_dialog'] {
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #fff;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
div.grd_modal-dialog {
|
|
margin-top: 100px;
|
|
min-height: 200px;
|
|
max-width: 1000px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
background-color: #fff;
|
|
color: #000;
|
|
border: 1px solid grey;
|
|
}
|
|
div.grd_modal-dialog.grd_dialog-large {
|
|
margin-top: 5px;
|
|
width: 90%;
|
|
}
|
|
div.grd_modal-body {
|
|
padding: 25px;
|
|
}
|
|
div.grd_modal-header {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
padding: 5px;
|
|
padding-left: 15px;
|
|
border: 1px solid grey;
|
|
color: #000;
|
|
}
|
|
div.grd_modal-footer {
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
height: 40px;
|
|
}
|
|
.grd_modal-footer a,
|
|
.grd_modal-footer button {
|
|
float: right;
|
|
padding: 9px;
|
|
margin-right: 10px;
|
|
border: 1px solid grey;
|
|
}
|
|
.grd_modal-footer a:hover,
|
|
.grd_modal-footer button:hover {
|
|
background-color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 30.10.2019, 14:41:57
|
|
Author : einhornimmond
|
|
*/
|
|
/* Button */
|
|
.grd-form-bn:hover,
|
|
.grd-active {
|
|
background-color: lightgray;
|
|
border-color: #000;
|
|
}
|
|
.grd-form-bn {
|
|
padding: 5px;
|
|
border: 1px solid grey;
|
|
display: table-cell;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
color: #444;
|
|
}
|
|
a.grd-form-bn,
|
|
a.grd-form-bn:visited {
|
|
color: #000;
|
|
text-decoration: none;
|
|
}
|
|
.grd-form-bn-succeed {
|
|
background-color: lightcyan;
|
|
color: green;
|
|
margin-top: 3px;
|
|
margin-bottom: 3px;
|
|
}
|
|
.grd-form-bn-succeed:not([disabled]):hover {
|
|
background-color: lightgreen;
|
|
}
|
|
.grd-form-bn-discard {
|
|
margin-left: 5px;
|
|
border: 1px solid red;
|
|
color: red;
|
|
cursor: pointer;
|
|
}
|
|
/* form elements */
|
|
.grd_textarea {
|
|
border: 1px solid grey;
|
|
background-color: rgba(0, 0, 0, 0.05);
|
|
padding: 5px;
|
|
font-style: italic;
|
|
}
|
|
.grd-input label {
|
|
display: block;
|
|
}
|
|
input.grd-privkey {
|
|
width: 465px;
|
|
}
|
|
input.grd-pubkey {
|
|
width: 465px;
|
|
}
|
|
input.grd-non-der-keys {
|
|
width: 900px;
|
|
}
|
|
input:not([type='radio']) {
|
|
width: 200px;
|
|
}
|
|
label:not(.grd_radio_label) {
|
|
width: 80px;
|
|
display: inline-block;
|
|
}
|
|
/*
|
|
To change this license header, choose License Headers in Project Properties.
|
|
To change this template file, choose Tools | Templates
|
|
and open the template in the editor.
|
|
*/
|
|
/*
|
|
Created on : 30.10.2019, 16:04:16
|
|
Author : einhornimmond
|
|
*/
|
|
/* messages, update flash */
|
|
.grd-error {
|
|
color: red;
|
|
border: 1px solid rgba(255, 0, 0, 0.5);
|
|
padding: 5px;
|
|
}
|
|
.grd-info {
|
|
border: 1px dotted gray;
|
|
padding: 5px;
|
|
}
|
|
.grd-success {
|
|
padding: 5px;
|
|
color: green;
|
|
}
|
|
.flash-messages .message {
|
|
padding: 5px;
|
|
}
|
|
.flash-messages .success {
|
|
color: green;
|
|
}
|
|
.flash-messages .error {
|
|
color: red;
|
|
}
|