Nick_204

MyAnimeList Itachi

Apr 25th, 2021 (edited)
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. /* Background Pic:
  2. https://i.imgur.com/tGLyQRq.jpg
  3. */
  4.  
  5.  
  6. /* DISTANCE OF LIST FROM TOP
  7. Increase or decrease the px amount to change the distance from the top. */
  8. .header {
  9. padding-bottom: 200px;
  10. }
  11.  
  12.  
  13. /* CUSTOM BACKGROUND IMAGE SETTINGS*/
  14. body {
  15. background-size: cover;
  16. background-attachment: fixed;
  17. }
  18.  
  19.  
  20.  
  21. /* HEADERS AND TABLE LINK FONT */
  22. a {
  23. color: white !important;
  24. font-family: arial;
  25. }
  26.  
  27. /* CATEGORY HEADER FONT */
  28. .list-unit .list-status-title .text {
  29. color: white !important;
  30. font-family: arial;
  31. }
  32.  
  33. /* CATEGORY HEADER BACKGROUND COLOR */
  34. .list-unit .list-status-title {
  35. background-color: transparent !important;
  36. }
  37.  
  38. /* LIST LINK FONT */
  39. .list-table .list-table-data .data a{
  40. color: white !important;
  41. font-family: arial;
  42. }
  43.  
  44. /* LIST NON-LINK FONT */
  45. body{
  46. color: silver !important;
  47. font-family: arial;
  48. }
  49.  
  50. /* TAGS EDIT FONT */
  51. .list-table .list-table-data .tags .edit{
  52. color: white !important;
  53. font-family: arial;
  54. }
  55.  
  56. /* LINK COLOR ON HOVER*/
  57. a:hover,
  58. .list-table .list-table-data .data a:hover{
  59. color: cyan !important;
  60. }
  61.  
  62.  
  63.  
  64.  
  65. /*BACKGROUND AND BORDER COLOR OF CATEGORY LINKS
  66. The first number in the parenthesis is the amount of red (0-255).
  67. The second number in the parenthesis is the amount of green (0-255).
  68. The third number in the parenthesis is the amount of blue (0-255).
  69. The fourth number in the parenthesis is the amount of opacity (.0 to 1).
  70.  
  71. Change the fourth number (opacity) to a lesser number like .3 for more transparency. Raise to a higher number like .8 for less transparency.
  72. */
  73. .status-menu-container{
  74. background-color: rgba(50,50,50,.8) !important;
  75. border: 1px white solid !important;
  76. }
  77.  
  78.  
  79. /* BACKGROUND AND BORDER COLOR OF LIST
  80. See BACKGROUND AND BORDER COLOR OF CATEGORY LINKS above for guide on using RGBA colors.
  81. */
  82. .list-block{
  83. background-color: rgba(50,50,50,.6) !important;
  84. border: 1px white solid !important;
  85. }
  86.  
  87.  
  88. /*BACKGROUND COLOR OF ROWS ON HOVER
  89. See BACKGROUND AND BORDER COLOR OF CATEGORY LINKS above for guide on using RGBA colors.
  90. */
  91. tbody[class*="list-item"]:hover,
  92. .list-table tbody:nth-of-type(2n+1):hover {background-color:rgba(0,0,0,.5) !important;}
  93.  
  94.  
  95. /*OTHER CODES*/
  96. .list-table > tbody:nth-of-type(2n+1),
  97. .list-table, .list-container,
  98. .list-table .list-table-header .header-title{
  99. background-color: transparent !important;
  100. border: 0 transparent solid !important;
  101. }
  102. .list-table .list-table-data .data{
  103. border: 0 transparent solid !important;
  104. }
  105. .status-menu-container {
  106. border-bottom: transparent 0 solid;
  107. }
  108.  
Add Comment
Please, Sign In to add comment