Advertisement
saltycodes

remorse

Jul 2nd, 2022
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.51 KB | None | 0 0
  1. css
  2.  
  3. const button = document.querySelector("#button");
  4. const icon = document.querySelector("#button > i");
  5. const audio = document.querySelector("audio");
  6.  
  7. button.addEventListener("click", () => {
  8. if (audio.paused) {
  9. audio.volume = 0.2;
  10. audio.play();
  11. icon.classList.remove('fa-volume-up');
  12. icon.classList.add('fa-volume-mute');
  13.  
  14. } else {
  15. audio.pause();
  16. icon.classList.remove('fa-volume-mute');
  17. icon.classList.add('fa-volume-up');
  18. }
  19. button.classList.add("fade");
  20. });
  21.  
  22. style
  23.  
  24. @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
  25. body{height:100%;width:100%;background-color:#888c8d;overflow:hidden;margin:0px;user-select:none;display:flex;justify-content:center;align-items:center;}
  26. a{text-decoration:none; color: #FFD700; transition: all 2s;}
  27. a:hover{color:#Aa0808; transition:all .9s;}
  28.  
  29. audio {
  30. display:none;
  31. }
  32.  
  33. button {
  34. font-size: 26px;
  35. color: red;
  36. position: absolute;
  37. bottom: 180px;
  38. left: 813px;
  39. width: 50px;
  40. padding: 15px;
  41. border: none;
  42. border-radius: 2px;
  43. outline: none;
  44. background: transparent;
  45. opacity: 0.8;
  46. cursor: pointer;
  47. transition: all 0.4s ease-out;
  48. z-index:1000;
  49. }
  50. button:hover{color:gold; transition:all .5s;}
  51.  
  52. hr {
  53. height: 8px;
  54. background-image: linear-gradient(90deg, transparent, #222, transparent);
  55. border: 0;
  56. height: 3px;
  57. }
  58. u {
  59. text-decoration:none;
  60. background-color:#222;
  61. padding:2px;
  62. color:#b4abb0;
  63. line-height:18px;
  64. }
  65. ::-webkit-scrollbar {
  66. display: none;
  67. }
  68. l {font-weight: bold;
  69. color: #163B48;
  70. text-transform: uppercase;}
  71. b {color: #000;
  72. }
  73. i {color: #Aa0808;}
  74.  
  75. body
  76.  
  77. <div style="position: absolute;height: 450px;width: 400px;">
  78. <center>wip.</center>
  79. <button id="button"><img src="https://www.pngmart.com/files/13/Glowing-Angel-Halo-PNG-Pic.png" style="margin-bottom:276px;margin-left:-1375px;height:100px;"> </button>
  80. </div>
  81. <div style="position:absolute;padding: 5px 0px 10px 10px;height: 140px;width: 190px;margin-top: -333px;margin-left: 511px;font-family: 'Bebas Neue', cursive;font-size: 18px;line-height: 14px;color:#fff;">
  82. <center>At first, the <b>god</B> who bore such sadness in his heart for his creation had birthed them into existance, <i>remorse</i>.<Br><br>An angel affectionatly referred to as <b>Eitan</B>, tasked to oversee those who come into guilt for their crimes against the maker. Often, Eitan would find pity on these lost souls and guide them back into the light.<br><br>They are <b>timeless</b>, male presenting yet the support neither of any genitalia, and a loyal <a target="_blank" href="https://i.imgur.com/xiW0snh.png" title="Our father who art in heaven ...">seraphim</a> to the <i>One Above All</i>.</center>
  83. </div>
  84. <div style="position:absolute;padding: 5px 0px 10px 10px;height: 140px;width: 190px;margin-top: 230px;margin-left: -688px;font-family: 'Bebas Neue', cursive;font-size: 18px;line-height: 15px;color:#fff;z-index:1;">
  85. "Immortality is a fickle thing, always seeing the love of your life pass your eyes. It changes you - it turns you cold. It makes you a constant thinker, to think of what is <b>right</b> or <i>wrong</i>. Sometimes, at the end of those thoughts ... one could wish they <i>never existed.</i>"
  86. </div>
  87. <img src="https://i.pinimg.com/564x/ed/37/28/ed3728533a068b9ba746fbb33ddaedff.jpg" style="position:absolute;margin-bottom:0px;margin-left:-50px;height:748px;">
  88. </div>
  89. <audio controls loop><source src="https://dl.dropboxusercontent.com/s/718hvfypkutso6s/Post%20Malone%20-%20Reputation%20%28Audio%29.mp3?dl=0"></audio>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement