diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2009-04-11 16:39:33 +0200 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2009-04-11 16:39:33 +0200 |
| commit | 498e7aaa9e657ef3ff0406964d62166e37e0299f (patch) | |
| tree | e2f429864abe12ee870f7fca50423404d9aa5fb2 /templates | |
| parent | 9c2c964727e4a484acf7f97267a3cf1c8fbacd89 (diff) | |
| download | cataract-498e7aaa9e657ef3ff0406964d62166e37e0299f.tar.xz | |
Support for interspaces
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/styles.css | 23 | ||||
| -rw-r--r-- | templates/template-album.tmpl | 5 | ||||
| -rw-r--r-- | templates/template-index.tmpl | 5 |
3 files changed, 33 insertions, 0 deletions
diff --git a/templates/styles.css b/templates/styles.css index 8a303da..d99b77f 100644 --- a/templates/styles.css +++ b/templates/styles.css @@ -256,6 +256,29 @@ div.index_separator { } +/****** ALBUM/INDEX INTERSPACES ******/ +div.interspace { + float: left; + clear: both; + width: 100%; + text-align: left; + color: #D0D0D0; + margin: 0em 3em 0em 0.8em; +} + +div.album_list_interspace { + margin: 0.65em 0 0.75em 0; + font-size: 125%; + line-height: 140%; +} + +div.index_interspace { + margin: 0.6em 0 1.1em 0; + font-size: 110%; + line-height: 140%; +} + + /****** FOOTNOTE ******/ div.footnote { padding: 1em 1.25em 3.2em 1.25em; diff --git a/templates/template-album.tmpl b/templates/template-album.tmpl index 45f6273..4942fa8 100644 --- a/templates/template-album.tmpl +++ b/templates/template-album.tmpl @@ -54,6 +54,11 @@ <div class="index_separator"><!-- $(LIST_SEPARATOR_TITLE) --></div> </div> <!-- $(END_LIST_SEPARATOR) --> + <!-- $(BEGIN_LIST_INTERSPACE) --> + <div class="interspace"> + <div class="index_interspace"><!-- $(LIST_INTERSPACE_TITLE) --></div> + </div> + <!-- $(END_LIST_INTERSPACE) --> <!-- $(END_IMG_LIST) --> </div> diff --git a/templates/template-index.tmpl b/templates/template-index.tmpl index 78baedb..994c550 100644 --- a/templates/template-index.tmpl +++ b/templates/template-index.tmpl @@ -58,6 +58,11 @@ <div class="album_list_separator"><!-- $(LIST_SEPARATOR_TITLE) --></div> </div> <!-- $(END_LIST_SEPARATOR) --> + <!-- $(BEGIN_LIST_INTERSPACE) --> + <div class="interspace"> + <div class="album_list_interspace"><!-- $(LIST_INTERSPACE_TITLE) --></div> + </div> + <!-- $(END_LIST_INTERSPACE) --> <!-- $(END_IMG_LIST) --> </div> |
