Advertisement
Guest User

Plastic Memories MAL CSS

a guest
Jul 29th, 2015
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.51 KB | None | 0 0
  1. /* Import a slick new font! */
  2. @import url(http://fonts.googleapis.com/css?family=Roboto:500,900italic,900,400italic,100,700italic,300,700,500italic,100italic,300italic,400);
  3.  
  4. /* Import the ability to add covers on hover! */
  5. @import url(https://googledrive.com/host/0BxjwQr0BBXs-aDYxM2JlaFM2bnM);
  6.  
  7. /* Import another CSS file with heavy selectors that MAL strips out */
  8. @import url(http://jamsandjelli.es/public/css/mal_import.css);
  9.  
  10.  
  11. /* Bulk hide stuff we don't need. blech */
  12. .table_header,
  13. .category_totals {
  14. display: none;
  15. opacity: 0;
  16. visibility: hidden;
  17. }
  18.  
  19.  
  20. /* Some general styles */
  21. body {
  22. background: url(http://i.imgur.com/KCzwEC8.png) no-repeat fixed right 10px center !important; /* Isla Pouring Tea */
  23. }
  24.  
  25. * {
  26. font-family: 'Roboto', helvetica, arial, sans-serif;
  27. font-weight: 100;
  28. }
  29.  
  30. a {
  31. color: #444;
  32. text-decoration: none;
  33. }
  34.  
  35. /* Navigation */
  36. .status_not_selected {
  37. position: relative;
  38. }
  39.  
  40. .status_not_selected a {
  41. background: #E8E8E8;
  42. display: block;
  43. padding: 10px 26px;
  44. width: 175px;
  45. position: relative;
  46. top: -19px;
  47. margin-left: -1px;
  48. }
  49.  
  50. .status_not_selected a:hover {
  51. background: #d89;
  52. font-weight: 300;
  53. color: #fff;
  54. }
  55.  
  56. .status_selected {
  57. position: absolute;
  58. left: 0;
  59. top: 79px;
  60. width: 1111px;
  61. background: #89D;
  62. padding: 10px;
  63. }
  64.  
  65. .status_selected a {
  66. color: #fff;
  67. }
  68.  
  69. /* Cell Styles */
  70. .td1 {
  71. opacity: .8;
  72. background: rgba(232, 232, 232, .8);
  73. }
  74.  
  75. .td2 {
  76. opacity: .8;
  77. background: rgba(255, 255, 255, .8);
  78. }
  79.  
  80.  
  81. /* ... -_-" and headings*/
  82. #list_surround {
  83. max-width: 800px;
  84. }
  85.  
  86. .header_cw,
  87. .header_ptw,
  88. .header_onhold,
  89. .header_dropped,
  90. .header_completed {
  91. position: relative;
  92. display: block;
  93. height: 50px;
  94. width: 400px;
  95. text-align: center;
  96. margin: 10px;
  97. border-bottom: 3px solid;
  98. }
  99.  
  100. .header_cw::after,
  101. .header_ptw::after,
  102. .header_onhold::after,
  103. .header_dropped::after,
  104. .header_completed::after {
  105. content: '';
  106. height: 50px;
  107. width: 50px;
  108. position: absolute;
  109. top: 0;
  110. right: 0;
  111. left: auto;
  112. transform: skewX(223deg);
  113. transform-origin: top;
  114. -webkit-transform: skewX(223deg);
  115. -webkit-transform-origin: 0 0;
  116. border-bottom: 3px solid;
  117. }
  118.  
  119. .header_cw,
  120. .header_cw::after {
  121. background: #89d;
  122. border-color: #67b;
  123. }
  124.  
  125. .header_completed,
  126. .header_completed::after {
  127. background: #d89;
  128. border-color: #b67;
  129. }
  130.  
  131. .header_ptw,
  132. .header_ptw::after {
  133. background: #9d8;
  134. border-color: #7b6;
  135. }
  136.  
  137. .header_dropped,
  138. .header_dropped::after {
  139. background: #fd9;
  140. border-color: #db7;
  141. }
  142.  
  143. .header_onhold,
  144. .header_onhold::after {
  145. background: #d9f;
  146. border-color: #b7d;
  147. }
  148.  
  149. .header_cw::after {
  150. box-shadow: 8px 0 0 0 rgba(102, 119, 187, .35);
  151. }
  152.  
  153. .header_completed::after {
  154. box-shadow: 8px 0 0 0 rgba(187, 102, 119, .35);
  155. }
  156.  
  157. .header_ptw::after {
  158. box-shadow: 8px 0 0 0 rgba(119, 187, 102, .35);
  159. }
  160.  
  161. .header_dropped::after {
  162. box-shadow: 8px 0 0 0 rgba(221, 187, 102, .35);
  163. }
  164.  
  165. .header_onhold::after {
  166. box-shadow: 8px 0 0 0 rgba(221, 153, 255, .35);
  167. }
  168.  
  169. .header_title {
  170. font-size: 34px;
  171. color: #fff;
  172. left: 20px;
  173. position: relative;
  174. top: 4px;
  175. }
  176.  
  177. .header_title span {
  178. font-weight: 300;
  179. font-style: italic;
  180. text-shadow: 2px 2px 1px rgba(0,0,0,.25);
  181. }
  182.  
  183.  
  184. /* Cell internals */
  185. .animetitle {
  186. padding: 10px;
  187. display: inline-block;
  188. }
  189.  
  190. .animetitle span {
  191. font-weight: 400;
  192. }
  193.  
  194.  
  195. /* Misc. */
  196. a[title="Click to bring up a text box to edit your current score"] span { /* Seriously, why don't we have something like `<span class="rating">8</span>`? */
  197. font-weight: 400;
  198. }
  199. a[title="Click to bring up a text box to edit your current score"] span::after {
  200. content: "/10";
  201. font-weight: 100;
  202. }
  203.  
  204. a[title="Click to bring up a text box to edit your current episode number"] span {
  205. font-weight: 400;
  206. }
  207.  
  208. .td1[width="80"],
  209. .td2[width="80"] {
  210. font-weight: 400;
  211. }
  212.  
  213. small {
  214. display: none;
  215. }
  216.  
  217. td:hover small{
  218. display: inline;
  219. }
  220.  
  221. td[width="125"] span a {
  222. display: inline-block;
  223. background: #DDF;
  224. padding: 1px 5px;
  225. font-size: 10px;
  226. font-weight: 300;
  227. border-radius: 3px;
  228. border: 1px solid #bbd;
  229. color: #88F;
  230. }
  231.  
  232. td[width="125"] span a:hover {
  233. background: #bbd;
  234. border: 1px solid #e8e8e8;
  235. color: #fff;
  236. text-shadow: 0 0 1px rgba(0,0,0,.25);
  237. }
  238.  
  239.  
  240. /* Cover Hover copy-paste */
  241. #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(3),
  242. #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(4),
  243. #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(5),
  244. #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(6),
  245. #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(7),
  246. #list_surround tab\le:nth-of-type(n+4):hover td:nth-of-type(8) {
  247. display:-cell;
  248. }
  249.  
  250. #list_surround small a:last-of-type {
  251. display: none !important;
  252. }
  253.  
  254. .animetitle + small {
  255. visibility: visible !important;
  256. }
  257.  
  258. #list_surround a[href*="http://myanimelist.net/panel.php?go=edit"],
  259. #list_surround a[href*="http://myanimelist.net/editlist.php?type="],
  260. #list_surround a[href*="http://myanimelist.net/panel.php?go=add"] {
  261. visibility: visible !important;
  262. margin-right: 10px
  263. }
  264.  
  265. .td1:nth-of-type(6) small, .td2:nth-of-type(6) small,
  266. .td1:nth-of-type(5) small, .td2:nth-of-type(5) small,
  267. .td1:nth-of-type(4) small, .td2:nth-of-type(4) small {
  268. visibility: visible !important;
  269. }
  270.  
  271. .td1:nth-of-type(6) small:hover, .td2:nth-of-type(6) small:hover,
  272. .td1:nth-of-type(5) small:hover, .td2:nth-of-type(5) small:hover,
  273. .td1:nth-of-type(4) small:hover, .td2:nth-of-type(4) small:hover{
  274. text-decoration: underline;
  275. }
  276.  
  277. .hide {
  278. border: 10px solid #89d;
  279. background-size: cover;
  280. height: 700px;
  281. width: 452px;
  282. padding-bottom: 0px;
  283. float: left;
  284. margin: -120px 0 -700px 835px;
  285. background-position: center 50% !important;
  286. background-repeat: no-repeat !Important;
  287. display: block !important;
  288. visibility: hidden;
  289. opacity: 0;
  290. box-shadow: 10px 10px 20px 30px rgba(0,0,0,.55);
  291. }
  292.  
  293. :hover + .hide {
  294. visibility: visible;
  295. opacity: 1;
  296.  
  297. height: 350px;
  298. width: 226px;
  299.  
  300. -webkit-transition: .65s all ease-in-out;
  301. -moz-transition: .65s all ease-in-out;
  302. -ms-transition: .65s all ease-in-out;
  303. -o-transition: .65s all ease-in-out;
  304. transition: .65s all ease-in-out;
  305.  
  306. box-shadow: 10px 10px 0 0 rgba(0,0,0,.35);
  307. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement