/* (C) Roy van Lunsen */ #log { border-style: solid; overflow-x: scroll; scrollbar-width: none; } /* Chess board START */ #board { max-inline-size: 100vh; /* TODO: We don't use SVG for the chess pieces, so it might look pixelated on high-res */ } #board a { margin: 1px; } #y-co { display: flex; flex-flow: column-reverse; /* Order depends on player side #1/3 */ padding-left: 24px; min-width: 178px; /* From this point onward the item list font size will be too large */ } .x-row { display: flex; flex-flow: row nowrap; /* Order depends on player side #2/3 */ padding-left: 32px; /*! min-width: 140px; */ } #y-co > li { flex: 1; } #y-co > li:nth-child(2n) > .x-row > li:nth-child(2n) { background-color: #6c360d; } #y-co > li:nth-child(2n+1) > .x-row > li:nth-child(2n+1) { background-color: #6c360d; } #y-co > li:nth-child(2n+1) > .x-row > li:nth-child(2n) { background-color: #884b10; } #y-co > li:nth-child(2n) > .x-row > li:nth-child(2n+1) { background-color: #884b10; } /*#y-co > li > .x-row > li:first-child {*/ /* border-left-style: solid;*/ /*}*/ #y-co:not(.x-row) { border-style: solid; } #x-co { display: flex; padding-top: 1em; flex-flow: row nowrap; list-style-position: inside; list-style-type: upper-alpha; padding-left: 32px; } #x-co > li { flex: 1 1 32px; padding-top: 1em; } img { border: 2.5px; max-width: 100%; } .coord > a { flex: 1 1 32px; display: flex; } ol > li li { flex: 1 1 32px; display: flex; aspect-ratio: 1; } dl { display: flex; flex-flow: row-reverse; /* Order depends on player side #3/3 */ width: max-content; } dl li { display: flex; flex-flow: column-reverse; /* Order depends on player side #3/3 */ } li.coord { } /* Chess board END */ /* Chess move log START */ figure { display: flex; flex-flow: row; margin: 0 5px 0 5px; } figure img { height: 20px; padding: 1px; } .white { background-color: white; color: black; } .black { background-color: black; color: white; } dd.noimg { /* Display text of
and
at the same height when there's no image in
*/ display: flex; flex-wrap: wrap; align-content: end; } /* Chess move log END */ /* Chess control panel START */ .features, .features ul { padding: 0; margin: 0; list-style-type: none; } .features > li { padding: 10px; flex: 0 1 auto; } .features { display: flex; flex-flow: row wrap; background-color: #5583; font-weight: bold; font-family: sans-serif; } .keys { display: flex; flex-flow: row wrap; position: absolute; } .values { display: none; position: absolute; } ul.values { padding: 20px 10px 10px 10px; } .key { display: none; /* Avoid wrapping on hover and losing hover as a result #1/2 */ flex-flow: column nowrap; padding-top: 10px; text-align: center; } .key:hover > .values { display: contents; border-style: dotted; } ul.features > li:hover > ul > li { display: flex; /* Avoid wrapping on hover and losing hover as a result #2/2 */ } ul a { text-decoration: none; display: block; } .key > ul > li:nth-last-child(n+2) a { border-bottom: double; border-color: #000; } .key > ul > li:first-child a { padding-top: 5px; } .key > ul > li > a { margin: 2.5px; padding: 2.5px; background-color: #eef; border-left: solid; border-right: solid; border-color: #000; } .key > ul > li:last-child { border-bottom: solid; } a:hover { color: green; } .option { background-color: #bbc; border-width: 0 0 5px 0; border-style: dashed; padding: 5px; } /* Chess control panel END */