diff options
| -rw-r--r-- | templates/styles.css | 78 |
1 files changed, 51 insertions, 27 deletions
diff --git a/templates/styles.css b/templates/styles.css index 8154968..7575205 100644 --- a/templates/styles.css +++ b/templates/styles.css @@ -357,18 +357,41 @@ div.contentx { /* - * Image border styles + * Separators */ +div.separators { + position: relative; + display: block; + float: left; + width: 100%; + text-align: left; + font-variant: small-caps; + font-family: "Trebuchet MS", "DejaVu Sans", "Bitstream Vera Sans", sans-serif; + color: #C0C0C0; +} + +div.album_list_separator { + margin: 70px 0px 30px 0px; + font-size: 35px; + letter-spacing: 2px; + border-bottom: 1px solid #606060; +} + +div.index_separator { + margin: 50px 0px 20px 0px; + font-size: 28px; + letter-spacing: 1px; + border-bottom: 1px solid #606060; +} + + +/* + * Image border styles + */ img#border_single { -/* border: 6px solid #384347; */ background-color: #6b6c69; padding: 1px; -/* -moz-border-radius: 5px; */ -} - -img#border_single:hover { -/* border: 6px solid #A3BED4; */ } img#border_none { @@ -388,30 +411,31 @@ img#frame_white { border: 20px solid white; } +img#frame_black_horiz { + background-color: #A0A0A0; + padding: 1px 0px 1px 0px; + border-top: 35px solid black; + border-bottom: 35px solid black; +} - -div.separators { - position: relative; - display: block; - float: left; - width: 100%; - text-align: left; - font-variant: small-caps; - font-family: "Trebuchet MS", "DejaVu Sans", "Bitstream Vera Sans", sans-serif; - color: #C0C0C0; +img#frame_white_horiz { + background-color: #444444; + padding: 1px 0px 1px 0px; + border-top: 35px solid white; + border-bottom: 35px solid white; } -div.album_list_separator { - margin: 70px 0px 30px 0px; - font-size: 35px; - letter-spacing: 2px; - border-bottom: 1px solid #606060; +img#frame_black_vert { + background-color: #A0A0A0; + padding: 0px 1px 0px 1px; + border-left: 40px solid black; + border-right: 40px solid black; } -div.index_separator { - margin: 50px 0px 20px 0px; - font-size: 28px; - letter-spacing: 1px; - border-bottom: 1px solid #606060; +img#frame_white_vert { + background-color: #444444; + padding: 0px 1px 0px 1px; + border-left: 40px solid white; + border-right: 40px solid white; } |
