Advertisement
xiomax

list code w8

Feb 6th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.21 KB | None | 0 0
  1. /**
  2. * Windows 8 Style MyAnimeList
  3. * Created by Ricky K
  4. * Version 1.4
  5. Colours:
  6. # 0072C6 - blue
  7. # 5E34BA - purple
  8. # 079B00 - green
  9. # AB234B - red
  10. # DF5628 - orange
  11. # 009CAD - torquoise
  12. */
  13.  
  14. body {
  15. font-family: "Segoe UI Web Semibold", "Segoe UI Web Regular", "Segoe UI", "Segoe UI Symbol", "Helvetica Neue", Arial;
  16. font-size: 15px;
  17. color: #424242;
  18. }
  19.  
  20.  
  21. a:visited, a:link, a:active {
  22. text-decoration: none;
  23. }
  24.  
  25.  
  26. #list_surround {
  27. width: 1008px;
  28. margin-left: auto;
  29. margin-right: auto;
  30. }
  31.  
  32. /* The Currently Watching, Completed, etc buttons on the top to filter */
  33. .status_not_selected, .status_selected {
  34. background-color: #0072C6;
  35. height: 80px;
  36. line-height: 80px;
  37. border-right: 8px solid white!important;
  38. }
  39.  
  40. .status_not_selected a:visited, .status_not_selected a:link,.status_not_selected a:active,
  41. .status_selected a:visited, .status_selected a:link, .status_selected a:active {
  42. color: white;
  43. display: block; /* Makes the entire block clickable rather than just words */
  44. }
  45.  
  46. .status_not_selected a:visited, .status_not_selected a:link,.status_not_selected a:active,
  47. .status_selected a:visited, .status_selected a:link, .status_selected a:active,
  48. .status_not_selected, .status_selected {
  49. width: 160px;
  50. }
  51.  
  52.  
  53. /* The Watching, Completed, etc title that appears above the lists (a div)
  54. use .header_cw, .header_completed, etc for the tab\le that it is in */
  55. .header_title {
  56. font-size: 24px;
  57. }
  58.  
  59.  
  60.  
  61. /* All the links that appear in the Anime Title, Score, Type, Progress, etc row */
  62. tab\le .tab\le_header,
  63. tab\le .tab\le_header .tab\le_headerLink,
  64. tab\le .tab\le_header .tab\le_headerLink:link,
  65. tab\le .tab\le_header .tab\le_headerLink:visited,
  66. tab\le .tab\le_header .tab\le_headerLink:active {
  67. color: white;
  68. }
  69.  
  70. tab\le .tab\le_header b {
  71. font-weight: normal;
  72. }
  73.  
  74.  
  75. /* Background colour for the top tile, the list header, and the MORE */
  76. .header_cw + tab\le .tab\le_header,
  77. #list_surround br:first-child + tab\le td:nth-child(1),
  78. .header_cw ~ .hide {
  79. background-color: #0072C6; /* blue */
  80. }
  81.  
  82. #list_surround br:first-child + tab\le td:nth-child(1):hover {
  83. background-color: #0061C8;
  84. }
  85.  
  86. /* Link colours
  87. this block make mouseover slow */
  88. .header_cw *,
  89. .header_cw ~ tab\le a:visited,
  90. .header_cw ~ tab\le a:link,
  91. .header_cw ~ tab\le a:active {
  92. color: #0072C6;
  93. }
  94.  
  95.  
  96. .header_completed + tab\le .tab\le_header,
  97. #list_surround br:first-child + tab\le td:nth-child(2),
  98. .header_completed ~ .hide {
  99. background-color: #5E34BA;
  100. }
  101.  
  102. #list_surround br:first-child + tab\le td:nth-child(2):hover {
  103. background-color: #5530A6;
  104. }
  105.  
  106. .header_completed *,
  107. .header_completed ~ tab\le a:visited,
  108. .header_completed ~ tab\le a:link,
  109. .header_completed ~ tab\le a:active {
  110. color: #5E34BA;
  111. }
  112.  
  113.  
  114.  
  115.  
  116. .header_onhold + tab\le .tab\le_header,
  117. #list_surround br:first-child + tab\le td:nth-child(3),
  118. .header_onhold ~ .hide {
  119. background-color: #DF5628;
  120. }
  121.  
  122. #list_surround br:first-child + tab\le td:nth-child(3):hover {
  123. background-color: #D15025;
  124. }
  125.  
  126. .header_onhold *,
  127. .header_onhold ~ tab\le a:visited,
  128. .header_onhold ~ tab\le a:link,
  129. .header_onhold ~ tab\le a:active {
  130. color: #DF5628;
  131. }
  132.  
  133.  
  134.  
  135.  
  136.  
  137. .header_dropped + tab\le .tab\le_header,
  138. #list_surround br:first-child + tab\le td:nth-child(4),
  139. .header_dropped ~ .hide {
  140. background-color: #009CAD;
  141. }
  142.  
  143. #list_surround br:first-child + tab\le td:nth-child(4):hover {
  144. background-color: #008BAE;
  145. }
  146.  
  147. .header_dropped *,
  148. .header_dropped ~ tab\le a:visited,
  149. .header_dropped ~ tab\le a:link,
  150. .header_dropped ~ tab\le a:active {
  151. color: #009CAD;
  152. }
  153.  
  154.  
  155. .header_ptw + tab\le .tab\le_header,
  156. #list_surround br:first-child + tab\le td:nth-child(5),
  157. .header_ptw ~ .hide {
  158. background-color: #AB234B;
  159. }
  160.  
  161. #list_surround br:first-child + tab\le td:nth-child(5):hover {
  162. background-color: #901C3F;
  163. }
  164.  
  165. .header_ptw *,
  166. .header_ptw ~ tab\le a:visited,
  167. .header_ptw ~ tab\le a:link,
  168. .header_ptw ~ tab\le a:active {
  169. color: #AB234B;
  170. }
  171.  
  172.  
  173. #list_surround br:first-child + tab\le td:nth-child(6) {
  174. background-color: #079B00;
  175. }
  176.  
  177. #list_surround br:first-child + tab\le td:nth-child(6):hover {
  178. background-color: #0A8104;
  179. }
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187. /* The cells of the Anime Title, Score, Type, etc */
  188. .tab\le_header {
  189. /* background-color: #0072C6; */
  190. padding: 8px 0;
  191. }
  192.  
  193. .tab\le_headerLink, .tab\le_headerLink:visited, .tab\le_headerLink:link,
  194. .tab\le_headerLink:active, .tab\le_header strong {
  195. text-decoration: none;
  196. font-weight: normal;
  197. }
  198.  
  199.  
  200. /* All the columns on EVEN numbered rows */
  201. .td2 {
  202. background-color: #FAFAFA;
  203. }
  204.  
  205. /* All the columns on the ODD numbered rows */
  206. .td1 {
  207. /* background-color: white; */
  208. }
  209.  
  210. /* All the cells in the lists */
  211. .td2, .td1 {
  212. padding-bottom: 5px;
  213. padding-top: 5px;
  214. }
  215.  
  216.  
  217. /* The column for Anime Title (and the cell for Anime Title column title) */
  218. .td1:nth-child(2), .td2:nth-child(2), .tab\le_header:nth-child(2) {
  219. width: 500px;
  220. }
  221.  
  222.  
  223. /* The EDIT, MORE links */
  224. .td1:nth-child(2) small a, .td2:nth-child(2) small a {
  225. display: inline-block;
  226. height: 20px;
  227. }
  228.  
  229.  
  230. /* The Edit, More links and the dash (-) in between them */
  231. .td1 di\v small, .td2 di\v small,
  232. .td1 di\v small a:link, .td1 di\v small a:active, .td1 di\v small a:visited,
  233. .td2 di\v small a:link, .td2 di\v small a:active, .td2 di\v small a:visited {
  234. color: transparent;
  235. }
  236.  
  237. /* Edit button */
  238. .td1 di\v small a:first-child, .td2 di\v small a:first-child {
  239. background: url(http://i.imgur.com/7F6Lo8L.png) no-repeat center center;
  240. }
  241.  
  242. /* More button */
  243. .td1 small a:last-child, .td2 small a:last-child {
  244. background: url(http://i.imgur.com/DiqN8wh.png) no-repeat center center;
  245. }
  246.  
  247.  
  248. /* The cell containing all the information about the list at the bottom
  249. eg. TV: 16, OVA: 1, Movies: 0, ..., Mean Score: 0 */
  250. .category_totals {
  251. border-top: 10px solid transparent;
  252. border-left: 2px solid transparent;
  253. border-bottom: 10px solid transparent;
  254. }
  255.  
  256.  
  257. /* The MORE section that appears when you press the MORE link */
  258. /* The*/
  259. .hide {
  260. margin-left: 50px;
  261. padding: 15px;
  262. animation: 1s fadeIn;
  263. -webkit-animation: 1s fadeIn;
  264. }
  265.  
  266. @keyframes fadeIn {
  267. from {opacity: 0.1;}
  268. to {opacity: 1;}
  269. }
  270. @-webkit-keyframes fadeIn {
  271. from {opacity: 0.1;}
  272. to {opacity: 1;}
  273. }
  274.  
  275. .hide .borderRBL {
  276. background-color: transparent;
  277. }
  278.  
  279. .hide, .borderRBL di\v a {
  280. color: white;
  281. }
  282.  
  283.  
  284. .hide a:visited, .hide a:active, .hide a:link {
  285. color: white;
  286. text-decoration: underline;
  287. }
  288.  
  289.  
  290. /*
  291. copyright contains the "Producted by Garrett Gyssler" text
  292. DO NOT REMOVE OR HIDE THIS DIV
  293. IF FOUND TO BE REMOVED, YOUR LIST WILL BE REMOVED TOO
  294. */
  295. #copyright {
  296. text-align: center;
  297. margin: 0 auto;
  298. background-color: #F2F2F2;
  299. padding: 20px;
  300. margin-bottom: 20px;
  301. }
  302.  
  303.  
  304. /* ============================= The top strip above everything */
  305. #mal\_control\_strip {
  306. position: relative!important;
  307. left: 1px!important;
  308. background-image: none!important;
  309. background-color: transparent!important;
  310. height: 80px!important;
  311. width: auto!important;
  312. margin-left: auto!important;
  313. margin-right: auto!important;
  314. margin-bottom: -12px!important;
  315. margin-top: 10px!important;
  316. border: 0!important;
  317. }
  318.  
  319. /* Links on it */
  320. #mal\_control\_strip a:link, #mal\_control\_strip a:visited, #mal\_control\_strip a:active {
  321. text-decoration: none!important;
  322. }
  323.  
  324. /* The three sections (tab\le cells) ie: username/logout, add to list/home/anime(manga)list, history, forum, export */
  325. #mal_cs_listinfo, #mal_cs_links, #mal_cs_otherlinks, #mal_cs_pic {
  326. border: 0!important;
  327. border-right: 8px solid white!important;
  328. width: 306px !important;
  329. background-color: #005C7A!important;
  330. }
  331.  
  332.  
  333. /* Profile/logout section */
  334. #mal_cs_listinfo {
  335. background: url(http://i.imgur.com/hw5DN6D.png) no-repeat 260px center;
  336. }
  337.  
  338. #mal_cs_pic, #mal_cs_pic + #mal_cs_otherlinks {
  339. width: 474px!important;
  340. }
  341.  
  342. /* Add to list, Home, Animelist, Mangalist section */
  343. #mal_cs_links {
  344. background: url(http://i.imgur.com/sWhb5aN.png) no-repeat 260px center;
  345. }
  346.  
  347. /* History, Forum, Export section */
  348. #mal_cs_otherlinks {
  349. background: url(http://i.imgur.com/gQTXnqp.png) no-repeat 260px center;
  350. }
  351.  
  352. /* The divs in history, forum, export section */
  353. #mal_cs_otherlinks d\iv {
  354. width: 243px!important;
  355. }
  356.  
  357. /* The bold in the 3rd tile */
  358. #mal_cs_otherlinks di\v strong {
  359. font-weight: normal!important;
  360. }
  361.  
  362. /* The Home and Manga List link */
  363. #mal_cs_links di\v a:nth-child(2) {
  364. padding-left: 20px!important;
  365. }
  366.  
  367. #mal_cs_pic + #mal_cs_otherlinks {
  368. background: url(http://i.imgur.com/gQTXnqp.png) no-repeat 420px center;
  369. }
  370.  
  371. /* Your username on the strip */
  372. #mal_cs_listinfo di\v:first-child a {
  373. /* font-size: 22px!important; */
  374. font-size: 20px!important;
  375. }
  376.  
  377. /* The bold on your username */
  378. #mal_cs_listinfo di\v:first-child a strong {
  379. font-weight: normal!important;
  380. }
  381.  
  382. /* All the divs in each of #mal_cs_listinfo, #mal_cs_links, #mal_cs_otherlinks, #mal_cs_pic, etc */
  383. /*#mal\_control\_strip t\d di\v {
  384. padding-left: 5px!important;
  385. }*/
  386.  
  387.  
  388. /* Search bar */
  389. #mal_cs_powered {
  390. position: fixed!important;
  391. height: 30px!important;
  392. width: 100%!important;
  393. top: auto!important;
  394. right: auto!important;
  395. left: 0px!important;
  396. bottom: 6px!important;
  397. text-align: left!important;
  398. }
  399.  
  400. #searchBox {
  401. width: 100% !important;
  402. height: 30px;
  403. line-height: 30px;
  404. text-align: center;
  405. font-size: 18px !important;
  406. border: 0;
  407. padding: 0;
  408. background: #005C7A url('http://cdn.myanimelist.net/images/magnify.gif') no-repeat center left 7px !important;
  409. color: white;
  410.  
  411. position: relative;
  412. bottom: 0;
  413. }
  414.  
  415. #search {
  416. padding: 0 !important;
  417. padding-top: 30px !important;
  418. margin: 0 !important;
  419. width: 100%;
  420. position: fixed;
  421. left: 0;
  422. bottom: -30px;
  423.  
  424. transition: bottom 0.25s 0.2s;
  425. }
  426.  
  427. #search:hover {
  428. bottom: 0;
  429. }
  430.  
  431. #mal\_control\_strip t\d di\v#search {
  432. color: black!important;
  433. padding: 0!important;
  434. margin: 0!important;
  435. }
  436.  
  437. #searchListButton {
  438. display: none;
  439. }
  440.  
  441.  
  442. #mal_cs_powered a {
  443. display: none!important;
  444. }
  445.  
  446. /* The box that pops up when you press Edit */
  447. #fancybox-wrap {
  448. background-color: #0072C6!important;
  449. }
  450.  
  451. #fancybox-wrap, #fancybox-outer{
  452. animation: 0.5s fadeIn;
  453. -webkit-animation: 0.5s fadeIn;
  454. }
  455.  
  456. .fancy-bg {
  457. background: none!important;
  458. }
  459.  
  460. #fancybox-close {
  461. background: url(http://i.imgur.com/QK8xGbQ.png) top left no-repeat!important;
  462. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement