/* ============================================================ 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] 6vh [line2] 86vh [footer1] 3vh [footer2] 5vh [end]; grid-template-columns: [left1] 1fr [left2] 1fr [left3] 12fr [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; } @media (max-width:767px) { .layout { position: relative; display: grid; grid-template-rows: [top] 12vh [line2] 86vh [footer1] 3vh [footer2] 8vh [end]; grid-template-columns: [left1] 100vw [right1]; grid-template-areas: "header" "center" "footer" "bottom"; margin: 0; padding: 0; } } .header-notify { grid-area: header; grid-column-start: right3; grid-column-end: right2; } .sidebar1 { grid-area: left; grid-row-start: top; grid-row-end: end; } @media (max-width:767px) { .sidebar1 { position: relative; grid-area: header; z-index: 2; top: -300px; right: 0px; } .header-notify { grid-area: header; } } .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; } /* ============================================================ Generic Color Definitions Vars and some generic CSS rules. Datei : colors.less Datum : 2020-05-26 Autor : Christine Slotty Copyright : Gradio ============================================================*/ /* MAIN */ /* MENU */ /* CONTENT */ /* CONTENT-NAV */ /* CONTENT-ITEMS */ /* CONTENT-TABLE */ /* FORMS */ /* VARIOUS INDIVIDUAL */ /* XXX TODO XXX */ /*rgba(0, 0, 0, 0.5) ??? */ /* NOTIFICATION */ /* https://www.w3schools.com/colors/colors_shades.asp */ .info-color { color: grey; } .success-color { color: #047006; } .alert-color { color: #ff5f66; } .orange-color { color: #ffa600; } .unobtrusive { color: grey; } .info-icon { color: grey; background-color: #80808026; } .success-icon { color: #047006; background-color: rgba(4, 112, 6, 0.2); } .alert-icon { color: #ff5f66; background-color: #ff5f662e; } /* ======================= Gradido =======================*/ /* Gradido */ .grd-negative-currency { color: red; } /* Gradido Transform */ .gdt-text-color { color: #a27824; } .grd_clickable { cursor: pointer; } /* ============================================================ Typography Definitions Datei : typography.less Datum : 2020-05-26 Autor : Christine Slotty Copyright : Gradio ============================================================*/ .small-font { font-size: 0.75em; font-weight: 300; } /* ============================================================ Basic 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; vertical-align: middle; 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; line-height: 0; } .bottomright { position: fixed; bottom: 0; right: 0; color: grey; font-size: smaller; line-height: 0.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; } } @media screen and (max-width:767px) { .bottomright { font-size: 0.7em; font-weight: 300; line-height: 1em; width: 100px; } .bottomright p { margin-block-start: 0; margin-block-end: 2px; margin-inline-start: 0; margin-inline-end: 0; } } /* Ende @media screen */ /* 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. */ /* ============================================================ Screen styles for flash messages. Datei : messages.css Datum : 30.10.2019, 16:04:16 Autor : einhornimmond, Christine Slotty Copyright : Gradio ============================================================*/ @media screen { .flash-messages { width: 30%; position: absolute; top: 57px; left: 241px; text-align: center; } .flash-messages .alert { margin: 0; padding: 1em; vertical-align: middle; border-radius: 5px; } .flash-messages .alert-success { color: #fff !important; background-color: #047006; border: 1px solid #04700675; } .flash-messages .alert-error { color: #fff !important; background-color: red; border: 1px solid rgba(255, 0, 0, 0.5); } .flash-messages .message { padding: 5px; } .flash-messages .success { color: #047006; } .flash-messages .error { color: red; } .flash-messages.hidden { display: none; } /* 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: #047006; } } @media screen and (max-width:767px) { .flash-messages { width: 90%; top: 0; left: 0; text-align: center; } } /* ============================================================ Navigation Datei : navi.less Datum : 2020-04-30 Autor : einhornimmond / Christine Slotty Copyright : Gradido ============================================================*/ @media screen { .logo { display: none; vertical-align: middle; height: 30px; padding: 0.5em; } .logo.big.visible, .logo.small.visible { display: block !important; } .logo.mobile { display: none; } .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; } /* Hide mobile menu button! */ .nav-main-button.mobile { display: none; } .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); } } /* NAVI MOBILE */ /* END navi mobile base */ .selected { color: #047006; } .link-title { vertical-align: middle; line-height: normal; background-color: transparent; } .nav-horizontal { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: flex-end; list-style-type: none; gap: 5%; padding: 1em; } .footer .nav-horizontal { gap: 0; padding: 0 1em; padding-inline-start: 0 !important; } .nav-top-smaller { margin: 0; padding: 0; } .nav-smaller { justify-content: left; align-items: flex-start; gap: 0; padding: 0; } .nav-smaller li { padding: 0 !important; padding: 0.2em 0.5em !important; border: 1px solid #047006; margin: 0.1em 0.3em; border-radius: 12px; } .nav-smaller .heading { font-weight: bold; } .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:767px) { .logo.big, .logo.small { display: none; } .logo.visible { padding: 0 !important; } .logo, .logo.mobile, .logo.mobile.visible { display: block; position: fixed; top: 12px; left: 12px; } .logo.big, .logo.big.visible { display: none !important; } .nav-main-button { display: none; } .nav-main-button.mobile { display: block; position: fixed; top: 2px; right: 0px; z-index: 3; } .nav-menu { width: 280px; height: 300px; } .nav-menu-minimized .link-title { display: inherit; } .nav-menu-minimized .nav-icon, .nav-menu-minimized .nav-main-button { padding-left: 0; } .nav-menu-maximized { -webkit-animation: slide-down 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; animation: slide-down 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; } .nav-menu-minimized { -webkit-animation: slide-up 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; animation: slide-up 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both; } @-webkit-keyframes slide-down { 0% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 0; } 100% { -webkit-transform: translateY(300px); transform: translateX(300px); opacity: 1; } } @keyframes slide-down { 0% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 0; } 100% { -webkit-transform: translateY(300px); transform: translateY(300px); opacity: 1; } } @-webkit-keyframes slide-up { 0% { -webkit-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-300px); transform: translateY(-300px); } } @keyframes slide-up { 0% { -webkit-transform: translateY(0); transform: translateY(0); } 100% { -webkit-transform: translateY(-300px); transform: translateY(-300px); } } } @media screen and (max-width:767px) { .nav-vertical { margin-top: 55px; } } /* ============================================================ Notification Datei : notification.css Datum : 2020-06-10 Autor : Christine Slotty Copyright : Gradido ============================================================*/ @media screen { .header-notify { display: flex; flex-wrap: wrap; padding-left: 0; margin-bottom: 0; list-style: none; z-index: 10; } .notify { display: block; padding: 0.5rem 0.3rem; color: #525c5d; animation: blinkingNotifySymbol 1.2s infinite; } .notify-alert { color: #ff5f66; animation: blinkingAlertSymbol 1.2s infinite; } @keyframes blinkingNotifySymbol { 0% { color: #525c5d; } 49% { color: #525c5d; } 60% { color: #525c5d82; } 99% { color: #525c5d82; } 100% { color: #525c5d; } } @keyframes blinkingAlertSymbol { 0% { color: #ff5f66; } 49% { color: #ff5f66; } 60% { color: #ff5f669e; } 99% { color: #ff5f669e; } 100% { color: #ff5f66; } } /* .notification-indicator-primary { background: #047006; } .notification-indicator-warning { background: #f0825f } .notification-indicator-secondary { background: grey } .notification-indicator-secondary:before { content: ""; background: rgba(128, 128, 128, .5) } .notification-indicator-success { background: #00e093 } .notification-indicator-success:before { content: ""; background: rgba(0, 224, 147, .5) } .notification-indicator-info { background: #6c61f6 } .notification-indicator-info:before { content: ""; background: rgba(108, 97, 246, .5) } .notification-indicator-danger { background: #ff5f66 } .notification-indicator-danger:before { content: ""; background: rgba(255, 95, 102, .5) } .notification-indicator-light { background: #dfdfdf } .notification-indicator-light:before { content: ""; background: rgba(223, 223, 223, .5) } .notification-indicator-dark { background: #74767b } .notification-indicator-dark:before { content: ""; background: rgba(116, 118, 123, .5) } .notification-indicator-white { background: #fff } .notification-indicator-white:before { content: ""; background: rgba(255, 255, 255, .5) } */ } @media screen and (max-width:767px) { .header-notify { justify-content: flex-end; margin-right: 70px; } } /* ============================================================ Screen styles for center part. Datei : center.css Datum : 2020-04-30 Autor : Christine Slotty Copyright : Gradio ============================================================*/ @media screen { /* ========= CONTENT =========*/ .content-default { display: flex; justify-content: center; max-width: 90%; } .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: 2em;*/ padding-right: 10em; } /* Center Navigation Top */ .nav-content { position: relative; color: #565656; margin: 0 0.25em; } .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); margin: 1em 0.25em; } /* Block Container Above Main */ .block-container { width: 100%; display: flex; } /* Top Info Above Main */ .info-container { max-width: 70%; padding: 0.5em 25px; } /* Main Container */ .main-container { width: 100%; } .default-container { width: 90%; margin: auto; padding: 1em; } /* Content Block */ .content-block { width: 170px; padding: 20px 25px 20px; border: 1px dashed grey; border-radius: 16px; margin: 1em; display: flex; flex-direction: column; justify-content: center; justify-items: center; align-items: center; } .block-img { width: 40px; height: 40px; line-height: 20px; font-size: 24px; padding: 8px; border-radius: 20px; box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); overflow: hidden; border-style: none; box-sizing: border-box; } /* Generic Content */ .content-region { border-bottom: 1px dashed #F5F5F5; padding: 0 25px; padding-bottom: 2em; 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; } /* OTHER */ .info-item i, .info-item-link, .action-button i, .action-button-link { vertical-align: middle; } } @media screen and (max-width:767px) { .nav-content-list { display: flex; font-size: small; margin-bottom: 0; justify-content: center; } } @media screen and (max-width:767px) { .info-container { max-width: 90%; } } @media screen and (max-width:767px) { .main-container { max-width: 97%; } } @media screen and (max-width:767px) { .content-collection { flex-direction: column; align-items: center; } .content-item { margin: 0.5em 0; margin-right: 0; width: 160px; padding: 1em 2em; } } /* Ende @media screen */ /* ============================================================ Screen styles for lists. Datei : list.css Datum : 2020-06-09 Autor : Christine Slotty Copyright : Gradio ============================================================*/ @media screen { /* ========= LISTS =========*/ /* List Content */ .content-list { width: 100%; } .content-list-title { font-size: 1rem; margin: 0; padding: 20px 25px; color: #313131; } .content-list-table { display: flex; flex-direction: column; width: 100%; overflow: auto; font-size: 16px; color: #212529; } .row { display: flex; width: 100%; border-top: 1px solid #f2f4f9; -webkit-transition-duration: 0.5s; transition-duration: 0.5s; } .row:hover { background-color: #f6f7f9; } .cell { display: flex; flex-wrap: wrap; align-items: center; padding: 1em 1.5em; } .cell-dense { padding: 0.1em 0.5em; } .centered { justify-content: center; } .c0 { flex-grow: 5; } .c1 { min-width: 40px; flex: 0 0 40px; } .c2 { min-width: 80px; flex: 0 0 80px; } .c3 { min-width: 160px; flex: 0 0 160px; } .c4 { min-width: 240px; flex: 0 0 240px; } .c5 { min-width: 320px; flex: 0 0 320px; } .header-cell { 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 XXX rm!! */ .error-list { grid-template-columns: 2fr 2fr 5fr 1fr; } .transactions { grid-template-columns: 1fr 4fr 2fr 2fr; } .profile-img { width: 30px; height: 30px; border-radius: 6px; box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); overflow: hidden; border-style: none; box-sizing: border-box; margin-right: 40px; } .tx-email { cursor: pointer; display: block; color: #101010; font-weight: 400; } .small { font-size: 80%; font-weight: 400; } /*, .cell-icon .material-icons-outlined */ .cell-icon { /*noch ungeklärt - icon ist nicht aligned */ /*font-size: 1.25em;*/ vertical-align: middle; } /* ===================================== FORM TOP CONTENT (checkTransaction) =====================================*/ .form-content { padding: 35px; padding-top: 20px; max-width: 80%; margin: auto; } .content-table { border: 1px solid #f2f4f9; border-top: none; margin-bottom: 1.5rem; } .content-row { display: flex; justify-content: space-between; font-weight: 400; border-top: 1px solid #f2f4f9; } .content-row-header { font-weight: 500; color: #101010; } .content-row-bg { background-color: #f0f2f5; } .content-cell { display: block; border-collapse: collapse; padding: 10px 15px; } .form-button .material-icons-outlined { font-size: 1.25em; } } @media screen and (max-width:767px) { .row { flex-direction: column; } } @media screen and (max-width:767px) { .cell { padding: 0.25em 1.5em; } .c1 { flex-basis: auto; } .c2 { flex-basis: auto; } .c3 { flex-basis: auto; } .c4 { flex-basis: auto; } .c5 { flex-basis: auto; } } /* 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. */ /* ============================================================ Screen styles for forms. Datei : form.css Datum : 2020-06-07 Autor : Christine Slotty Copyright : Gradio ============================================================*/ @media screen { /* ========= FORMS =========*/ /* 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-label { grid-column: 0.5; font-weight: 400; text-align: right; } .form-control { grid-column: 0.66666667; padding: 0.4em 0.75em; padding-left: 20px; padding-right: 20px; margin: 0; color: rgba(16, 16, 16, 0.8); display: block; font-size: 1rem; font-weight: 400; line-height: 1.5; color: #6c757d; background-color: #f6f7f9; background-clip: padding-box; border: 1px solid #f0f2f5; border-radius: 0.25rem; -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } .form-control:focus { color: #495057; background-color: #f6f7f9; border-color: #d7dee5; outline: 0; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } textarea { resize: vertical; } .badge { display: inline-block; padding: 0.45rem 1rem; font-size: 80%; font-weight: 700; line-height: 1; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0.25rem; -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; } .badge-warning { color: #fff; background-color: #00e093; } .badge-error { color: #fff; background-color: #ff5f66; } .form-button { cursor: pointer; font: 600 13.3333px Arial; font-size: 0.875rem; line-height: 1.5; text-align: center; vertical-align: middle; color: #fff; background-color: #047006; border-color: #047006; border: 1px solid transparent; border-radius: 0.2rem; height: 35px; max-height: 35px; padding: 4px 15px; box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); } .form-button:hover { background-color: #034b04; border-color: #023f03; } .button-cancel { color: #fff !important; background-color: #f0825f; border-color: #f0825f; } .button-cancel:hover { background-color: #ec5e30; border-color: #eb5425; } /* CENTER FORM SPECIFICS */ .form-body form { display: grid; grid-template-columns: 200px 1fr; margin: 36px 75px; grid-gap: 1em; } .center-form { width: 450px; } .center-form .form-control { width: 90%; } .center-form fieldset { margin-bottom: 1em; } } @media screen and (max-width:767px) { .form-body form { grid-template-columns: 1fr; margin: 20px; grid-gap: 0.25em; } .form-label { text-align: left; } } /* Button .grd-form-bn:hover, .grd-active { background-color: @button-background-active; border-color: @button-border-color; } .grd-form-bn { padding: 5px; border: 1px solid @form-button-border; display: table-cell; text-align: center; vertical-align: middle; color: @form-button-text; } .grd-form-bn-small { } a.grd-form-bn, a.grd-form-bn:visited { color: @button-text; text-decoration: none; } .grd-form-bn-succeed { background-color: @success-background; color: @success; margin-top: 3px; margin-bottom: 3px; } .grd-form-bn-succeed:not([disabled]):hover { background-color: @success-background-hover; } .grd-form-bn-discard { margin-left: 5px; border: 1px solid @error; color: @error; cursor: pointer; } form elements .grd_textarea { border: 1px solid grey; background-color: @form-text-background; 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; } */ /* ============================================================ 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); }