diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-06-10 23:15:02 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-06-10 23:15:02 +0200 |
commit | c5d377e8e1c907149327ba45c22e5e52b8cecf1f (patch) | |
tree | e4f85b439bb4454eade547a0a4d946813334d4fc | |
parent | 4cbd55c8ddd8b23a0dba5e262ba818b0dfb1d559 (diff) | |
download | plantagenet-c5d377e8e1c907149327ba45c22e5e52b8cecf1f.tar.gz |
Only grayscale background image of hidden/disabled lord mats.
-rw-r--r-- | images/lord_mat_150_gray.jpg | bin | 0 -> 19608 bytes | |||
-rw-r--r-- | images/lord_mat_150_gray.png | bin | 0 -> 88714 bytes | |||
-rw-r--r-- | images/lord_mat_75_gray.jpg | bin | 0 -> 10588 bytes | |||
-rw-r--r-- | images/lord_mat_75_gray.png | bin | 0 -> 27317 bytes | |||
-rw-r--r-- | play.css | 27 |
5 files changed, 23 insertions, 4 deletions
diff --git a/images/lord_mat_150_gray.jpg b/images/lord_mat_150_gray.jpg Binary files differnew file mode 100644 index 0000000..2da80e5 --- /dev/null +++ b/images/lord_mat_150_gray.jpg diff --git a/images/lord_mat_150_gray.png b/images/lord_mat_150_gray.png Binary files differnew file mode 100644 index 0000000..57a3f4f --- /dev/null +++ b/images/lord_mat_150_gray.png diff --git a/images/lord_mat_75_gray.jpg b/images/lord_mat_75_gray.jpg Binary files differnew file mode 100644 index 0000000..9035a95 --- /dev/null +++ b/images/lord_mat_75_gray.jpg diff --git a/images/lord_mat_75_gray.png b/images/lord_mat_75_gray.png Binary files differnew file mode 100644 index 0000000..f1187f5 --- /dev/null +++ b/images/lord_mat_75_gray.png @@ -486,12 +486,31 @@ body.Lancaster #plan_actions .york { display: none } .mat.engaged .board { box-shadow: 0 0 0 1px #333, 0 0 0 4px indianred; } #court1 .mat.hidden .board, -#court2 .mat.hidden .board { - filter: grayscale(100%) +#court2 .mat.hidden .board, +.mat.ravine .board +{ + background-image: url(images/lord_mat_75_gray.jpg); + background-color: #999; + border-color: #aaa #666 #666 #aaa; +} + +.defender .att #court1 .mat.hidden .board, +.defender .att #court2 .mat.hidden .board, +.defender .att .mat.ravine .board, +.attacker .def #court1 .mat.hidden .board, +.attacker .def #court2 .mat.hidden .board, +.attacker .def .mat.ravine .board +{ + border-color: #666 #aaa #aaa #666; } -.mat.ravine .board { - filter: grayscale(100%) +@media (min-resolution: 97dpi) { + #court1 .mat.hidden .board, + #court2 .mat.hidden .board, + .mat.ravine .board + { + background-image: url(images/lord_mat_150_gray.jpg); + } } .mat .capabilities { |