2021-09-09 06:29:31 -07:00
|
|
|
div.col .row .col {
|
|
|
|
border: 1px solid black;
|
2021-09-10 07:30:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
div.signatures {
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.signatures .col .row {
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.forSign {
|
|
|
|
border: 1px solid black;
|
2021-09-14 06:20:29 -07:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: 70vw;
|
|
|
|
height: 30vw;
|
2021-09-10 07:30:39 -07:00
|
|
|
position: relative;
|
|
|
|
-webkit-box-flex: 1;
|
|
|
|
-ms-flex: 1;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.forSign canvas {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2021-09-12 02:39:09 -07:00
|
|
|
.margin-bottom {
|
|
|
|
margin-bottom: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.signDiv {
|
|
|
|
margin-bottom: 50px;
|
|
|
|
}
|
|
|
|
|
2021-09-10 07:30:39 -07:00
|
|
|
p.highlightAbs {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.highlightAbs.n-1 {
|
|
|
|
color: blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
p.highlightAbs.n-2 {
|
|
|
|
color: red;
|
|
|
|
}
|
|
|
|
|
2021-09-13 07:42:12 -07:00
|
|
|
p.highlightAbs.n-3 {
|
|
|
|
color: rgb(15, 184, 0);
|
|
|
|
}
|
|
|
|
|
2021-09-12 02:39:09 -07:00
|
|
|
.margin-top {
|
|
|
|
margin-top: 20px;
|
2021-09-12 07:21:10 -07:00
|
|
|
}
|
|
|
|
|
2021-09-13 07:42:12 -07:00
|
|
|
input[type="checkbox"].absent, input[type="checkbox"].late {
|
2021-09-12 07:21:10 -07:00
|
|
|
-webkit-appearance: initial;
|
|
|
|
appearance: initial;
|
|
|
|
background: rgb(207, 207, 207);
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
border: 1px solid black;
|
|
|
|
margin-top: 3px;
|
|
|
|
position: relative;
|
|
|
|
}
|
2021-09-13 07:42:12 -07:00
|
|
|
input[type="checkbox"].absent:checked {
|
2021-09-12 07:21:10 -07:00
|
|
|
background: red;
|
|
|
|
}
|
2021-09-13 07:42:12 -07:00
|
|
|
input[type="checkbox"].absent:checked:after {
|
2021-09-12 07:21:10 -07:00
|
|
|
content: "X";
|
2021-09-13 07:42:12 -07:00
|
|
|
color: white;
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
-webkit-transform: translate(-50%,-50%);
|
|
|
|
-moz-transform: translate(-50%,-50%);
|
|
|
|
-ms-transform: translate(-50%,-50%);
|
|
|
|
transform: translate(-50%,-50%);
|
|
|
|
}
|
|
|
|
input[type="checkbox"].late:checked {
|
|
|
|
background: rgb(15, 184, 0);
|
|
|
|
}
|
|
|
|
input[type="checkbox"].late:checked:after {
|
|
|
|
content: "φ";
|
2021-09-12 07:21:10 -07:00
|
|
|
color: #fff;
|
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
-webkit-transform: translate(-50%,-50%);
|
|
|
|
-moz-transform: translate(-50%,-50%);
|
|
|
|
-ms-transform: translate(-50%,-50%);
|
|
|
|
transform: translate(-50%,-50%);
|
2021-09-09 06:29:31 -07:00
|
|
|
}
|