Compare commits
3 Commits
feature/ef
...
beta-relea
Author | SHA1 | Date |
---|---|---|
Emilia Allison | 53336c410c | |
Emilia Allison | 711af96d29 | |
Emilia Allison | f7c3069145 |
|
@ -6,13 +6,17 @@ div.plate_container {
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: space-evenly;
|
justify-content: flex-start;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
border: 2px solid $color-dark;
|
border: 2px solid $color-dark;
|
||||||
grid-column: right / right;
|
grid-column: right / right;
|
||||||
grid-row: upper / 3;
|
grid-row: upper / 3;
|
||||||
|
|
||||||
|
@media (min-height: 900px) {
|
||||||
|
justify-content: space-evenly;
|
||||||
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
margin-bottom: 1%;
|
margin-bottom: 1%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
|
@ -53,6 +53,41 @@ td.current_select div.plate_cell_inner {
|
||||||
|
|
||||||
|
|
||||||
// Styles for specific plate types:
|
// Styles for specific plate types:
|
||||||
|
.W96 {
|
||||||
|
th {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
line-height: 0px;
|
||||||
|
}
|
||||||
|
tr:first-child {
|
||||||
|
th {
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
td.current_select div.plate_cell_inner {
|
||||||
|
border: 2px solid black;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.W384 {
|
||||||
|
th {
|
||||||
|
font-size: 0.9rem;
|
||||||
|
line-height: 0px;
|
||||||
|
}
|
||||||
|
tr:first-child {
|
||||||
|
th {
|
||||||
|
line-height: inherit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
td {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
td.current_select div.plate_cell_inner {
|
||||||
|
border: 2px solid black;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.W1536 {
|
.W1536 {
|
||||||
th {
|
th {
|
||||||
|
|
|
@ -13,6 +13,8 @@ div.tree {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border: 2px solid $color-dark;
|
border: 2px solid $color-dark;
|
||||||
|
|
||||||
|
overflow: scroll;
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
margin-left: 0.5rem;
|
margin-left: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue