From d008136df5d15bbaa3360f160e3cf235ba3525d9 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 9 Jun 2012 18:02:05 -0400 Subject: [PATCH] Override default appearance for input and buttons --- core.css | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/core.css b/core.css index 161db41..4beb6d3 100644 --- a/core.css +++ b/core.css @@ -45,18 +45,37 @@ li label { width: 12em; text-align: right; display: inline-block; + font-weight: bold; } li input { - padding: .2em; + padding: .3em; width: 20em; font-size: 1em; + + border-color: #CCCCCC; + border-style: solid; + border-width: .1em; +} + +li input:focus { + outline: rgb(15, 74, 169) solid .1em; } button { font-size: 1em; - padding: .3em; + padding: .5em 1.0em; float: right; + + background-color: #CECECE; + border-color: #909090; + border-style: solid; + border-width: .1em; + border-radius: .2em; +} + +button:active { + border-color: rgb(15, 74, 169); } .clear { -- 2.22.5