29 lines
465 B
CSS
29 lines
465 B
CSS
|
.guillotine-window {
|
||
|
display: block;
|
||
|
position: relative;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.guillotine-canvas {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
text-align: center;
|
||
|
margin: 0 !important;
|
||
|
padding: 0 !important;
|
||
|
border: none !important;
|
||
|
}
|
||
|
|
||
|
.guillotine-canvas > * {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
max-width: none;
|
||
|
max-height: none;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
margin: 0 !important;
|
||
|
padding: 0 !important;
|
||
|
border: none !important;
|
||
|
}
|