Some small visual tweaks

This is the main shmups forum. Chat about shmups in here - keep it on-topic please!
Post Reply
User avatar
Starfighter
Posts: 290
Joined: Sun May 11, 2008 7:15 pm
Location: Sweden

Some small visual tweaks

Post by Starfighter »

I've tweaked how the forum looks ever so slightly to make it easier (for me at least) to read and look more like I remember it did before. I feel it's way too wide so I made it narrower (and moved pagination down a bit to not overlap long titles), I also get pretty dizzy when the background scrolls so I fixed it in place. Finally I added lines between the topics.

Screen recording of the difference (before and then after):
https://cdn.imgchest.com/files/21cf5ace3d06.mp4

If anyone wants to do it as well (and have a css editor plugin such as Stylus) here's the changes:

Code: Select all

/* Fixed background */
body {
    background-attachment: fixed;
}

/* A more narrow width */
.wrap {
    width: 55%;
    margin: auto;
}

/* Pagination moved down */
.pagination {
    padding-top: 10px;
}

/* Lines between topics */
.row.bg1 {
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.row.bg2 {
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding-bottom: 0px;
}
This is all made for my 1080p screen, adjust values as needed.

Also, if there's toggles for these kinds of things built in to the user settings I apologize for wasting everybody's time. :)
Post Reply