2021-02-02 21:43:58 +01:00
|
|
|
@import "shared.css";
|
|
|
|
|
body {
|
|
|
|
|
background-color: var(--main-bg-color);
|
|
|
|
|
}
|
|
|
|
|
.board {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
.row {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
}
|
|
|
|
|
.block {
|
|
|
|
|
background-color: red;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
/*margin: 0.1em;*/
|
|
|
|
|
position: absolute;
|
|
|
|
|
transition-duration: 1s;
|
|
|
|
|
}
|
|
|
|
|
.card {
|
|
|
|
|
background-color: var(--main-fg-color);
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 5em;
|
|
|
|
|
margin: 1em;
|
|
|
|
|
letter-spacing: 0.3em;
|
|
|
|
|
font-variant: small-caps;
|
|
|
|
|
/*outline: 1px solid red;*/
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
.highlight {
|
|
|
|
|
background-color: var(--main-hl-color);
|
|
|
|
|
}
|
|
|
|
|
.cat {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
.card.hidden {
|
|
|
|
|
visibility: hidden;
|
2021-02-02 23:05:00 +01:00
|
|
|
}
|