summaryrefslogtreecommitdiff |
diff options
author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2018-03-12 21:55:29 +0100 |
---|---|---|
committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2018-03-12 21:55:29 +0100 |
commit | a43a65eed48ebbcd1650ef280542920b2fed0659 (patch) | |
tree | 2e06f3329a7767320ade2f15b78a920cb7a2a8c6 | |
parent | 76dabb50cd247b8029f5f66a99533a8cbf5cfcd7 (diff) |
Starting to work on the timeline feature.
-rw-r--r-- | src/battlemap/www/style.css | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/src/battlemap/www/style.css b/src/battlemap/www/style.css index 5ee6ef2..914896c 100644 --- a/src/battlemap/www/style.css +++ b/src/battlemap/www/style.css @@ -83,7 +83,7 @@ .battlemap-tabmenu-content { - flex: initial; + flex: 1; } /** General *******************************************************************/ @@ -127,6 +127,28 @@ height: 100px; } +/**** Timeline Tab */ +.battlemap-timeline-movement, +.battlemap-timeline-attack, +.battlemap-timeline-weapon-switch +{ + border-radius: 6px; + padding: 1em; + margin: 0.5em 0.5em 0 0.5em; + text-align: center; + box-shadow: + 1px 0px 2px #888, + -1px 0px 2px #888, + 0px 1px 2px #888, + 0px -1px 2px #888; + background-color: #EEE; +} + +.battlemap-tabmenu-timeline-tab +{ + background-color: #AAA; +} + /******************************************************************************/ /** Main View Elements ********************************************************/ /******************************************************************************/ |