/* 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; } #page-canvas-container { position: absolute; left: 0px; right: 0px; top: 0px; bottom: 0px; overflow: auto; } #page-canvas-container-container #shadowbox { position: absolute; left: 0px; right: calc(100vw - 99%); top: 0px; bottom: 0px; box-shadow: inset 0px 0px 10px 5px rgba(0,0,0,0.5); pointer-events: none; } #page-canvas-container .page-canvas { margin: 0.5em; box-shadow: 6px 6px 7px -1px rgba(0,0,0,0.5); height: 100%; border: 1px solid gray; } #page-canvas-container .page-canvas.active { margin: 0.5em; box-shadow: 0px 0px 7px 0px rgba(0,255,0,0.8); height: 100%; border: 1px solid blue; } #page-canvas-container #placementguidebox { opacity: 0.5; position: fixed; 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; } @media (min-width: 800px) and (max-width: 991px) { .modal-dialog.modal-lg { max-width: 700px; } }