|
|
|
/* (C) Roy van Lunsen */
|
|
|
|
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
text-decoration: none;
|
|
|
|
outline-style: solid;
|
|
|
|
color: white;
|
|
|
|
background-image: url(i/tem.png);
|
|
|
|
}
|
|
|
|
|
|
|
|
ol > li li {
|
|
|
|
display: inline-block;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#y-co {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column-reverse; /* Order depends on player side #1/3 */
|
|
|
|
width: max-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.x-row {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row; /* Order depends on player side #2/3 */
|
|
|
|
}
|
|
|
|
|
|
|
|
#x-co {
|
|
|
|
display: inline-flex;
|
|
|
|
flex-flow: row;
|
|
|
|
width: max-content;
|
|
|
|
margin-top: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.x-co {
|
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
width: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.features, .keys, .values {
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.features {
|
|
|
|
display: grid;
|
|
|
|
}
|
|
|
|
|
|
|
|
.key {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.key .values {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3 > ul:hover .key {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.key:hover .values {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
position: fixed;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
position: relative;
|
|
|
|
border: 2.5px;
|
|
|
|
height: 32px;
|
|
|
|
border-color: #884b10;
|
|
|
|
border-color: #592b07;
|
|
|
|
}
|
|
|
|
|
|
|
|
#emptyx {
|
|
|
|
width: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
dl {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column-reverse;
|
|
|
|
max-height: 50vh;
|
|
|
|
width: max-content;
|
|
|
|
overflow-y: scroll;
|
|
|
|
scrollbar-width: thin;
|
|
|
|
}
|
|
|
|
|
|
|
|
dl li {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column-reverse; /* Order depends on player side #3/3 */
|
|
|
|
}
|
|
|
|
|
|
|
|
figure {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
|
|
|
margin-top: 0.1em;
|
|
|
|
margin-bottom: 0.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
figure img {
|
|
|
|
height: 20px;
|
|
|
|
padding: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.white {
|
|
|
|
background-color: white;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.black {
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*img.black, img.white {*/
|
|
|
|
/* border-width: 1px;*/
|
|
|
|
/* border-color: red;*/
|
|
|
|
/*}*/
|
|
|
|
|
|
|
|
dd.noimg { /* Display text of <dd> and <dt> at the same height when there's no image in <dd> */
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-content: end;
|
|
|
|
}
|