diff --git a/truthseeker/static/css/game_ui_start.css b/truthseeker/static/css/game_ui_start.css index fb6e398..6f46adf 100644 --- a/truthseeker/static/css/game_ui_start.css +++ b/truthseeker/static/css/game_ui_start.css @@ -35,8 +35,6 @@ margin-top: 0.5em; margin-bottom: 0.5em; text-align: center; - -webkit-text-stroke: 1px black; - text-shadow: 1px 0 0 red, 0 1px 0 red, -1px 0 0 red, 0 -1px 0 red; } .top_button { @@ -69,4 +67,11 @@ padding-left: 1em; padding-right: 1em; text-transform: uppercase; -} \ No newline at end of file + overflow: hidden; + transition: box-shadow 0.5s, transform 0.5s; +} + +.action_button:hover { + transform: translate(0.1em, 0.1em); + box-shadow: 10px -10px 25px 0px black, -10px 10px 25px 0px black; +}