]> git.wh0rd.org - tt-rss.git/blobdiff - utility.css
add basic password recovery thing
[tt-rss.git] / utility.css
index 54e75babe73995fe09ccac6f8b1ec2da0677bf9a..b520a49bd00c13caede1b295a89e591e952941e0 100644 (file)
@@ -1,13 +1,15 @@
 body {
        margin : 2em;
        padding : 0em;
+       font-family : sans-serif;
+       font-size : 12px;
 }
 
 p.warning {
        color : red;
 }
 
-p.query {
+p.query, code {
        color : green;
 }
 
@@ -15,6 +17,11 @@ p.insensitive {
        color : gray;
 }
 
+div.insensitive-small {
+       color : gray;
+       font-size : 10px;
+}
+
 .floatingLogo {
        float : right;
 }
@@ -58,7 +65,6 @@ div.error {
        padding : 5px;
        margin : 0px 0px 5px 0px;
        font-size : 9pt;
-       width : 50%;
 }
 
 h1 {
@@ -117,4 +123,84 @@ div.rss hr {
        border-color : #e0e0e0;
 }
 
+body#sharepopup {
+       background-color : white;
+       background-image : url("images/toolbar.png");
+       background-repeat : repeat-x;
+       background-position : bottom;
+       margin : 10px;
+       padding : 0px;
+}
+
+body#sharepopup h1 {
+       font-size : 14px;
+       margin : 0px;
+       color : #88b0f0;
+}
+
+body#sharepopup table {
+       background : white;
+       border : 1px solid #88b0f0;
+       padding : 5px;
+}
+
+body#sharepopup form { 
+       height : 100%;
+}
+
+body#sharepopup input { 
+       width : 100%;
+}
+
+div.autocomplete {
+       position : absolute;
+       width : 250px;
+       background-color : white;
+       border :1px solid #778899;
+       margin : 0px;
+       padding : 0px;
+       z-index : 4;
+}
+
+div.autocomplete ul {
+       list-style-type : none;
+       margin : 0px;
+       padding : 0px;
+       font-size : 10px;
+}
+
+div.autocomplete ul li.selected { 
+       background-color : #fff7d5;
+}
+
+div.autocomplete ul li {
+       list-style-type : none;
+       display : block;
+       margin : 0;
+       padding : 2px;
+       height : 32px;
+       cursor : pointer;
+}
+
+fieldset { 
+       border-width : 0px;
+       padding : 0px 0px 5px 0px;
+       margin : 0px;
+}
+
+fieldset input {
+       font-family : sans-serif;
+       font-size : medium;
+       border-spacing : 2px;
+       border : 1px solid #b5bcc7;
+       padding : 2px;
+}
+
+fieldset label {
+       width : 120px;
+       margin-right : 20px;
+       display : inline-block;
+       text-align : right;
+       color : gray;
+}