diff options
-rw-r--r-- | mediagoblin/themes/airy/assets/css/airy.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/mediagoblin/themes/airy/assets/css/airy.css b/mediagoblin/themes/airy/assets/css/airy.css index c4bea5cb..ddbc71ac 100644 --- a/mediagoblin/themes/airy/assets/css/airy.css +++ b/mediagoblin/themes/airy/assets/css/airy.css @@ -18,6 +18,7 @@ a { border-width: 1px 1px 2px; color: #4a4a4a; font-weight: bold; + box-shadow: 0 0 3px #E4E4E4 inset; } p.navigation_button { @@ -33,6 +34,10 @@ header { margin-right: auto; } +.header_right a { + color: #4a4a4a; +} + @media screen and (max-width: 940px) { header { width: 100%; @@ -50,6 +55,7 @@ footer { border-color: #E4E4E4; border-width: 1px 1px 2px; padding: 5px 10px; + box-shadow: 0 0 3px #E4E4E4 inset; } .button_action_highlight, .button_form { @@ -57,6 +63,21 @@ footer { background-color: #37AB74; border-color: #6CAA8E; border-width: 1px 1px 2px; + box-shadow: 0 0 3px #6CAA8E inset; +} + +.button_info { + background-color: #9dbed5; + border-color: #E4E4E4; + color: #C3C3C3; + box-shadow: 0 0 3px #49717F inset; +} + +.button_warning { + background-color: #d6ae96; + border-color: #E4E4E4; + color: #4a4a4a; + box-shadow: 0 0 3px #7F6859 inset; } input, textarea { @@ -71,6 +92,8 @@ input, textarea { .media_thumbnail { background-color: #fff; + border-color: #e4e4e4; + box-shadow: 0 0 3px #c4c4c4; } .media_thumbnail a { @@ -80,3 +103,8 @@ input, textarea { .empty_space { background-image: url("../images/empty_dots.png"); } + +#exif_content h3 { + border-bottom: 1px solid #E4E4E4; +} + |