Advertisement
naocrrds

PRO STANDARD #4 // chuwee carrd co codes

May 4th, 2022 (edited)
1,195
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.12 KB | None | 1 0
  1. ------------------ scrollbox ------------------
  2.  
  3. <style>
  4. #scroll a{
  5. text-decoration-style: dotted;
  6. }
  7.  
  8. #SCROLL a:hover {
  9. color: #6c7c74;
  10. transition: .9s;
  11. text-decoration: italic;
  12. text-decoration-style: none;
  13. }
  14.  
  15. html {
  16. overflow: scroll;
  17. overflow-x: hidden;
  18. }
  19.  
  20. ::-webkit-scrollbar {
  21. width: 0;
  22. background: transparent;
  23. }
  24.  
  25. ::-webkit-scrollbar-thumb {
  26. background: transparent;
  27. }
  28.  
  29. #scroll {
  30. float:right;
  31. MAX-HEIGHT:70PX;
  32. height: 70px;
  33. border-radius:0.875rem;
  34. width: 15px;
  35. padding: 3px;
  36. text-align:left;
  37. overflow: auto;
  38. background-color: rgba(255,255,255,0.612);
  39. transition: width 1s, height 1s;
  40. -webkit-transition: opacity 1s linear;
  41. -webkit-transition: all 1s ease-in-out;
  42. -moz-transition: all 1s ease-in-out;
  43. -o-transition: all 1s ease-in-out;
  44. }
  45.  
  46. #scroll:hover{
  47. -moz-transition: all 2s;
  48. -webkit-transition: all 1s;
  49. width: 130%;
  50. background-color:rgba(255, 255, 255, 0.90);
  51. z-index:999;
  52. cursor:help;
  53. }
  54.  
  55. strong{
  56. font-family: cheri;
  57. font-size:2em;
  58. text-align: left;
  59. position: relative;
  60. font-weight:900;
  61. right: 0;
  62. color:inherit;
  63. -webkit-transform: rotate(90deg);
  64. transform: rotate(90deg);
  65. transition: 1s;
  66. }
  67.  
  68. #scroll:hover strong{
  69. LINE-HEIGHT:0.1;
  70. opacity: 0;
  71. transition: 1s;
  72. font-size: 0;
  73. }
  74.  
  75. p{
  76. font-size:0px;
  77. text-align:left;
  78. font-family:nintendo;
  79. }
  80.  
  81. #scroll:hover p{
  82. margin-top: -.125em; /* you can modify this part how much negative margin top so there would be no huge space above when hovering the scrollbox*/
  83. font-size: 1.5em;
  84. color:rgba(0, 0, 0, 0.78);
  85. text-align:left;
  86. font-family:nintendo;}
  87.  
  88. </style>
  89. <div id="scroll">
  90. <strong>
  91.  
  92. /*-- ADD HERE THE PATORJK FONT TAG--*/
  93.  
  94. </strong>
  95. <p>information <a href="LINK">link name</a>.
  96.  
  97. /*--ADD <BR> or <BR><BR/> IF YOU WANT TO MOVE ANOTHER PARAGRAPH--*/
  98.  
  99. </p>
  100. </div>
  101.  
  102. ------------------ miscellaneous ------------------
  103. @font-face {
  104. font-family: Nintendo;
  105. src: url(https://dl.dropbox.com/s/vlxjtnvrl9s0snp/Nintendo-DS-BIOS.ttf); }
  106.  
  107. @font-face {
  108. font-family: cheri;
  109. src: url(https://dl.dropbox.com/s/vaz4fe5yzk1uiku/CHERL___.TTF);}
  110.  
  111. @font-face{
  112. font-family:crystaluniverse;
  113. src: url(https://dl.dropbox.com/s/9if02z4xh34q00d/CrystalUniverse-Regular.ttf);}
  114.  
  115. #tt{
  116. font-family:crystaluniverse;
  117. font-size:3em;
  118. line-height:1.75em;
  119. -webkit-text-stroke-width: 1px;
  120. -webkit-text-stroke-color: #ffffff;
  121. -webkit-text-fill-color: inherit;
  122. text-align:left;}
  123.  
  124.  
  125.  
  126. ------------------ image divider on top ------------------
  127.  
  128. #image01{
  129. position:absolute;
  130. top:0px;
  131. left:0px;}
  132.  
  133.  
  134.  
  135. ------------------ image bounce onhover ------------------
  136.  
  137. #image02{
  138. position:absolute;
  139. bottom:-15px;
  140. right:-35px;
  141. -webkit-transform: rotate(11deg);
  142. transform: rotate(11deg);
  143. -webkit-animation-duration: 1s;
  144. animation-duration: 1s;
  145. -webkit-animation-fill-mode: both;
  146. animation-fill-mode: both;
  147. -webkit-animation-timing-function: ease-in-out;
  148. animation-timing-function: ease-in-out;
  149. animation-iteration-count: infinite;
  150. -webkit-animation-iteration-count: infinite;
  151. display: inline-block;
  152. filter: drop-shadow( 0 0px #b4a1f8) drop-shadow( 2px 3px 2px #cfbcd5) drop-shadow( 0 -1px #b4a1f8) drop-shadow( -1px 0 #b4a1f8);
  153. z-index:9;}
  154.  
  155. #image02:hover{
  156. animation-name: bounce;
  157. -moz-animation-name: bounce;}
  158.  
  159. @keyframes bounce{
  160. 0%, 100%, 20%, 50%, 80% {
  161. -webkit-transform: translateY(0);
  162. -ms-transform: translateY(0);
  163. transform: translateY(0)}
  164.  
  165. 40% {
  166. -webkit-transform: translateY(-30px);
  167. -ms-transform: translateY(-30px);
  168. transform: translateY(-30px)}
  169.  
  170. 60% {
  171. -webkit-transform: translateY(-15px);
  172. -ms-transform: translateY(-15px);
  173. transform: translateY(-15px)}
  174.  
  175.  
  176.  
  177. ------------------ music player, credits to owner ------------------
  178.  
  179. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  180. <script src="//static.tumblr.com/gtjt4bo/QRmphdsdv/glenplayer02.js"></script>
  181. <head>
  182. <script src="https://kit.fontawesome.com/610c820504.js" crossorigin="anonymous"></script>
  183. </head>
  184. <style type="text/css">
  185. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  186. #glenplayer02 {
  187. position: absolute;
  188. bottom:5px;
  189. left:10px;
  190. display:flex;
  191. z-index:99; }
  192.  
  193. #glenplayer02 a {
  194. text-decoration:none; }
  195.  
  196. #glenplayer02 > div {
  197. align-self:center; -webkit-align-self:center;}
  198.  
  199. .music-controls {
  200. cursor: url(https://cur.cursors-4u.net/nature/nat-3/nat260.cur), auto !important; /*--CHANGE CURSOR--*/
  201. user-select:none;
  202. -webkit-user-select:none;
  203. width:22px;
  204. font-size:16px; }
  205.  
  206. .playy, .pausee {
  207. background: #cfbcd5;
  208. -webkit-background-clip: text;
  209. -webkit-text-fill-color:#cfbcd5;
  210. -webkit-text-stroke-width: 1px; -webkit-text-stroke-color: #483d44; font-size: 22px; color: #ffffff; } .pausee { display:none; }
  211.  
  212. </style>
  213. <body>
  214. <div id="glenplayer02"><div class="music-controls" onclick="songstart();"><div class="playy" style="display: block;"><span>
  215. <i class="fa-solid fa-volume-low" aria-hidden="true"></i></span></div><div class="pausee" style="display: none;"><span><i class="fa-solid fa-volume-high" aria-hidden="true"></i>
  216. </span></div></div></div>
  217.  
  218. <audio id="tune" src="https://cdn.discordapp.com/attachments/890617367284027443/965530443401281546/LeeHi_-_ONLY_Lyrics.mp3"> /*--CHANGE YOUR MUSIC HERE--*/
  219.  
  220. </audio></body>
  221.  
  222.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement