From 4dfbe0fc26865d40f687d1a41e311bc2152152fd Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Mon, 27 Feb 2012 01:18:44 -0500 Subject: [PATCH] Style actor input elements --- web_frontend/mobile.css | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/web_frontend/mobile.css b/web_frontend/mobile.css index 7f1e362..fca045a 100644 --- a/web_frontend/mobile.css +++ b/web_frontend/mobile.css @@ -20,3 +20,40 @@ body { .tile .title { font-size: 1.0em; } + +.actor .select:first-child { + border-top: 1px solid red; +} + +.actor select { + display: block; + width: 100%; +} + +.actor input[type="text"] { + display: block; + box-sizing: border-box; + width: 100%; +} + +button { + width: 50%; + padding: 1em; + + font-size: 1.0em; + + border: .1em solid black; + + background: -webkit-gradient( + linear, + left bottom, + left top, + color-stop(0, rgb(99,95,103)), + color-stop(1, rgb(255,255,255)) + ); + background: -moz-linear-gradient( + center bottom, + rgb(255,255,255) 100%, + rgb(173,175,175) 0% + ); +} -- 2.22.5