X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=scribe%2Fscribe.css;fp=scribe%2Fscribe.css;h=4eaea8ffc0d555a7550aed606a42c1c0a2240f5f;hp=0000000000000000000000000000000000000000;hb=e52910fa1933db903b039a0f4f32b6470b3100d4;hpb=0574a0e135d4e2f9df5b0c1ccb00a61750ec1954 diff --git a/scribe/scribe.css b/scribe/scribe.css new file mode 100644 index 0000000..4eaea8f --- /dev/null +++ b/scribe/scribe.css @@ -0,0 +1,50 @@ +ol, ul { + padding-left: 30px; +} + +.board-row:after { + clear: both; + content: ""; + display: table; +} + +.status { + margin-bottom: 10px; +} + +.square { + background: #fff; + color: black; + border: 1px solid #999; + float: left; + font-size: 20px; + font-weight: bold; + line-height: 25px; + width: 25px; + height: 25px; + margin-right: -1px; + margin-top: -1px; + padding: 0; + text-align: center; + border-radius: 4px; +} + +.square.open { + cursor: pointer; +} + +.square.occupied { + cursor: default; +} + +.square.open:hover { + background-color: var(--accent-color-bright); +} + +.square:focus { + outline: none; +} + +.kbd-navigation .square:focus { + background: #ddd; +}