You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
1.5 KiB
CSS

/*
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%;
}
#page-canvas-container {
height: 90vh;
max-height: 90vh;
max-width: 80vw;
overflow: scroll;
}
#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: absolute;
float: left;
margin-top: -40px;
padding: 0;
}
#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;
}