81 lines
No EOL
1 KiB
CSS
81 lines
No EOL
1 KiB
CSS
body {
|
|
margin: 0;
|
|
overflow: hidden;
|
|
font-family: sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/* Preview sizing */
|
|
.middle img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain
|
|
}
|
|
|
|
/* Create columns that float next to each other */
|
|
.column {
|
|
padding: 10px;
|
|
height: 100%;
|
|
}
|
|
|
|
.left, .right {
|
|
background-color: #f4f4f4;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.left{
|
|
width: 250px;
|
|
float: left;
|
|
}
|
|
|
|
.Right{
|
|
width: 250px;
|
|
float: right;
|
|
}
|
|
|
|
.middle {
|
|
margin-left: 250px;
|
|
margin-right: 250px;
|
|
background-color: #d3d3d3;
|
|
}
|
|
|
|
/* Clear floats after the columns */
|
|
.row:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|
|
/* Columns within panels */
|
|
|
|
.left-col {
|
|
float:left;
|
|
}
|
|
.right-col {
|
|
float:right;
|
|
}
|
|
.clearfix::after {
|
|
content: "";
|
|
clear: both;
|
|
display: table;
|
|
}
|
|
|
|
/* Data divs */
|
|
|
|
#captures {
|
|
font-size:12px;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.capture {
|
|
background-color: #d3d3d3;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.capture img {
|
|
width: 60px;
|
|
} |