diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2009-03-01 13:59:31 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2009-03-01 13:59:31 +0100 |
commit | 97a850b1d882e6eb9400601734f0856e8f36fd3e (patch) | |
tree | 984c7a26fa1f134fe7c36d06f164e9cebb010812 /public | |
parent | f3342af8c57225091ff32d6747a45783df62f9c3 (diff) |
Apply a column-based layout to the main page via CSS.
Diffstat (limited to 'public')
-rw-r--r-- | public/layout.css | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/public/layout.css b/public/layout.css new file mode 100644 index 0000000..2b47eb3 --- /dev/null +++ b/public/layout.css @@ -0,0 +1,50 @@ +/* -*- mode: css -*- */ + +h1 { + font-size: 2em; + margin: 0 0 0.75em 0.75em; +} + +#feed-list-container { + position: fixed; + left: 0; + top: 0; + width: 30%; + bottom: 0; + overflow: auto; + clear: none; + float: left; + z-index: 0; +} + +#feed-list { + position: relative; + margin: 0 5px 0 5px; + padding: 0 5px 0 5px; + top: 3.5em; + border: 1px solid #888; + +} + +body { + /* width: 80%; */ + margin: 10px; +} + +#feed-content-container { + position: absolute; + /* width: 70%; */ + top: 0; + left: 30%; + right: 0; + display: block; + z-index: 1; +} + +#feed-content { + padding: 0 5px 0 5px; + margin: 0 5px 0 5px; + position: relative; + top: 3.5em; + border: solid 1px #888; +} |