diff options
author | Aaron Williamson <aaron@copiesofcopies.org> | 2012-08-17 00:54:40 -0400 |
---|---|---|
committer | Joar Wandborg <git@wandborg.com> | 2012-09-18 18:10:36 +0200 |
commit | be5be1154fd22c548125ce5a055af1bdfdad9526 (patch) | |
tree | db14a89519b54b0474fca795d8ab242ab8820bfd /mediagoblin/static/css | |
parent | 09e528acbb4d1321fce5cec8b22fd7fd153bf68a (diff) | |
download | mediagoblin-be5be1154fd22c548125ce5a055af1bdfdad9526.tar.lz mediagoblin-be5be1154fd22c548125ce5a055af1bdfdad9526.tar.xz mediagoblin-be5be1154fd22c548125ce5a055af1bdfdad9526.zip |
Added basic collection functionality
Diffstat (limited to 'mediagoblin/static/css')
-rw-r--r-- | mediagoblin/static/css/base.css | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css index 0a14335a..6bc85674 100644 --- a/mediagoblin/static/css/base.css +++ b/mediagoblin/static/css/base.css @@ -250,6 +250,17 @@ footer { font-family: 'Lato', sans-serif; } +.button_collect { + background-image: url("../images/icon_collect.png"); + background-repeat: no-repeat; + background-position:top center; + height: 30px; + width: 30px; + margin: 0px; + padding: 3px 3px 2px 3px; + position: relative; +} + .pagination { text-align: center; } @@ -344,6 +355,10 @@ text-align: center; text-align: right; } +.subform { + margin: 2em; +} + #password_boolean { margin-top: 4px; width: 20px; @@ -416,6 +431,34 @@ textarea#comment_content { max-height: 135px; } +/* collection media */ + +.collection_thumbnail { + float: left; + padding: 0px; + width: 180px; + margin: 0px 4px 10px; + text-align: left; + font-size: 0.875em; + background-color: #222; + border-radius: 0 0 5px 5px; + padding: 0 0 6px; + text-overflow: ellipsis; +} + +.collection_thumbnail a { + color: #eee; + text-decoration: none; +} + +.collection_thumbnail a.remove { + color: #86D4B1; +} + +.collection_thumbnail img { + max-height: 135px; +} + /* media detail */ h2.media_title { |