Advertisement
ROMaster2

speedrun.com css

Aug 12th, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.08 KB | None | 0 0
  1. @namespace url(http://www.w3.org/1999/xhtml);
  2.  
  3. @-moz-document domain("speedrun.com") {
  4. /*Forum images being too wide...*/
  5.     .userprovidedimage {
  6.         max-width: 900px !important;
  7.     }
  8. /*Fix cover art resolution*/
  9.     img.border{
  10.         border: 0 !important;
  11.         outline:rgba(204, 204, 204, 0.75) 1px solid;
  12.     }
  13. /*Improve game panel widths*/
  14.     #sidebar.col-md-3 {
  15.         max-width: 242px !important;
  16.     }
  17.     #main.col-md-9 {
  18.         min-width: 928px !important;
  19.     }
  20. /*Make IL cells consistant and a nice border*/
  21.     tr.levelrow {
  22.         height: 51px !important;
  23.         border-top:rgba(204, 204, 204, 0.25) 1px solid !important;
  24.     }
  25.     tr.levelrow > td.linked {
  26.         border-left:rgba(204, 204, 204, 0.25) 1px solid !important;
  27.     }
  28.     tr.levelrow > td.linked.center {
  29.         vertical-align: text-top;
  30.     }
  31. /*Game list more compact*/
  32.     ul > li.visible-lg > ul.dropdown-menu > li > a {
  33.         font-size: 85%;
  34.         padding: 1px 20px;
  35.     }
  36. /*Make game cells in all games consistant
  37.     div.listcell {
  38.         min-height: 257px !important;
  39.     }*/
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement