diff options
Diffstat (limited to 'hyperkitty/static')
-rw-r--r-- | hyperkitty/static/css/thread.css | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/hyperkitty/static/css/thread.css b/hyperkitty/static/css/thread.css index 90d2add..e600074 100644 --- a/hyperkitty/static/css/thread.css +++ b/hyperkitty/static/css/thread.css @@ -2,7 +2,7 @@ header { /*background-color: #f6f6f6;*/ /*border-bottom: 1px solid #b3b3b3;*/ - margin-bottom: 3em; + margin-bottom: 5em; padding: 1em 0; } @@ -12,6 +12,25 @@ h1 { line-height: 26px; } +header .thread-older, +header .thread-newer { + display: block; + padding-top: 38px; + width: 160px; + overflow: hidden; + background-repeat: no-repeat; + background-position: top center; + text-align: center; + color: #aaaaaa; +} +header .thread-older { + float: right; + background-image: url('../img/button_older.png'); +} +header .thread-newer { + float: left; + background-image: url('../img/button_newer.png'); +} #thread_nav{ margin:auto; |