117 lines
1.7 KiB
CSS
117 lines
1.7 KiB
CSS
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: "Roboto", sans-serif;
|
|
}
|
|
|
|
.pdfarea {
|
|
width: 50%;
|
|
float: left;
|
|
}
|
|
|
|
.formarea {
|
|
width: 50%;
|
|
float: left !important;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
padding: 4px 6px;
|
|
color: #fff;
|
|
margin: 0.1rem;
|
|
cursor: pointer;
|
|
}
|
|
|
|
a:hover,
|
|
.zoom:hover,
|
|
.print-button:hover {
|
|
background-color: #ddd;
|
|
color: #0075f2;
|
|
opacity: 0.8;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.navigation {
|
|
background-color: #bbb;
|
|
color: #000;
|
|
padding: 0.3rem;
|
|
list-style: none;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.navigation__item {
|
|
margin: 0.7rem;
|
|
}
|
|
|
|
.previous {
|
|
background-color: #f1f1f1;
|
|
color: black;
|
|
}
|
|
|
|
.next {
|
|
background-color: #4a8fed;
|
|
color: white;
|
|
}
|
|
|
|
.round {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.canvas__container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.zoom {
|
|
color: #005bac;
|
|
outline: #fff;
|
|
border: 1px solid #005bac;
|
|
border-radius: 50%;
|
|
padding: 12px 12px;
|
|
text-align: center;
|
|
transition: all 0.3s ease;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
input[type="number"] {
|
|
-moz-appearance: textfield;
|
|
appearance: textfield;
|
|
margin: 0;
|
|
text-align: center;
|
|
width: 20%;
|
|
height: 2rem;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
input[type="number"]::-webkit-inner-spin-button,
|
|
input[type="number"]::-webkit-outer-spin-button {
|
|
-webkit-appearance: none;
|
|
margin: 0;
|
|
}
|
|
|
|
.print-button {
|
|
border: none;
|
|
color: #005bac;
|
|
outline: #fff;
|
|
border: 1px solid #005bac;
|
|
border-radius: 50%;
|
|
padding: 12px 12px;
|
|
text-align: center;
|
|
transition: all 0.3s ease;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
/* Hide Print button */
|
|
@media print {
|
|
.navigation {
|
|
display: none;
|
|
}
|
|
}
|