diff options
Diffstat (limited to 'mediagoblin/static/css')
-rw-r--r-- | mediagoblin/static/css/base.css | 53 |
1 files changed, 34 insertions, 19 deletions
diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css index e89ce8a2..f4359791 100644 --- a/mediagoblin/static/css/base.css +++ b/mediagoblin/static/css/base.css @@ -230,6 +230,14 @@ text-align: center; float: right; } +textarea#comment_content { + resize: vertical; + width: 634px; + height: 90px; + border: none; + background-color: #f1f1f1; + padding: 3px; + .clear { clear: both; display: block; @@ -295,6 +303,15 @@ text-align: center; text-align: right; } +#password_boolean { + margin-top: 4px; + width: 20px; +} + +textarea#description, textarea#bio { + resize: vertical; +} + /* comments */ .comment_author { @@ -345,11 +362,18 @@ h2.media_title { p.media_specs { font-size: 0.9em; border-top: 1px solid #222; - border-bottom: 1px solid #222; padding: 10px 0px; color: #888; } +.no_html5 { + background: black; + color: white; + text-align: center; + height: 160px; + padding: 130px 10px 20px 10px; +} + /* icons */ img.media_icon { @@ -443,23 +467,14 @@ table.media_panel th { margin-left: 10px; } -@media screen and (max-width: 960px) { - .mediagoblin_body { - } - .mediagoblin_footer { - } -} +/* ASCII art */ +@font-face { + font-family: Inconsolata; + src: local('Inconsolata'), url('../fonts/Inconsolata.otf') format('opentype') +} - /* old code - .navigation_button { - position: fixed; - bottom: 0px; - right: 0px; - width: 50%; - margin: 0; - } - .navigation_left { - left: 0px; - } - */ +.ascii-wrapper pre { + font-family: Inconsolata, monospace; + line-height: 1em; +} |