solderq35

Wide SR.C leaderboard CSS Oct. 2021

Oct 18th, 2021 (edited)
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.66 KB | None | 0 0
  1. /* Universal QoL Improvements */
  2.  
  3. /* better category tabs */
  4.   .category.category-tab {
  5.       display: inline !important;
  6.       flex: auto;
  7.       margin: 1px;
  8.   }
  9.  
  10. .pending-tab-container {
  11.       display: inline !important;
  12.   }
  13.  
  14. /* Make category text easier to read for categories currently not selected*/
  15. body.dark .category-tab{
  16.  
  17.     color: #B1B1B1;
  18. }
  19.  
  20. /* Bigger font for leaderboard and categories*/
  21. body.dark .leaderboard-row{
  22.     font-size: 16px;
  23. }
  24.  
  25. body.dark .category-tab-name{
  26.     font-size: 16px;
  27. }
  28.  
  29. body.dark .variable-tab
  30. {
  31.     font-size: 16px;
  32. }
  33.  
  34. .small, small{
  35.     font-size: 100%
  36. }
  37.  
  38. body.dark .gamemenu{
  39.     font-size: 16px;
  40. }
  41.  
  42. /* -----------------------------------------------------------------------------------------------*/
  43. /* More Subjective Stuff (comment out code if desired)*/
  44.  
  45. /* Hide comments*/
  46. body.dark .comments{
  47. display: none;
  48. }
  49.  
  50. /* Less horizontal padding in individual level tables */
  51. body.dark table tr td{
  52.     padding-left:0.1rem;
  53.     padding-right:0.1rem;
  54. }
  55.  
  56. /* Use all space on sides*/
  57. .container {    
  58.     max-width: 2000px !important;
  59.     margin-left: 0px;
  60.     margin-right: 0px;
  61. }
  62.  
  63. /* Push the recent runs/ forum posts/ mod widget to bottom to make more room for leaderboard*/
  64. #centerwidget {
  65.     width: 100% !important;
  66. }
  67.  
  68. /* Make modhub video window smaller (if using the max size container above)*/
  69. body.dark .ticket-container{
  70.     max-width: 900px;
  71.     margin-left: auto;
  72.     margin-right: auto;
  73. }
  74.  
  75.  
  76. /* Make runs video window (if using the max size container above)*/
  77. body.dark .widget-top-border{
  78.     max-width: 900px;
  79.     margin-left: auto;
  80.     margin-right: auto;
  81. }
  82.  
  83.  
  84.  
Add Comment
Please, Sign In to add comment