TakatsukiYayoi

Rainbow Text mod (KC3Kai)

Jun 23rd, 2018
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.41 KB | None | 0 0
  1. /*
  2. MLG TEXT FOR YOUR SHIPGIRLS
  3. changes the color of your favorite ship girl's name
  4. to cancerous rainbow mlg text
  5. works in KC3 Kai
  6.  
  7. how to use:
  8. paste code in KC3Kai Settings > Panel > Custom CSS
  9.  
  10. to modify:
  11. change "#ShipBox1" to "#ShipBox<id of the ship>" e.g. "#ShipBox322"
  12. id is visible at the top-right corner of the panel that appears
  13. when you hover on a shipgirl's picture
  14.  
  15. change the speed by changing "1s" to whatever value you please
  16. lower values = faster, more cancerous rainbow animation
  17.  
  18. protip:
  19. to color all of your waifus (ringed ships), change
  20.  
  21. #ShipBox1 .ship_name
  22.  
  23. to
  24.  
  25. .sWife .ship_name
  26.  
  27. to color the flagship for all fleets, change that line to
  28.  
  29. .lship:nth-child(1) .ship_name, .sship:nth-child(1) .ship_name
  30.  
  31. if you know your CSS selectors, go fucking crazy
  32. */
  33.  
  34. /* vvvvv  COPYPASTA THE CODE BELOW vvvvv */
  35.  
  36. #ShipBox1 .ship_name {
  37.     color: transparent !important;
  38.     background-image: linear-gradient(to right, #ff0000 0%,#ffff00 20%,#00ff00 40%,#00ffff 60%,#0000ff 80%,#ff00ff 100%) !important;
  39.     -webkit-text-fill-color: transparent;
  40.     -webkit-background-clip: text;
  41.     animation: mlgtext 1s infinite linear;
  42. }
  43.  
  44. @keyframes mlgtext {
  45.     0% {
  46.         filter: hue-rotate(0deg);
  47.     }
  48.     100% {
  49.         filter: hue-rotate(359deg);
  50.     }
  51. }
Add Comment
Please, Sign In to add comment