2024-02-16 22:49:06 +01:00
|
|
|
#pdf-preview {
|
|
|
|
margin: 0 auto;
|
|
|
|
display: block;
|
|
|
|
max-width: calc(100% - 30px);
|
|
|
|
max-height: calc(100% - 30px);
|
|
|
|
box-shadow: 0 0 4px rgba(100, 100, 100, 0.25);
|
|
|
|
transition: rotate 0.3s;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
translate: -50% -50%;
|
|
|
|
}
|
|
|
|
|
2024-03-21 21:58:01 +01:00
|
|
|
#previewContainer {
|
2024-02-16 22:49:06 +01:00
|
|
|
aspect-ratio: 1;
|
|
|
|
width: 100%;
|
|
|
|
border: 1px solid rgba(0, 0, 0, 0.125);
|
|
|
|
border-radius: 0.25rem;
|
|
|
|
margin: 1rem 0;
|
|
|
|
padding: 15px;
|
|
|
|
display: block;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttonContainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
2024-10-14 22:34:41 +01:00
|
|
|
|
|
|
|
#pdf-preview-large {
|
|
|
|
margin: 0 auto;
|
|
|
|
display: block;
|
|
|
|
max-width: calc(100% - 30px);
|
|
|
|
max-height: calc(100% - 30px);
|
|
|
|
box-shadow: 0 0 4px rgba(100, 100, 100, 0.25);
|
|
|
|
transition: rotate 0.3s;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
translate: -50% -50%;
|
|
|
|
}
|