From 3baec6c445d18363c082d1a56802e70e1f8a1e31 Mon Sep 17 00:00:00 2001 From: alopexc0de Date: Mon, 24 Dec 2012 21:35:13 -0500 Subject: [PATCH] Added a lot of CSS to the page - looks more bearable --- short/style.css | 68 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 short/style.css diff --git a/short/style.css b/short/style.css new file mode 100644 index 0000000..69705ad --- /dev/null +++ b/short/style.css @@ -0,0 +1,68 @@ +#content{ + text-align: center; + background: #336666; + color: #66FF00; + float: center; +} +.api { + display: none; + border-top: 1px solid #666; + border-bottom: 1px solid #666; +} +select, +textarea, +input[type="text"], +.uneditable-input { + text-align: center; + border-color: #B333E5; + border:0px solid gray; + resize:none; + background-color:#666666; + color:#ffffff; + outline:0; + padding:5px; + border-radius:30px; + -webkit-box-shadow:0px 0px 20px 1px gray; +} +select, +textarea:focus, +input[type="text"]:focus, +.uneditable-input:focus { + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 15px rgba(179, 51, 229, 0.9) !important; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 15px rgba(179, 51, 229, 0.9) !important; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 15px rgba(179, 51, 229, 0.9) !important; + border:0px solid gray; + resize:none; + background-color:grey; + color:#ffffff; + outline:0; + padding:5px; + border-radius:30px; + -webkit-box-shadow:0px 0px 20px 1px gray; +} +input[type="submit"]:hover { + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 15px rgba(179, 51, 229, 0.9) !important; + -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 15px rgba(179, 51, 229, 0.9) !important; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 15px rgba(179, 51, 229, 0.9) !important; + border:0px solid gray; + resize:none; + background-color:#F7FBFA; + color:#000; + outline:2px; + padding:5px; + border-radius:30px; + -webkit-box-shadow:0px 0px 20px 1px gray; +} +input[type="submit"] { + -webkit-transition: width 0.6s ease; + -moz-transition: width 0.6s ease; + -o-transition: width 0.6s ease; + border:0px solid gray; + resize:none; + background-color:#D7D1F8; + color:#000; + outline:0; + padding:5px; + border-radius:30px; + -webkit-box-shadow:0px 0px 15px 1px #333333; +}