diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-07-09 12:54:36 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-07-13 14:10:20 +0200 |
commit | 9479b226f6cbfb53d66123a397f46cca0f682d45 (patch) | |
tree | 2d3bbe189f72e400f477ec1e910c21f12fd42ab7 /public/style.css | |
parent | f6397dca9091cba8057f62815a9eabacf02ad098 (diff) | |
download | server-9479b226f6cbfb53d66123a397f46cca0f682d45.tar.gz |
Use status constants.
Diffstat (limited to 'public/style.css')
-rw-r--r-- | public/style.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/public/style.css b/public/style.css index bcac7fe..f3b4493 100644 --- a/public/style.css +++ b/public/style.css @@ -193,6 +193,10 @@ article hr + p { font-style: italic; } .game_item.finished .game_main { background-color: gainsboro } .game_item.finished a:hover { color: mediumblue } +.game_item.archived .game_head { background-color: silver } +.game_item.archived .game_main { background-color: gainsboro } +.game_item.archived a:hover { color: mediumblue } + .game_item.your_turn .game_head { background-color: gold } .game_item.your_turn .game_main { background-color: lightyellow } .game_item.your_turn a:hover { color: #860 } |