openflexure-microscope-server/openflexure_microscope/api/static/style_v1.css
2018-11-12 12:22:06 +00:00

75 lines
No EOL
942 B
CSS

body {
margin: 0;
overflow: hidden;
font-family: sans-serif;
font-size: 14px;
}
* {
box-sizing: border-box;
}
/* Preview sizing */
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;
}
.capture {
background-color: #d3d3d3;
}