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]
|
[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
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
.post {
|
.post {
|
||||||
margin: 0.5em;
|
margin: 0.5em;
|
||||||
float: left;
|
}
|
||||||
|
.posts-wrapper {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.posts {
|
||||||
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue