Merge branch 'master' of https://github.com/underhilllabs/scuttle
[scuttle] / scuttle.css
index c94341c801d11faaf11ce5985d6dabeba2613717..57b1ae093319930030738cd4a763af227d6ca5a5 100644 (file)
@@ -19,23 +19,30 @@ body {
   margin: 0;
   padding: 0;
 }
-input[type=text],
-input[type=password],
-select,
-textarea {
-  border: 1px solid #AAA;
-  padding: .1em;
+input[type=submit] {
+  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFF), to(#DDD));
+  border: 1px solid #CCC;
+  border-radius: 5px;
+  font-size: 13px;
+  padding: 4px 12px;
+  text-shadow: #FFF 1px 1px 0px;
+  -moz-border-radius: 5px;
+}
+input[type=submit]:active {
+  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#DDD), to(#FFF));
+}
+input[type=submit]:hover {
+  border-color: #666;
 }
 input[type=text],
 input[type=password],
+select,
 textarea {
-  padding: .2em;
-}
-input[type=text]:focus,
-input[type=password]:focus,
-select:focus,
-textarea:focus {
-  border-color: #666;
+  border: 1px solid #CCC;
+  border-radius: 3px;
+  font-size: 13px;
+  padding: 4px 5px;
+  -moz-border-radius: 3px;
 }
 p.error,
 p.success {
@@ -174,6 +181,14 @@ div.meta {
 div.meta span {
   color: #F00;
 }
+/* bookmark date fields: updated and created */
+div.meta span#date-updated {
+    color: #285;
+}
+div.meta span#date-original {
+    background: #eee;
+    color: #aaa;
+}
 li.xfolkentry {
   border-bottom: 1px solid #DDD;
   margin-bottom: 0;

Benjamin Mako Hill || Want to submit a patch?