From: Robert Sesek Date: Mon, 27 Feb 2012 06:18:44 +0000 (-0500) Subject: Style actor input elements X-Git-Tag: 0.9.656.0~24^2~4 X-Git-Url: https://src.bluestatic.org/?a=commitdiff_plain;h=4dfbe0fc26865d40f687d1a41e311bc2152152fd;p=armadillo.git Style actor input elements --- 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% + ); +}