2022-07-02 20:58:33 +00:00
|
|
|
@import url('https://fonts.googleapis.com/css?family=Major+Mono+Display');
|
|
|
|
|
2022-07-02 16:30:30 +00:00
|
|
|
body {
|
2022-07-02 20:58:33 +00:00
|
|
|
font: 14px "Courier New", monospace;
|
2022-07-03 02:30:48 +00:00
|
|
|
background: #0d0d0d;
|
2022-07-02 20:58:33 +00:00
|
|
|
color: #02d300;
|
|
|
|
margin: 20px;
|
|
|
|
white-space: pre-wrap;
|
2022-07-02 16:30:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ol, ul {
|
|
|
|
padding-left: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.board-row:after {
|
|
|
|
clear: both;
|
|
|
|
content: "";
|
|
|
|
display: table;
|
|
|
|
}
|
|
|
|
|
|
|
|
.status {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.square {
|
|
|
|
background: #fff;
|
|
|
|
border: 1px solid #999;
|
|
|
|
float: left;
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
line-height: 34px;
|
|
|
|
height: 34px;
|
|
|
|
margin-right: -1px;
|
|
|
|
margin-top: -1px;
|
|
|
|
padding: 0;
|
|
|
|
text-align: center;
|
|
|
|
width: 34px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.square:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.kbd-navigation .square:focus {
|
|
|
|
background: #ddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
.game {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.game-info {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
2022-07-03 02:30:48 +00:00
|
|
|
|
|
|
|
.fail-text{
|
|
|
|
color: #d82222;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blink-text {
|
|
|
|
animation: blinker 1s step-start infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes blinker {
|
|
|
|
50% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|