]> git.plutz.net Git - serve0/blobdiff - style.css
implemented full multi file tagging
[serve0] / style.css
index c668365c24536725c2c47df76cc14edfbb42bfa3..1bbc2fff933f8c4b11fe1eee20f6674aa4d97bf6 100644 (file)
--- a/style.css
+++ b/style.css
@@ -8,16 +8,20 @@ a { color: inherit; text-decoration: none;}
 body {
   color: white;
   background-color: black;
+  min-height: 100%;
 }
 
-#prefs, #bookmarks {
+#prefs, #bookmarks, #multitag {
   display: block;
   overflow: hidden;
   height: 0;
+  text-align: left;
 }
 #prefs:target,
+#multitag:target,
 #bookmarks:target {
   height: auto;
+  overflow: visible;
 }
 
 #navigation{
@@ -64,8 +68,11 @@ a[href="#advsearch"]:before {
 }
 
 #prefs:target a[href="#"] {
-  position: absolute;
-  right: .25em; margin-top: -1.5em;
+  display: block;
+  position: relative;
+  top: -1.5em; right: -.5em;
+  margin-left: 4em;
+  text-align: right;
   font-size: 1.5em;
   padding: 0 .25em;
   background-color: #333;
@@ -90,18 +97,22 @@ a[href="#advsearch"]:before {
   max-width: 85%;
 }
 
-.itemlist { overflow: hidden; }
 .list {
   position: relative;
-  display: block; float: left;
+  display: inline-block;
   width: 25%;
   min-width: 250px;
-  padding: .5em 1em;
+  padding: .25em;
   overflow: none;
   word-wrap: break-word;
   vertical-align: top;
+  color: black;
+  overflow: hidden;
 }
-.list, .list a { color: black; }
+.list.dir {
+  padding: .5em 1em;
+}
+
 .list:before {
   position: absolute;
   top: .25em; left: .25em;
@@ -109,14 +120,47 @@ a[href="#advsearch"]:before {
   z-index: -2;
   content: '';
 }
-.list.file:first-of-type { clear: left; }
 .list.dir:before { background-color: #CCF; }
 .list.file:before { background-color: #FDD; }
+.list.file:first-of-type { clear: left; }
 
-.list.file img {
+.list.file a img{
   display: block;
   width: 100%;
+  min-height: 4em;
+}
+.list.file a label{
+  position: absolute;
+  top: 0; padding: .25em .5em;
+  color: white;
+  background-color: rgba(0,0,0,.625);
+}
+
+.list.file .time,
+.list.file .dim,
+.list.file .tag,
+.list.file label {
+  display: inline-block;
+  margin-top: .125em;
+}
+.list.file .time,
+.list.file .dim {
+  color: white;
+  background-color: #004;
+  padding: .125em .5em;
+}
+
+.list.file input[type="checkbox"] { display: none; }
+.list.file input[type="checkbox"] + label {
+  border: 1px solid;
+  border-radius: .125em;
+  padding: 0 .25em;
+  background-color: #FBB;
+}
+.list.file input[type="checkbox"]:checked + label {
+  background-color: #4F4;
 }
+
 .pagination {
   display: block;
   text-align: center;
@@ -132,8 +176,8 @@ a[href="#advsearch"]:before {
 }
 
 #editing {
-  position: absolute;
-  width: 100%; bottom: 0;
+  text-align: left;
+  width: 100%;
   background-color: #333;
   border-top: 1px solid;
   padding: .25em;
@@ -141,3 +185,19 @@ a[href="#advsearch"]:before {
 
 #index label:first-of-type { font-weight: bold; }
 #index input, #index button { margin-left: 1em;}
+
+#multitag:target a[href="#"] {
+  position: relative;
+  top: -1em;
+  padding-right: 10em;
+  background-color: #333;
+}
+#multitag fieldset{
+  display: inline-block;
+  width: 25%; min-width: 250px;
+  vertical-align: top;
+  padding: 0 .25em;
+  border: none;
+}
+#multitag fieldset * { width: 100%; }
+#multitag fieldset button { width: 50%; }