/* Copyright 2021 Netsyms Technologies. This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /* Created on : Jun 27, 2021, 7:34:10 PM Author : Skylar Ittner */ html, body { height: 100%; width: 100%; margin: 0; padding: 0; overflow: hidden; } #page-canvas-container { position: absolute; left: 0px; right: 0px; top: 0px; bottom: 0px; overflow: auto; } #page-canvas-container .page-canvas { margin: 0.5em; box-shadow: inset 1px 1px rgba(255, 255, 255, 0.2), inset -1px -1px rgba(255, 255, 255, 0.1), 1px 3px 24px -1px rgba(0, 0, 0, 0.15); height: 100%; border: 2px solid rgba(255, 255, 255, 0); } #page-canvas-container .page-canvas.active { margin: 0.5em; box-shadow: inset 1px 1px rgba(255, 255, 255, 0.7), inset -1px -1px rgba(255, 255, 255, 0.6), 1px 3px 24px -1px rgba(0, 0, 0, 0.55); height: 100%; border: 2px solid var(--bs-green); } #page-canvas-container #placementguidebox { opacity: 0.5; position: absolute; float: left; padding: 0; pointer-events: none; } #signature_pad { border: 1px solid black; } .signature-wrapper { background-color: white; border-radius: 5px; position: relative; width: 400px; height: 200px; margin: 0 auto; border: 1px solid rgba(0,0,0,0.5); /* fix bug on iOS where image sticks out right side and makes entire page scroll horiz. */ overflow: hidden; } .signature-wrapper img { position: absolute; bottom: 0; left: 0; } .signature-wrapper canvas { position: absolute; left: 0; top: 0; width: 400px; height: 200px; } #toolbar-bin .card { margin: 0.25rem; } #page-canvas-container-card { margin: 0.25rem; } @media (min-width: 800px) and (max-width: 991px) { .modal-dialog.modal-lg { max-width: 700px; } } @media (min-width: 1600px) { .modal-dialog.modal-xxl { max-width: 90vw; } } select option { color: var(--bs-dark); } .alert { color: var(--bs-dark); } .theme-purple { background-image: linear-gradient(90deg,#33b7e2,#5e62b0,#dc307c); } .theme-green { background-image: linear-gradient(90deg, #9ebd13 0%, #008552 100%); } .theme-red { background-image: linear-gradient(90deg, #d53369 0%, #daae51 100%); } .theme-aqua { background-image: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%); } .theme-ocean { background-image: linear-gradient(90deg, #1CB5E0 0%, #000851 100%); } .theme-dusty { background-image: linear-gradient(90deg, #fcff9e 0%, #c67700 100%); } .theme-lilac { background-image: linear-gradient(90deg, #efd5ff 0%, #515ada 100%); } .theme-spring { background-image: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%); } .theme-shadow { background-image: linear-gradient(90deg, #4b6cb7 0%, #182848 100%); }