mirror of
https://github.com/osmarks/website
synced 2024-11-08 20:29:55 +00:00
42 lines
575 B
CSS
42 lines
575 B
CSS
|
/* app.css */
|
||
|
.layer {
|
||
|
margin: 1em;
|
||
|
border: 1px solid #666;
|
||
|
display: inline-block;
|
||
|
}
|
||
|
.cell {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
.slot {
|
||
|
width: 2rem;
|
||
|
height: 2rem;
|
||
|
display: inline-block;
|
||
|
border: 1px solid #aaa;
|
||
|
font-size: 0.5em;
|
||
|
}
|
||
|
.slot-1 {
|
||
|
background: blue;
|
||
|
}
|
||
|
.slot-2 {
|
||
|
background: red;
|
||
|
}
|
||
|
.board {
|
||
|
display: flex;
|
||
|
}
|
||
|
.row {
|
||
|
display: flex;
|
||
|
}
|
||
|
.highlight {
|
||
|
width: 50%;
|
||
|
height: 50%;
|
||
|
top: 25%;
|
||
|
left: 25%;
|
||
|
position: relative;
|
||
|
}
|
||
|
.abspos-indicator {
|
||
|
height: 100%;
|
||
|
background-size: cover;
|
||
|
}
|
||
|
/*# sourceMappingURL=webworker_glue.css.map */
|