Changed post list view

- Thumbs are 150x150
- Centered main content
This commit is contained in:
Marcin Kurczewski 2013-10-20 19:51:49 +02:00
parent 58a6345ae8
commit aed60da6f9
3 changed files with 15 additions and 6 deletions

View file

@ -14,8 +14,8 @@ debugQueries=0
[browsing] [browsing]
usersPerPage=8 usersPerPage=8
postsPerPage=20 postsPerPage=20
thumbWidth=140 thumbWidth=150
thumbHeight=140 thumbHeight=150
thumbStyle=outside thumbStyle=outside
endlessScrolling=1 endlessScrolling=1
maxSearchTokens=4 maxSearchTokens=4

View file

@ -1,4 +1,9 @@
.post { .post {
margin: 0.5em; margin: 0.5em;
float: left; }
.posts-wrapper {
text-align: center;
}
.posts {
margin: 0 auto;
} }

View file

@ -20,10 +20,14 @@
opacity: .9; opacity: .9;
} }
.post a {
display: inline-block;
}
.post img.thumb { .post img.thumb {
width: 140px; display: inline-block;
height: 140px; width: 150px;
display: block; height: 150px;
vertical-align: top;
} }
.post .info-bar { .post .info-bar {