36 lines
No EOL
523 B
CSS
36 lines
No EOL
523 B
CSS
.dropzone {
|
|
position: fixed;
|
|
left: 0px;
|
|
right: 0px;
|
|
top: 0px;
|
|
bottom: 0px;
|
|
display: none;
|
|
border: 0px dotted red;
|
|
margin: 4px;
|
|
}
|
|
|
|
.dropzone.dragactive {
|
|
background-color: #33FF0000;
|
|
border: 3px dotted blue;
|
|
display: block;
|
|
}
|
|
|
|
#preview_frame {
|
|
position: fixed;
|
|
left: 0px;
|
|
right: 0px;
|
|
top: 0px;
|
|
bottom: 0px;
|
|
}
|
|
|
|
#preview_container {
|
|
position: absolute;
|
|
left: 32px;
|
|
right: 32px;
|
|
top: 32px;
|
|
bottom: 64px;
|
|
}
|
|
|
|
.nowrap {
|
|
white-space: nowrap;
|
|
} |