Advertisement
Guest User

LiquidGhost MAL CSS

a guest
Jul 22nd, 2014
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.48 KB | None | 0 0
  1. @import url(http://fonts.googleapis.com/css?family=Rationale);
  2. @import "http://dl.dropbox.com/u/78340470/Icon%20Style%20Menu%20Bar/IconStyleCSSFixed.css";
  3.  
  4. @import "https://dl.dropboxusercontent.com/u/78340470/anime.css";
  5. @import "http://dl.dropbox.com/u/78340470/CSSforFoxgirls.css";
  6.  
  7. /* COVER AREA
  8. The surrounding area containing each cover pic which appears when you point to a row (requires #more CSS to see a DVD or manga cover).
  9.  
  10. Move the cover's location around with left and top.
  11. Remove only the border-radius: 25px 25px 25px 25px; lines to take the rounded corners away.
  12. Increase height and width to make the pics bigger.
  13. Delete border-style: solid; to remove the border.
  14.  
  15. For changing the original background color see the bottom of the original post:
  16. http://myanimelist.net/forum/?topicid=563993
  17. */
  18. :hover + .hide {
  19. background-size: cover;
  20. left: 850px;
  21. top: 160px;
  22. height: 350px;
  23. width: 226px;
  24.  
  25. border-style: solid;
  26. border-color: white;
  27. border-top: 1px solid white;;
  28. border-left: 1px solid white;
  29. border-right: 1px solid white;
  30. border-bottom: 1px solid white;
  31. border-radius: 25px 25px 25px 25px;
  32. background-color: rgba(200, 5, 200, 0.75);
  33. background-position: center 50% !important;
  34. background-repeat: no-repeat !Important;
  35. display: block !important;
  36. position: fixed;
  37. }
  38.  
  39. /* PREVIEW MSG ABOVE COVERS
  40. Remove content: "preview"; to remove the PREVIEW text.
  41. Change the text in quotations after content to what you want it to say above your cover pic.
  42. Top and width controls the position of the text.
  43. */
  44. .hide:before {
  45. background: transparent;
  46. padding-bottom: 5px;
  47. position: absolute;
  48. text-align: center;
  49. width: 225px;
  50. top: -25px;
  51. border-radius: 25px 25px 0 0;
  52. }
  53.  
  54. /*
  55. BACKGROUND IMAGE
  56. This is the main background image for the whole page.
  57. Change the image link to the background you want!
  58.  
  59. If you're not seeing a background, make sure you are copied the
  60. entire CSS code or added any new background image codes correctly.
  61. Also your image link may be broken, try uploading a new background then!
  62. */
  63.  
  64. body {
  65. background-image:
  66. url(http://i.imgur.com/BeUR4uf.jpg?1);
  67. background-attachment: fixed;
  68. background-size: cover;
  69. }
  70.  
  71. /*
  72. HEADER COLOR AND FONT
  73. These codes control the main headers' fonts and colors. Every header is above each part of your list (they say things like Currently Watching, Completed, Dropped, etc). if you don't want a solid color there, go to the line that starts with background-color and replace it the color type (blue for example) with the word "transparent" (no quotations).
  74. */
  75.  
  76. .header_title {
  77. background-color:transparent;
  78. color:cyan;
  79. font-family:Rationale;
  80. font-size:43px;
  81. }
  82.  
  83.  
  84.  
  85. /*
  86. SUB-HEADERS BACKGROUND COLOR COLOR
  87. Below each main header is the sub-header which says Score, Episodes, Tags, etc.
  88. */
  89.  
  90. .table_header {
  91. background-color:transparent;
  92. }
  93.  
  94.  
  95.  
  96. /*
  97. ANIME/MANGA TITLE FONTS
  98. This is the type and color of the anime/manga titles on your list, like Bleach, Vampire Knight, etc.
  99. */
  100.  
  101. .animetitle, .animetitle:visited {
  102. color:cyan;
  103. font-family:Rationale;
  104. font-size:16px;
  105. }
  106.  
  107.  
  108.  
  109. /*
  110. LIST FONTS
  111. This is the type and color for more of the numbers, links, and words on the list itself!
  112. */
  113.  
  114. .td1, .td2, a, a:visited, .category_totals, .table_header, #grand_totals, #copyright {
  115. color:white;
  116. font-family:Rationale;
  117. font-size:16px;
  118. }
  119.  
  120.  
  121.  
  122. /*
  123. LIST WIDTH
  124. Use this to increase the width of your list!
  125. */
  126.  
  127. #list_surround {
  128. width:800px;
  129. }
  130.  
  131.  
  132. /*
  133. REPOSITION MAIN BACKGROUND
  134. Change the position your background starts on your screen from with the two properties after "background-position" below.
  135.  
  136. You replace 'center' and '43%' with two other properties, they can be any of the following: left, top, bottom, right, or center.
  137.  
  138. So if you want your background to start from the center of the screen, use "center center" after background-position in the code below, replacing "center 43%".
  139. If you want it to start from the top and left, use "top left"
  140. If you want it to start from the top and center, use "top center".
  141. If you want it to start from the right and top, use "right top"
  142. If you want it to start from the right and bottom, use "right bottom"
  143. and so forth...
  144.  
  145. Additionally, you can change "left" to a % to determine how far left or right the background starts from. For example "30% top" will start the background from the top but 30% of the pic's width from the left of the layout. You can also change top to a % to change the amount you want to start it from the top or bottom.
  146. */
  147.  
  148.  
  149.  
  150.  
  151.  
  152. /*OTHER CODES
  153. Important codes for the layout's setup. Don't mess with these unless you know exactly what you're doing. If you want to customize more on the page, use the link at the top of this CSS, or ask in my club!
  154. */
  155.  
  156.  
  157. body {
  158. font-weight: light;
  159. background-repeat: no-repeat;
  160. background-color: black;
  161. }
  162. #list_surround {
  163. position: absolute !important;
  164. left: 1px !important;
  165. background-image:url();
  166. }
  167. a {
  168. text-decoration:none;
  169. }
  170. a:visited {
  171. text-decoration:none;
  172. }
  173. a:hover, a:visited:hover {
  174. color:blue;
  175. text-decoration:underline;
  176. }
  177. .category_totals,
  178. .td1,
  179. .td2,
  180. #grand_totals,
  181. #copyright {
  182. background-image:url(http://img15.imageshack.us/img15/228/frame6518.png);
  183. border-width:0;
  184. padding:2px;
  185. }
  186.  
  187. .category_totals:HOVER,
  188. .td1:HOVER,
  189. .td2:HOVER,
  190. #grand_totals:HOVER,
  191. #copyright:HOVER {background-color:black;
  192. border-width:0;
  193. padding:2px;
  194. }
  195. #copyright:after {
  196. content: " Custom CSS by LiquidGhost.";
  197. }
  198. .status_selected {
  199. background-color:black;
  200. padding:2px;
  201. color:white;
  202. text-decoration: blink;
  203. }
  204. .status_not_selected {
  205. background-color:black;
  206. padding:2px;
  207. color:white;
  208. }
  209. .status_selected a{
  210. color:cyan;
  211. }
  212. .status_not_selected a{
  213. color:white;
  214. }
  215. .thickbox {
  216. color:cyan;
  217. font-family:fantasy;
  218. font-size:12px;
  219. }
  220. .header_title {
  221. height:52px;
  222. padding:2px;
  223. }
  224. .table_header {
  225. border-width:0;
  226. font-weight:bold;
  227. padding:2px;
  228. }
  229. .category_totals {
  230. height:30px;
  231. }
  232. #copyright, #grand_totals {
  233. text-align: center;
  234. margin:0 auto;
  235. }
  236.  
  237. /****************************/
  238. /* Aqua Highlight on Hover */
  239. /****************************/
  240. tr:hover [class^=td] {
  241. background-color: rgba(255, 165, 0, 1) !important;
  242. -moz-transition: .4s ease;
  243. -webkit-transition: .4s ease;
  244. -o-transition: .4s ease;
  245. }
  246.  
  247. /*
  248. CUSTOM BANNER
  249. "Background image" controls the image seen, change out the link to change the banner pic. Please leave everything else alone unless you know exactly what you're doing!
  250. */
  251. #list_surround {
  252. background-image: url();
  253. background-position: right top;
  254. background-repeat: no-repeat;
  255. padding-top: 0px;
  256. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement