Advertisement
Guest User

Untitled

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