diff options
author | Jef van Schendel <jefvanschendel@gmail.com> | 2011-05-13 15:34:44 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-05-13 15:34:44 -0500 |
commit | 983aa712ad6be83267016de7d10a3e9b027cb1b7 (patch) | |
tree | 997393caa4fa2e197f52822608b944a3662095b8 | |
parent | cb1e4a3d1f04ef9e7df47ec9ee6b075f264f57d6 (diff) | |
download | mediagoblin-983aa712ad6be83267016de7d10a3e9b027cb1b7.tar.lz mediagoblin-983aa712ad6be83267016de7d10a3e9b027cb1b7.tar.xz mediagoblin-983aa712ad6be83267016de7d10a3e9b027cb1b7.zip |
labels changed to font-weight normal instead of bold, css structure improved
-rw-r--r-- | mediagoblin/static/css/base.css | 26 | ||||
-rw-r--r-- | mediagoblin/static/css/base.css~ | 4 |
2 files changed, 21 insertions, 9 deletions
diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css index 169394d0..6c50377f 100644 --- a/mediagoblin/static/css/base.css +++ b/mediagoblin/static/css/base.css @@ -24,21 +24,18 @@ h1 { margin-top:50px; } -.dotted_line { - width:100%; - height:0px; - border-bottom: dotted 1px #5f5f5f; - position:absolute; - left:0px; - margin-top:-20px; -} - a { color: #d12929; border-bottom: 1px dotted; text-decoration: none; } +label { + font-weight: normal; +} + +/* website structure */ + .mediagoblin_header { width:100%; height:60px; @@ -71,6 +68,17 @@ a { padding-right:11px; } +/* common website elements */ + +.dotted_line { + width:100%; + height:0px; + border-bottom: dotted 1px #5f5f5f; + position:absolute; + left:0px; + margin-top:-20px; +} + .button_red { background-image: url('../images/button_red.png'); } diff --git a/mediagoblin/static/css/base.css~ b/mediagoblin/static/css/base.css~ index 169394d0..4c5ae9ab 100644 --- a/mediagoblin/static/css/base.css~ +++ b/mediagoblin/static/css/base.css~ @@ -39,6 +39,10 @@ a { text-decoration: none; } +label { + font-weight: normal; +} + .mediagoblin_header { width:100%; height:60px; |