| | |
| | | Author : ulrich |
| | | */ |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | /* aus App-Vorlage */ |
| | | |
| | | html, body { |
| | |
| | | height: 100%; /* Anmerkung 2 */ |
| | | font-size: larger; |
| | | font-family: 'Roboto Condensed'; |
| | | -webkit-text-size-adjust: none; |
| | | /* touch-action: manipulation;*/ |
| | | } |
| | | body { |
| | | min-height: 0; /* Anmerkung 1 */ |
| | |
| | | /* background-color: #eaeaea; */ |
| | | height: 100%; |
| | | width: 100%; |
| | | padding: 0 0.4em 0 0.4em; |
| | | } |
| | | |
| | | .zentrum { |
| | |
| | | |
| | | .zentraler-inhalt { |
| | | padding: 0.5em; |
| | | overflow-x: hidden; |
| | | overflow-y: auto; |
| | | } |
| | | |
| | | .zentrum-liste { |
| | | overflow-x: hidden; |
| | | overflow-y: auto; |
| | | } |
| | | /* |
| | | Anmerkungen: |
| | | 1.) min.height: 0 fuer body und inhalt ist gegen einen Bug, vgl. |
| | |
| | | |
| | | .top-btn { |
| | | margin: 0 1em 0 1em; |
| | | |
| | | height: 28px; |
| | | line-height: 24px; |
| | | text-align: center; |
| | | font-size: large; |
| | | background-color: white; |
| | | } |
| | | |
| | | .del-user-btn { |
| | | margin: 0 1.5em 0 1em; |
| | | height: 28px; |
| | | line-height: 24px; |
| | | text-align: center; |
| | | } |
| | | |
| | | .danger-btn { |
| | | background-color: lightcoral; |
| | | } |
| | | |
| | | /* Nutzerliste */ |
| | |
| | | padding: 0.4em; |
| | | } |
| | | |
| | | .dlg-info-app-titel { |
| | | margin-bottom: 0.4em; |
| | | } |
| | | |
| | | .nutzer-form { |
| | | padding: 0.3em; |
| | | } |
| | |
| | | |
| | | .form-button-footer { |
| | | padding: 0.4em; |
| | | } |
| | | |
| | | .bold-text { |
| | | font-weight: bold; |
| | | } |
| | | |
| | | |
| | |
| | | height: 2.5em; |
| | | padding: 0 0.5em; |
| | | margin: 0.2em; |
| | | background-color: lightcoral; |
| | | text-transform: none; |
| | | background-color: #fdfbe2; |
| | | font-size: medium; |
| | | } |
| | | |
| | |
| | | height: 2.5em; |
| | | padding: 0 0.5em; |
| | | margin: 0.2em; |
| | | background-color: darkseagreen; |
| | | background-color: #eee; |
| | | text-transform: none; |
| | | font-size: medium; |
| | | } |
| | | |
| | | /* für app-menu */ |
| | | |
| | | |
| | | .app-menu { |
| | | margin: 0; |
| | | padding: 0; |
| | | @media (min-width: 800px) { |
| | | .zentrum-behaelter { |
| | | padding: 0 1em 0 1em; |
| | | } |
| | | .zentrum-behaelter, .nord { |
| | | margin: 0 10% 0 10%; |
| | | } |
| | | } |
| | | @media (min-width: 1200px) { |
| | | .zentrum-behaelter { |
| | | padding: 0 1.5em 0 1.5em; |
| | | } |
| | | .zentrum-behaelter, .nord { |
| | | margin: 0 15% 0 15%; |
| | | } |
| | | } |
| | | |
| | | .app-menu-kopf { |
| | | text-align: center; |
| | | } |
| | | |
| | | ul.app-menu { |
| | | list-style: none; |
| | | } |
| | | |
| | | .app-menu-item-back { |
| | | margin-bottom: 0.3em; |
| | | cursor: pointer; |
| | | } |
| | | |
| | | .app-menu-item { |
| | | text-align: right; |
| | | cursor: pointer; |
| | | } |
| | | |
| | | .app-menu-item-submark { |
| | | color: transparent; |
| | | cursor: pointer; |
| | | } |
| | | |
| | | /* |
| | | Das div-Element, das das Menue aufnimmt erhaelt |
| | | die Klasse app-menu-content |
| | | */ |
| | | .app-menu-content { |
| | | overflow: hidden; |
| | | } |
| | | |
| | | /* für Hamburger Icon */ |
| | | |
| | | .hamburger { |
| | | display: inline-block; |
| | | cursor: pointer; |
| | | transition-property: opacity, filter; |
| | | transition-duration: 0.15s; |
| | | transition-timing-function: linear; |
| | | font: inherit; |
| | | color: inherit; |
| | | text-transform: none; |
| | | background-color: transparent; |
| | | border: 0; |
| | | margin: 0; |
| | | overflow: visible; |
| | | } |
| | | |
| | | .hamburger:hover { |
| | | opacity: 0.7; |
| | | } |
| | | |
| | | .hamburger-box { |
| | | width: 40px; |
| | | height: 24px; |
| | | display: inline-block; |
| | | position: relative; |
| | | } |
| | | |
| | | .hamburger-inner { |
| | | display: block; |
| | | top: 50%; |
| | | margin: 0; |
| | | } |
| | | |
| | | .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after { |
| | | width: 30px; |
| | | height: 4px; |
| | | background-color: white; /* #000; */ |
| | | border-radius: 4px; |
| | | position: absolute; |
| | | transition-property: transform; |
| | | transition-duration: 0.15s; |
| | | transition-timing-function: ease; |
| | | } |
| | | |
| | | .hamburger-inner::before, .hamburger-inner::after { |
| | | content: ""; |
| | | display: block; |
| | | } |
| | | |
| | | .hamburger-inner::before { |
| | | top: -10px; |
| | | } |
| | | |
| | | .hamburger-inner::after { |
| | | bottom: -10px; |
| | | } |
| | | |
| | | /* |
| | | * Elastic |
| | | */ |
| | | .hamburger--elastic .hamburger-inner { |
| | | top: 2px; |
| | | transition-duration: 0.275s; |
| | | transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); |
| | | } |
| | | |
| | | .hamburger--elastic .hamburger-inner::before { |
| | | top: 10px; |
| | | transition: opacity 0.125s 0.275s ease; |
| | | } |
| | | |
| | | .hamburger--elastic .hamburger-inner::after { |
| | | top: 20px; |
| | | transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); |
| | | } |
| | | |
| | | .hamburger--elastic.is-active .hamburger-inner { |
| | | transform: translate3d(0, 10px, 0) rotate(135deg); |
| | | transition-delay: 0.075s; |
| | | } |
| | | |
| | | .hamburger--elastic.is-active .hamburger-inner::before { |
| | | transition-delay: 0s; |
| | | opacity: 0; |
| | | } |
| | | |
| | | .hamburger--elastic.is-active .hamburger-inner::after { |
| | | transform: translate3d(0, -20px, 0) rotate(-270deg); |
| | | transition-delay: 0.075s; |
| | | @font-face { |
| | | font-family: 'Roboto Condensed'; |
| | | src: url('/lib/fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf') format('truetype'); |
| | | font-weight: normal; |
| | | font-style: normal; |
| | | } |
| | | |
| | | /* Font für Piktogramme mit Fontello aus FontAwesome erzeugt */ |