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]
usersPerPage=8
postsPerPage=20
thumbWidth=140
thumbHeight=140
thumbWidth=150
thumbHeight=150
thumbStyle=outside
endlessScrolling=1
maxSearchTokens=4

View file

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

View file

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