Advertisement
marwanpro

CSS MyAnimeList

May 25th, 2015
1,091
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.93 KB | None | 0 0
  1. /* If you want a copy of the css message me or just cut and paste.
  2. Here's the tutorials I used http://myanimelist.net/forum/?topicid=419405*/
  3.  
  4.  
  5.  
  6. /*Tiles*/
  7. @import "https://googledrive.com/host/0BxjwQr0BBXs-aWFrYzJjVnpoVVE";
  8.  
  9. /*Top Panel*/
  10. @import "http://storage.live.com/items/4A07C1EEED420167%21162";
  11.  
  12. /*Fonts*/
  13. @import "http://fonts.googleapis.com/css?family=Carrois+Gothic+SC";
  14.  
  15.  
  16. /*Background*/
  17. body {
  18. background-image: url(http://fc05.deviantart.net/fs71/f/2014/185/2/7/nisekoi___onodera_and_marika__edit__by_mackaged-d7p6nu2.jpg);
  19. background-attachment: fixed;
  20. background-size: cover;
  21. }
  22.  
  23. /*Header*/
  24. .header_title {
  25. color: #FFFFFF;
  26. font-family: 'Carrois Gothic SC', sans-serif;
  27. font-size:30px;
  28. font-weight: 700;
  29. border-radius: 20px 20px 0px 0px;
  30. text-align: center;
  31. text-shadow: 1px 1px 1px #000000;
  32. }
  33.  
  34. /*List width*/
  35. #list_surround {
  36. width:1000px
  37. }
  38.  
  39. /*List position*/
  40. #list_surround{
  41. left: 150px;
  42. position: relative;
  43. }
  44.  
  45. /*Background colour and opacity*/
  46. .header_title, .table_header, .category_totals, .td1, .td2, #grand_totals, #copyright {
  47. background: rgba(26, 16, 51, 0.550) !important;
  48. }
  49.  
  50. /*Font*/
  51. .td1, .td2, a, a:visited, .category_totals, .table_header, #grand_totals, #copyright {
  52. color:white;
  53. font-size:16px;
  54. font-family: 'Carrois Gothic SC', sans-serif;
  55. text-shadow: 2px 1px 2px #000000;
  56. text-decoration: none;
  57. }
  58.  
  59. /*Column sizing*/
  60. td:nth-of-type(1){
  61. width: 40px;
  62. }
  63. td:nth-of-type(3){
  64. width: 60px;
  65. }
  66. td:nth-of-type(4){
  67. width: 75px;
  68. }
  69. td:nth-of-type(5){
  70. width: 80px;
  71. }
  72.  
  73. /*Bottom 2 boxs*/
  74. #copyright {
  75. margin-bottom: 30px !important;
  76. border-radius: 20px;
  77. padding: 10px;
  78. }
  79. #grand_totals {
  80. text-align: center;
  81. margin:0 auto;
  82. border-radius: 20px;
  83. padding: 10px 20px;
  84. width: 600px;
  85. }
  86.  
  87. /*Bottom of each list totals*/
  88. .category_totals {
  89. border-radius: 0px 0px 20px 20px;
  90. height: 40px;
  91. text-align: center;
  92. }
  93.  
  94. /*Panel*/
  95. .hide {
  96. background-size: cover;
  97. left: -132px;
  98. vertical-align: 50%;
  99. height: 176px;
  100. width: 114px;
  101. padding-bottom: 0px;
  102. border-style: solid;
  103. border-color: white;
  104. border-top: 1px solid white;;
  105. border-left: 1px solid white;
  106. border-right: 1px solid white;
  107. border-bottom: 1px solid white;
  108. border-radius: 25px 25px 25px 25px;
  109. background-color: rgba(200, 5, 200, 0.75);
  110. background-position: center 50% !important;
  111. background-repeat: no-repeat !Important;
  112. display: block !important;
  113. position: absolute;
  114. visibility: hidden;
  115. opacity: 0;
  116. }
  117.  
  118. /*Centre panel to line*/
  119. .hide {
  120.     -ms-transform: translateY(-78px); /* IE 9 */
  121.     -webkit-transform: translateY(-78px); /* Chrome, Safari, Opera */
  122.     transform: translateY(-78px);
  123. }
  124.  
  125. /* Show panel when name hovered over */
  126. :hover + .hide {
  127. visibility: visible;
  128. opacity: 1;
  129. }
  130.  
  131. /* Silver highlight and font resize on Hover */
  132. tr:hover [class^="td"] {
  133. background-color: rgba(72, 64, 87, 0.6) !important;
  134. }
  135.  
  136.  
  137. /*Hide navigation (menu for Watching, Completed, etc.)*/
  138. [class^=status_] {
  139.     display: none;
  140. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement