Advertisement
miketrethewey

Stumpy CSS Hacks

Jan 26th, 2021
1,237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.43 KB | None | 0 0
  1. /* Available: Green */
  2. .available,
  3. .available[_ngcontent-c6] {
  4.   --availability-fill: #00ff00;
  5. }
  6.  
  7. /* Visible: Blue */
  8. .visible,
  9. .visible[_ngcontent-c6] {
  10.   --availability-fill: #6060ff;
  11. }
  12.  
  13. /* Castle Tower */
  14. /* Thieves' Town */
  15. /* Ice Palace */
  16. stumpy-dungeons stumpy-dungeon:nth-child(1),
  17. stumpy-dungeons stumpy-dungeon:nth-child(8),
  18. stumpy-dungeons stumpy-dungeon:nth-child(9) {
  19.   background-color: #ff000030;
  20. }
  21. /* Eastern Palace */
  22. /* Skull Woods */
  23. /* Misery Mire */
  24. stumpy-dungeons stumpy-dungeon:nth-child(2),
  25. stumpy-dungeons stumpy-dungeon:nth-child(7),
  26. stumpy-dungeons stumpy-dungeon:nth-child(10) {
  27.   background-color: #ff6a0030;
  28. }
  29. /* Desert Palace */
  30. /* Swamp Palace */
  31. /* Turtle Rock */
  32. stumpy-dungeons stumpy-dungeon:nth-child(3),
  33. stumpy-dungeons stumpy-dungeon:nth-child(6),
  34. stumpy-dungeons stumpy-dungeon:nth-child(11) {
  35.   background-color: #ffff0030;
  36. }
  37. /* Tower of Hera */
  38. /* Palace of Darkness */
  39. /* Ganon's Tower */
  40. stumpy-dungeons stumpy-dungeon:nth-child(4),
  41. stumpy-dungeons stumpy-dungeon:nth-child(5),
  42. stumpy-dungeons stumpy-dungeon:nth-child(12) {
  43.   background-color: #00ff0030;
  44. }
  45.  
  46. /* Collected Big Keys */
  47. .big-key.claimed {
  48.   background-color: #1eff00;
  49. }
  50.  
  51. /* All small key counters */
  52. stumpy-dungeons stumpy-dungeon:nth-child(n) .small-keys.small-keys-0 {
  53.   background-color: #9d9d9d;
  54.   background-image: url(http://alttp.mymm1.com/stumpy/smallkey0.png);
  55. }
  56. stumpy-dungeons stumpy-dungeon:nth-child(n) .small-keys.small-keys-1 {
  57.   background-color: #ffffff;
  58.   background-image: url(http://alttp.mymm1.com/stumpy/smallkey1.png);
  59. }
  60. stumpy-dungeons stumpy-dungeon:nth-child(n) .small-keys.small-keys-2 {
  61.   background-color: #1eff00;
  62.   background-image: url(http://alttp.mymm1.com/stumpy/smallkey2.png);
  63. }
  64. stumpy-dungeons stumpy-dungeon:nth-child(n) .small-keys.small-keys-3 {
  65.   background-color: #0070dd;
  66.   background-image: url(http://alttp.mymm1.com/stumpy/smallkey3.png);
  67. }
  68. stumpy-dungeons stumpy-dungeon:nth-child(n) .small-keys.small-keys-4 {
  69.   background-color: #a335ee;
  70.   background-image: url(http://alttp.mymm1.com/stumpy/smallkey4.png);
  71. }
  72. stumpy-dungeons stumpy-dungeon:nth-child(n) .small-keys.small-keys-5 {
  73.   background-color: #ff8000;
  74.   background-image: url(http://alttp.mymm1.com/stumpy/smallkey5.png);
  75. }
  76. stumpy-dungeons stumpy-dungeon:nth-child(n) .small-keys.small-keys-6 {
  77.   background-color: #00ccff;
  78.   background-image: url(http://alttp.mymm1.com/stumpy/smallkey6.png);
  79. }
  80.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement