diff options
-rw-r--r-- | gui_box_maximize.svg | 3 | ||||
-rw-r--r-- | gui_box_minimize.svg | 3 | ||||
-rw-r--r-- | play.css | 10 |
3 files changed, 16 insertions, 0 deletions
diff --git a/gui_box_maximize.svg b/gui_box_maximize.svg new file mode 100644 index 0000000..038c71a --- /dev/null +++ b/gui_box_maximize.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="16"> +<path stroke-width="3" stroke="gold" fill="none" d="M 14 5 L 8 11 L 2 5" /> +</svg> diff --git a/gui_box_minimize.svg b/gui_box_minimize.svg new file mode 100644 index 0000000..add3008 --- /dev/null +++ b/gui_box_minimize.svg @@ -0,0 +1,3 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="24" height="16"> +<path stroke-width="3" stroke="gold" fill="none" d="M 14 11 L 8 5 L 2 11" /> +</svg> @@ -103,11 +103,16 @@ header.your_turn { background-color: orange; } min-height: 24px; text-align: center; font-weight: bold; + + background-repeat: no-repeat; + background-position: 100% 50%; + background-image: url(gui_box_maximize.svg); } #battle[open] #battle_header { cursor: n-resize; border-bottom: 1px solid black; + background-image: url(gui_box_minimize.svg); } #battle_message { @@ -171,11 +176,16 @@ header.your_turn { background-color: orange; } min-height: 24px; text-align: center; font-weight: bold; + + background-repeat: no-repeat; + background-position: 100% 50%; + background-image: url(gui_box_maximize.svg); } #pursuit[open] #pursuit_header { cursor: n-resize; border-bottom: 1px solid black; + background-image: url(gui_box_minimize.svg); } #pursuit_hits { |