]> git.plutz.net Git - serve0/blobdiff - style.css
implemented full multi file tagging
[serve0] / style.css
index 90bb4ea9755b39a47d7bfa3c6a59a76a0f08dc4e..1bbc2fff933f8c4b11fe1eee20f6674aa4d97bf6 100644 (file)
--- a/style.css
+++ b/style.css
@@ -1,45 +1,82 @@
+* {
+  box-sizing: border-box;
+  margin: 0; padding: 0;
+}
+button { padding: .125em .5em; }
+a { color: inherit; text-decoration: none;}
+
 body {
   color: white;
   background-color: black;
-  margin: 0;
-  padding: 0;
+  min-height: 100%;
 }
 
-input.toggle {
-  display: none;
-}
-input.toggle + label + * {
+#prefs, #bookmarks, #multitag {
   display: block;
   overflow: hidden;
   height: 0;
+  text-align: left;
+}
+#prefs:target,
+#multitag:target,
+#bookmarks:target {
+  height: auto;
+  overflow: visible;
 }
-input.toggle:checked + label + * { height: auto; }
 
-#search {
+#navigation{
   text-align: center;
   background-color: #333;
   padding: .25em;
   border-bottom: 1px solid;
-  margin: 0;
 }
 
-label[for=t_prefs] {
+#search { display: inline; }
+
+a[href="#prefs"] {
   position: absolute;
-  font-size: 1.5em;
   top: 0; right: .25em;
+  font-size: 1.5em;
+}
+
+a[href="#bookmarks"] {
+  position: absolute;
+  top: 0; left: .25em;
+  font-size: 1.5em;
+}
+
+a[href="#advsearch"] {
+  margin-left: .5em;
+}
+a[href="#advsearch"]:before {
+  content: '\25b8';
+  margin: 0 .5em;
 }
 
-#t_prefs:checked + label + #prefs {
+#prefs:target {
+  position: absolute;
+  right: 0; width: 13em;
+  margin-left: auto;
+  margin-top: -1px;
   background-color: #333;
   border: 1px solid;
   border-top: none;
   border-right: none;
   padding: .5em 1em;
-  margin: 0;
+  z-index: 1;
+  overflow: visible;
+}
+
+#prefs:target a[href="#"] {
+  display: block;
   position: relative;
-  top: -1px;
-  width: 13em;
-  margin-left: auto;
+  top: -1.5em; right: -.5em;
+  margin-left: 4em;
+  text-align: right;
+  font-size: 1.5em;
+  padding: 0 .25em;
+  background-color: #333;
+  z-index: 1;
 }
 
 #prefs label[for=prefs_ps] {
@@ -52,3 +89,115 @@ label[for=t_prefs] {
 #prefs button {
   margin-top: 1em;
 }
+#prefs input { vertical-align: top; }
+#prefs input[type=radio] + label,
+#prefs input[type=checkbox] + label {
+  display: inline-block;
+  margin-bottom: .5em;
+  max-width: 85%;
+}
+
+.list {
+  position: relative;
+  display: inline-block;
+  width: 25%;
+  min-width: 250px;
+  padding: .25em;
+  overflow: none;
+  word-wrap: break-word;
+  vertical-align: top;
+  color: black;
+  overflow: hidden;
+}
+.list.dir {
+  padding: .5em 1em;
+}
+
+.list:before {
+  position: absolute;
+  top: .25em; left: .25em;
+  bottom: .25em; right: .25em;
+  z-index: -2;
+  content: '';
+}
+.list.dir:before { background-color: #CCF; }
+.list.file:before { background-color: #FDD; }
+.list.file:first-of-type { clear: left; }
+
+.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;
+  margin-top: 1em;
+}
+.page {
+  display: inline-block;
+  padding: .25em .5em;
+  color: black;
+  background-color: #FDD;
+  border: 1px solid;
+  margin: 0 .125em;
+}
+
+#editing {
+  text-align: left;
+  width: 100%;
+  background-color: #333;
+  border-top: 1px solid;
+  padding: .25em;
+}
+
+#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%; }