Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* On desktop view, set the page content to take the majority of the screen width. This is assuming I have ad-block. */
- @media (min-width: 1200px) {
- .container {
- max-width: calc(100% - 175px);
- }
- }
- /* in the main site page, stretch the leaderboard to the entire width of its container */
- .old-leaderboard {
- max-width: 100%;
- }
- /* in the main page, increase the font size of game titles */
- .old-leaderboard .game-name > a {
- font-size: 16px;
- }
- /* In leaderboard pages, keep game covers in their normal size */
- .game-info-container > .game-cover > a > img.cover-wide-48{
- max-width: 180px;
- max-height: 128px;
- }
- .game-info-container > .game-cover > a > img.cover-tall-48{
- max-width: 180px;
- max-height: 128px;
- }
- /* increase the size of game covers in user profiles and the main page,
- but not as big */
- .game-cover > a > img.cover-wide-48{
- max-width: 144px;
- max-height: 102px;
- }
- .game-cover > a > img.cover-tall-48{
- max-width: 102px;
- max-height: 144px;
- }
- /* In user profile pages, keep the profile picture in its normal size */
- .profile-picture {
- max-width: 100px;
- max-height: 200px;
- }
- /* Font changes for widget titles */
- .widget-title {
- /* Remove uppercase */
- text-transform: none;
- /* I prefer this over 0.46px */
- letter-spacing: 0.26px;
- /* Remove the "industry" font family */
- font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;
- }
- /* Specifically for the title in the game info section, lower the font size of the release year, and set it as not bold. */
- .game-info > .widget-title {
- font-size: 12px;
- font-weight: normal
- }
- /* Turn the game title itself back to bold and large text. */
- .game-info > .widget-title > a {
- font-size: 16px;
- font-weight: bold;
- }
- /* Font changes for category tab names */
- .category-tab {
- /* Remove uppercase */
- text-transform: none;
- /* Remove the "industry" font family */
- font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement