]> Dogcows Code - chaz/chatty/blobdiff - root/static/css/common.css
add register template; improved message feedback
[chaz/chatty] / root / static / css / common.css
index dec13c438a48bb275922f9d30eb449b19f4b78d7..ff89b5b6774fbf8ac726a2936b43eb29ad32de8f 100644 (file)
@@ -22,6 +22,11 @@ a:hover {
        border-bottom: 1px dotted blue;
 }
 
+label {
+       width: 100px;
+       float: left;
+}
+
 
 .left {
        float: left;
@@ -52,6 +57,10 @@ a:hover {
        font-size: 1.3em;
 }
 
+#inner h2 {
+       font-size: 1.2em;
+}
+
 #footer {
        padding: 0;
        height: 31px;
@@ -60,18 +69,48 @@ a:hover {
 }
 
 #error {
+       line-height: 24px;
        margin: 5px;
-       padding: 10px;
+       padding: 10px 0 10px 44px;
        border: 2px solid black;
-       background: white;
+       background: white url('../img/warning.png') 10px 50% no-repeat;
+       display: none;
+       cursor: pointer;
        color: red;
        font-weight: bold;
 }
 
 #message {
+       line-height: 24px;
        margin: 5px;
-       padding: 10px;
+       padding: 10px 0 10px 44px;
        border: 2px solid black;
-       background: white;
+       background: white url('../img/info.png') 10px 50% no-repeat;
+       display: none;
+       cursor: pointer;
+}
+
+/* error message */
+.error {
+       /* supply height to ensure consistent positioning for every browser */
+       height:15px;
+       background-color:#FFFE36;
+       border:1px solid #E1E16D;
+       font-size:11px;
+       color:#000;
+       padding:3px 10px;
+       margin-left:-2px;
+
+
+       /* CSS3 spicing for mozilla and webkit */
+       -moz-border-radius:4px;
+       -webkit-border-radius:4px;
+       -moz-border-radius-bottomleft:0;
+       -moz-border-radius-topleft:0;
+       -webkit-border-bottom-left-radius:0;
+       -webkit-border-top-left-radius:0;
+
+       -moz-box-shadow:0 0 6px #ddd;
+       -webkit-box-shadow:0 0 6px #ddd;
 }
 
This page took 0.017891 seconds and 4 git commands to generate.