Advertisement
Guest User

Untitled

a guest
Aug 20th, 2014
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.39 KB | None | 0 0
  1. /* This is the MATH part of the layout. Don't touch it unless you know what you're doing */
  2. @import url(http://veriti.opendrive.com/files/OV81MjgxODZfN0NiSlU/mal_general.css);
  3. /* Remove the following line if you don't want to use my top bar redux */
  4. @import url(http://veriti.opendrive.com/files/OV81MjgxODdfcXZZMkg/mal_top_bar.css);
  5.  
  6. body{
  7. /* Set up a background image: */
  8. background-image: url(http://i.imgur.com/ph0ES5L.jpg);
  9. background-attachment:fixed;
  10. background-clip:border-box;
  11. background-color:transparent;
  12. background-repeat:no-repeat no-repeat;
  13. background-size:cover;
  14. font-family:calibri;
  15.  
  16. /* Set up a point of transformation. This is the point
  17. * of image that should always be at the top and
  18. * preserve it's location at these offsets.
  19. * If you don't understand how it works, 50% 50% should
  20. * be ok in most cases. Default: point to Okabe's face.
  21. */
  22. background-position: 60% 18%;
  23.  
  24. /* Set up fonts you want to use and preferred basic size.
  25. * It will look for the first font at the list, then for
  26. * the second, etc. The last parameter describes a generic
  27. * font family, which will be used if none of the fonts are
  28. * on the user PC. The size can be also set using keywords
  29. * like xx-small, google for font-size if you want more info
  30. */
  31. font-family: 'Segoe UI', 'Century Gothic', sans-serif;
  32. font-size: 11px;
  33. }
  34.  
  35. /* This configures the look of the part with sort links:
  36. * the border and the background.
  37. * Colors are in rgba format which means first three values
  38. * define a color in Red-Green-Blue mode and the last one
  39. * sets up an opacity of the color: rgba(R,G,B,a)
  40. * Use color picker in Photoshop (or other image editor),
  41. * Opera Dragonfly or Rainbow Firefox extension to get desired
  42. * RGB values and then play with opacity until you get what you
  43. * wanted.
  44. */
  45. .table_header{
  46. background-color: rgba(0,0,0,0.4);
  47. border-color: rgba(255,255,255,0.25);
  48. }
  49.  
  50.  
  51. .table_header, .table_headerLink{
  52. /* Color of the sort links. I used short hex notation here but
  53. * you may use whatever you want, rgb, rgba or full-hex. This
  54. * won't be mentioned below, the way to change colors is the same
  55. */
  56. color: #FFF;
  57.  
  58. /* Remove the following line if you want links to be underlined */
  59. text-decoration: none;
  60. }
  61.  
  62. .table_headerLink:hover{
  63. /* This configures a light white glow on hovered links
  64. * Changing colors should be enough here so I'll leave it for you.
  65. * It's the same rgba we've encountered.
  66. */
  67. text-shadow: rgba(255,255,255,0.4) -1px -1px 3px, rgba(255,255,255,0.4) 1px 1px 3px;
  68. }
  69.  
  70. /* The look of the rest of the
  71. * Configures background, border and text color for non-links
  72. * I made it a bit more opaque than sorting headers
  73. */
  74. .td1, .td2{
  75. background-color: rgba(0,0,0,0.6);
  76. border-color: rgba(255,255,255,0.25);
  77. color: #FFF;
  78. }
  79.  
  80. /* This is for the links in the rest of the */
  81. .td1 a, .td2 a{
  82. text-decoration: none; /* Removes underline for these */
  83. color: #ffc700; /* Paints links orange */
  84. }
  85.  
  86. /* Glow effect on link hover. The same text-shadow property */
  87. .td1 a:hover, .td2 a:hover{
  88. text-shadow: #9d9d31 -1px -1px 3px, #9d9d31 1px 1px 3px;
  89. }
  90.  
  91. /* Background color for hovered row in 'the rest' section
  92. * I made it more opaque and a bit gray
  93. * You may remove the following 3 lines if you don't want this effect.
  94. */
  95. tr:hover [class^='td']{
  96. background-color: rgba(45,45,45,0.9) !important;
  97. }
  98.  
  99. /* This makes all text ins bold except for Edit - More */
  100. #list_surround td[class^='td']:first-child, #list_surround td[class^='td']:nth-child(n+3), .animetitle{font-weight:bold}
  101.  
  102. /* CSS sprite for Currently Watching, Completed, Dropped, etc...
  103. * Note there is only one image used for all headers. I've made an
  104. * inverted version for bright layouts:
  105. * http://s004.radikal.ru/i206/1203/ca/77c100a4bb4d.png
  106. * or you can make one yourself. It's not that difficult.
  107. */
  108. .header_title{
  109. background-image: url(http://i027.radikal.ru/1203/c6/d9bba44c784b.png);
  110. }
  111.  
  112. /* Block displaying category totals
  113. * It's redesigned to be the part of the layout
  114. * and you've already encountered all the properties here
  115. * so it won't be hard for you to customise this.
  116. * Note that a different shadow colors used for glow effect
  117. */
  118. .category_totals{
  119. background-color: rgba(0,0,0,0.5);
  120. border-color: rgba(255,255,255,0.25);
  121. color: #fff;
  122. font-weight: bold;
  123. text-shadow: orange 1px 1px 2px,cyan -1px -1px 2px;
  124. }
  125.  
  126. /* Text displaying global totals */
  127. #grand_totals{
  128. color: #fff;
  129. font-size: larger;
  130. font-weight: bold;
  131. text-shadow: #c51 -1px -1px 3px, #c51 1px 1px 3px, #c51 1px -1px 4px, #c51 -1px 1px 3px;
  132. /* The following line makes it ALL-CAPS */
  133. text-transform: uppercase;
  134. }
  135.  
  136. /* Modifying copyright section. It's designed to look similar
  137. * to the whole layout, ok?
  138. */
  139. #copyright{
  140. background-color: rgba(0,0,0,0.6);
  141. border-color: rgba(255,255,255,0.25);
  142. }
  143.  
  144. /* Modifying the text color in copyright section */
  145. #copyright, #copyright a{
  146. color: #FFF;
  147. }
  148.  
  149. /* Configures a CSS sprite for the bar at the bottom */
  150. .status_not_selected a, .status_selected a{
  151. background-image: url('http://i060.radikal.ru/1203/28/2c26e350723d.png');
  152. }
  153.  
  154. /* upd 11th March 2012 */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement