Changed post list view
- Thumbs are 150x150 - Centered main content
This commit is contained in:
parent
58a6345ae8
commit
aed60da6f9
3 changed files with 15 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
.post {
|
||||
margin: 0.5em;
|
||||
float: left;
|
||||
}
|
||||
.posts-wrapper {
|
||||
text-align: center;
|
||||
}
|
||||
.posts {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue