Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2014
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.71 KB | None | 0 0
  1. /*
  2. Sorry if I used too much blue... it's my favorite color :P
  3. */
  4.  
  5. @import "http://dl.dropbox.com/u/78340470/Icon%20Style%20Menu%20Bar/IconStyleCSSFixed.css";
  6.  
  7. /*
  8. MAIN BACKGROUND
  9. I Changed the original silver background with a picture of Rin from Ao No Exorcist. You can see the URL below and you can change it to your liking :) Just make sure you paste the URL within the brackets ( ) and within the quotations " " ex. ("blablabla.com/lol")
  10. */
  11. body {
  12. background: url("http://wallpaphd.com/wp-content/uploads/2013/08/melancholy-of-haruhi-suzumiya-wallpaper-18.jpg");
  13. background-size: cover;
  14. background-attachment: fixed !important;
  15. }
  16.  
  17. /*
  18. SECOND BACKGROUND (with render)
  19. You can try this if you want to, before it was Black Rock Shooter in the middle but I removed it. If you think you know what you are doing then feel free to add something. If you don't know what you are doing, I wouldn't reccomend it but you can try and fiddle around but MAKE AND EXTRA SAVE FIRST (Copy and paste this code somewhere)
  20. */
  21. #inlineContent {
  22. display: inline-block !important;
  23. height: 1200px !important;
  24. left: 0px !important;
  25. margin: auto !important;
  26. position: fixed !important;
  27. right: 0 !important;
  28. top: 0 !important;
  29. width: 1200px !important;
  30. z-index: -1 !important;
  31. }
  32.  
  33. /*
  34. TITLE
  35. The List header which by default says My Anime List
  36. can be changed out here.
  37. */
  38.  
  39. #list_surround {
  40. background: url("http://i44.tinypic.com/15s9esp.jpg") no-repeat scroll 50% 1px transparent;
  41. font-size: 81.25%;
  42. line-height: 1;
  43. margin: 0 auto;
  44. padding-bottom: 10px;
  45. padding-top: 227px;
  46. width: 920px;
  47. }
  48.  
  49.  
  50.  
  51. /*
  52. FONT
  53. Font used across the whole list.
  54. */
  55. body {
  56. font-family: arial;
  57. }
  58.  
  59.  
  60. /*
  61. LINK COLOR
  62. */
  63. a {
  64. -moz-transition: all 0.25s ease-in-out 0s;
  65. -webkit-transition: all 0.25s ease-in-out 0s;
  66. -o-transition: all 0.25s ease-in-out 0s;
  67. transition: all 0.25s ease-in-out 0s;
  68. color: #FFFFFF;
  69. text-decoration: none;
  70. text-shadow: none;
  71. }
  72. a:hover {
  73. color: #01DFD7;
  74. text-shadow: 0 1px rgba(255, 255, 255, 0.15);
  75. }
  76.  
  77.  
  78.  
  79. /* CATEGORY LINKS */
  80. .status_not_selected, .status_selected {
  81. border: 0 none !important;
  82. height: auto !important;
  83. padding: 0 8px;
  84. text-align: center !important;
  85. width: 16.667% !important;
  86. }
  87. .status_not_selected a, .status_selected a {
  88. background-color: rgba(0, 25, 50, 0.8);
  89. border-color: rgba(255, 255, 255, 0.5);
  90. border-radius: 2px 2px 2px 2px;
  91. border-style: solid;
  92. border-width: 1px;
  93. color: #FFFFFF;
  94. display: block !important;
  95. font-weight: bold;
  96. padding: 8px;
  97. text-shadow: 0 1px rgba(0, 0, 0, 0.1);
  98. }
  99. .status_selected a {
  100. background-color: rgba(0, 147, 169, 0.6);
  101. border-color: rgba(255, 255, 255, 0.5);
  102. }
  103. .status_not_selected a:hover {
  104. background-color: #00ACE6;
  105. border-color: #FFF;
  106. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  107. text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  108. }
  109. .status_selected a:hover {
  110. background-color: #00ACE6;
  111. border-color: #FFF;
  112. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  113. text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  114. }
  115.  
  116.  
  117.  
  118. /* HEADER */
  119. .table_header {
  120. background-color: rgba(0, 50, 100, 0.6);
  121. }
  122. .table_header:first-of-type {
  123. border-radius: 3px 0 0 0;
  124. }
  125. .table_header:nth-of-type(2) {
  126. text-align: left;
  127. }
  128. .table_header:last-of-type {
  129. border-radius: 0 3px 0 0;
  130. }
  131.  
  132.  
  133.  
  134. /* ROWS COLOR */
  135. .td1 {
  136. -moz-transition: all 0.25s ease-in-out 0s;
  137. -webkit-transition: all 0.25s ease-in-out 0s;
  138. -o-transition: all 0.25s ease-in-out 0s;
  139. transition: all 0.25s ease-in-out 0s;
  140. background-color: rgba(0, 128, 152, 0.6);
  141. }
  142. .td2 {
  143. -moz-transition: all 0.25s ease-in-out 0s;
  144. -webkit-transition: all 0.25s ease-in-out 0s;
  145. -o-transition: all 0.25s ease-in-out 0s;
  146. transition: all 0.25s ease-in-out 0s;
  147. background-color: rgba(0, 167, 200, 0.6);
  148. }
  149.  
  150.  
  151.  
  152. /* ROWS HOVER */
  153. tr:hover [class^="td"] {
  154. background-color: rgba( 0, 100, 150, 0.6);
  155. }
  156. .td1:nth-of-type(2), .td2:nth-of-type(2) {
  157. text-align: left;
  158. }
  159.  
  160.  
  161.  
  162. /* ROW FONT SIZE TRANSITION (FIREFOX ONLY) */
  163. noindex:-moz-any-link, tr:hover td.td1, tr:hover td.td2 {
  164. font-size: 15px;
  165. }
  166.  
  167.  
  168.  
  169. /* LIST SETTINGS */
  170. .table_header, .td1, .td2, .status_selected, .status_not_selected, .category_totals {
  171. border: 0;
  172. padding: 4px;
  173. text-align: center;
  174. vertical-align: middle;
  175. }
  176. .table_header, .td1, .td2, .category_totals {
  177. line-height: 30px;
  178. }
  179. .borderRBL{
  180. line-height: normal !important;
  181. }
  182. [cellspacing="0"] {
  183. line-height: 17px;
  184. }
  185. [class^="header_"] +{
  186. border-collapse: separate !important;
  187. }
  188.  
  189.  
  190.  
  191. /* CATEGORY TOTALS */
  192. .category_totals {
  193. -moz-transition: all 0.25s ease-in-out 0s;
  194. -webkit-transition: all 0.25s ease-in-out 0s;
  195. -o-transition: all 0.25s ease-in-out 0s;
  196. transition: all 0.25s ease-in-out 0s;
  197. background-color: rgba(72, 64, 87, 0);
  198. border-radius: 0 0 3px 3px;
  199. color: rgba(0, 0, 0, 0);
  200. text-align: center;
  201. }
  202. .category_totals:hover {
  203. background-color: rgba(0, 0, 0, 0.8);
  204. color: #FFFFFF;
  205. }
  206.  
  207.  
  208.  
  209. /* HEADER TEXT AND DIMENSIONS */
  210. [class^="header_"] * {
  211. font-size: 19px;
  212. height: 60px;
  213. line-height: 24px;
  214. padding-bottom: 4px;
  215. text-align: right;
  216. vertical-align: bottom;
  217. }
  218. .header_title {
  219. border-radius: 4px 4px 4px 4px;
  220. display: inline-block;
  221. font-style: italic;
  222. height: auto;
  223. padding: 0 8px 0 0;
  224. color: #FFFFFF;
  225. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  226. }
  227.  
  228.  
  229.  
  230. /* BOTTOM OF LIST */
  231. #grand_totals {
  232. background-color: rgba(0, 0, 0, 0);
  233. border: 0 none;
  234. border-radius: 3px 3px 3px 3px;
  235. color: #FFFFFF;
  236. line-height: 20px;
  237. min-height: 20px;
  238. padding: 8px;
  239. text-align: center;
  240. vertical-align: middle;
  241. }
  242. #copyright {
  243. background-color: rgba(180, 32, 48, 0.6);
  244. border-radius: 3px 3px 3px 3px;
  245. color: #EEEEEE;
  246. line-height: 17px;
  247. margin-top: 10px;
  248. padding: 8px;
  249. text-align: center;
  250. }
  251. #copyright:after {
  252. content: " CSS by Kyouhansha. Edits by Shishio-kun and Veriti. Google 'Shishio's Custom Lists' for more designs and info.";
  253. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement