yew/examples/function_memory_game/scss/game_status_board.scss
Howard.Zuo fff1ffaab8
Example of function memory game (#2255)
* example of function memory game

* refactor: remove unnecessary manual PartialEq implementation

* refactor: remove unnecessary license note

* refactor: update implementation and doc with suggestions

* refactor: fix format and lint issues
2022-01-12 18:40:38 +05:00

25 lines
435 B
SCSS

.game-status-container {
position: relative;
margin-top: 10px;
width: 100%;
height: 20px;
line-height: 20px;
text-align: center;
font-size: 18px;
font-weight: bold;
button {
border: none;
cursor: pointer;
background: transparent;
color: #5979ac;
font-size: 17px;
font-weight: bold;
}
.sec-past {
position: absolute;
right: 10px;
font-size: 15px;
font-weight: normal;
}
}