Advertisement
mkv

tmp.c

mkv
Jul 25th, 2011
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. /* tmp.c redesign for matx of #/g/tech
  2. *
  3. * sorry for all the hacks, just didn't want to rewrite any
  4. * of your html incase it'd be a bitch to change serverside
  5. */
  6.  
  7. html,body {
  8. color: #fff !important;
  9. background: #222 !important;
  10. font-family: sans-serif !important;
  11. }
  12. #siteTitle {
  13. display: none;
  14. }
  15.  
  16. #sideBar {
  17. background: #333 !important;
  18. padding-bottom: .7em;
  19. }
  20. #sideBar h2 {
  21. display: none;
  22. }
  23. #sideBar form,
  24. #sideBar input {
  25. width: 99%;
  26. margin: 0 1px;
  27. }
  28. #sideBar input {
  29. color: #fff;
  30. -moz-appearance: none;
  31. background: #000 !important;
  32. border: 1px solid #555 !important;
  33. border-width: 0 0 1px 0 !important;
  34. }
  35. #tagNav * {
  36. color: #aaa !important;
  37. }
  38. #tagNav {
  39. font-size: .8em;
  40. }
  41. #tagNav li {
  42. padding: 1em 0 0 .5em !important;
  43. position: relative;
  44. }
  45. #tagNav a {
  46. font-size: 1.5em;
  47. position: absolute;
  48. top: .4em;
  49. left: 3em;
  50. }
  51. /* all the ugly positions and margins previously
  52. * are to left-align the tag search results;
  53. * way easier by changing the html slightly
  54. */
  55.  
  56. #tagNav .game,
  57. #tagNav .game * {color:#f08!important}
  58. #tagNav .anime,
  59. #tagNav .anime * {color:#fc0!important}
  60. #tagNav .character,
  61. #tagNav .character * {color:#cf0!important}
  62.  
  63. #subNav {
  64. margin-top: .5em !important;
  65. }
  66. #subNav * {
  67. color: #ccc !important;
  68. background: #444 !important;
  69. border: none !important;
  70. padding: .2em 0;
  71. }
  72. #nav a {
  73. color: #999 !important;
  74. }
  75. #nav .active,
  76. #nav .active a {
  77. color: #fff !important;
  78. background: #444 !important;
  79. text-decoration: underline !important;
  80. }
  81.  
  82.  
  83. /* first attempt, came out awful
  84. *
  85. #list div {
  86. width: 200px !important;
  87. height: 150px !important;
  88. display: table-cell;
  89. vertical-align: middle;
  90. }
  91. #list div img {
  92. width: auto !important;
  93. height: auto !important;
  94. max-width: 100% !important;
  95. max-height: 100% !important;
  96. }
  97. * yeah
  98. */
  99.  
  100. .pagination+div {
  101. text-align: right;
  102. margin-top: -1.6em;
  103. }
  104. #list {
  105. padding-left: .7em;
  106. }
  107. #list div * {
  108. margin: 0 !important;
  109. padding: 0 !important;
  110. }
  111. #list div {
  112. display: inline !important;
  113. padding: 0 !important;
  114. margin: 0 !important;
  115. }
  116. #list div:nth-child(2n) {
  117. display: none !important;
  118. }
  119. #list div img {
  120. width: auto;
  121. height: 200px !important;
  122. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement