Advertisement
ruesha

codes for xn--lg3bu1v crd

Feb 6th, 2022
1,337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.77 KB | None | 0 0
  1. ---- fonts ----
  2. <style>
  3. @font-face {
  4. font-family: billo;
  5. src: url(https://dl.dropbox.com/s/klv8tmajlqrb2xz/BILLO___.TTF);
  6. }
  7.  
  8. </style>
  9.  
  10. ---- for name ----
  11. font-family: billo;
  12. text-shadow: -1px 0 #F0B9D0, 0 1px #F0B9D0, 1px 0 #F0B9D0, 0 -1px #F0B9D0, 0 0;
  13. position: absolute;
  14. bottom: 1.3em;
  15. left: -.05em;
  16.  
  17. (you might have to adjust the bottom & left based on your carrd!)
  18.  
  19. ---- texts ----
  20. width: 100%;
  21. margin: auto;
  22. padding: .4em;
  23. position: left;
  24. background: #FFFFFF;
  25. border-radius: 3px;
  26. font-color: #000;
  27.  
  28. ---- "index" ----
  29. background: rgb(237, 240, 255);
  30. background: radial-gradient(circle, rgb(255, 209, 228) 55%, rgb(255, 240, 246) 100%);
  31. border-radius:7px;
  32. border: 1px solid #FFC7DF;
  33. padding: .06em .3em .01em .3em;
  34. color: #FFF;
  35. font-size:1.2em;
  36.  
  37. -webkit-text-fill-color: white;
  38. -webkit-text-stroke-width: .66px;
  39. font-family: Archivo;
  40.  
  41. ---- for container backgrounds ----
  42. background: rgb(237, 240, 255);
  43. background: radial-gradient(circle, rgb(255, 209, 228) 55%, rgb(255, 240, 246) 100%);
  44.  
  45. ---- transition ----
  46. <style>
  47. a { transition: .4s; }
  48. a:hover { letter-spacing: 2px; }
  49. </style>
  50.  
  51. ---- music player ----
  52. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  53.  
  54. <!-------MUSIC PLAYER BY GLENTHEMES------->
  55. <script src="//static.tumblr.com/gtjt4bo/QRmphdsdv/glenplayer02.js"></script>
  56.  
  57. <style type="text/css">
  58. /*-------MUSIC PLAYER BY GLENTHEMES-------*/
  59. #glenplayer02 {
  60. position:relative;
  61. top:3px;
  62. left:1px;
  63. width:150px
  64. ;z-index:5
  65. }
  66. #glenplayer02 a {text-decoration:none;}
  67.  
  68. #glenplayer02 > div {
  69. align-self:center;
  70. -webkit-align-self:center;
  71. }
  72.  
  73. .music-controls {
  74. user-select:none;
  75. -webkit-user-select:none;
  76. width:13px;
  77. font-size:13px;
  78. cursor:pointer;
  79. }
  80.  
  81. .playy, .pausee {color:#FFCFDD;} /* color of play & pause buttons */
  82.  
  83. .pausee {display:none;}
  84.  
  85. .sonata {
  86. margin-left:10px;
  87. color:#FFCFDD; /* color of music note symbol */
  88. }
  89.  
  90. .labeltext {
  91. position:relative;
  92. top:0px;
  93. left:1px;
  94. margin-left:0px;
  95. font-family:courier new;
  96. font-size:9px;
  97. color:#000; /* color of song title */
  98. }
  99.  
  100. </style>
  101. <body>
  102. <!-------MUSIC PLAYER BY GLENTHEMES------->
  103. <div id="glenplayer02">
  104. <div class="music-controls" onclick="songstart();">
  105. <div class="playy">►</div>
  106. <div class="pausee">❚❚</div>
  107. </div>
  108. <div class="sonata"> </div>
  109. </div><!--end music player-->
  110.  
  111. <audio id="tune" src="https://dl.dropbox.com/s/v4yx8v5a1gw172o/Sun-Saathiya-Priya-Saraiya-Divya-Kumar%20%281%29.mp3?dl=0"audio"></audio>
  112. </body>
  113.  
  114. <div class="labeltext"></div>
  115.  
  116. ---- bubbles ----
  117. <script type="text/javascript">
  118. // <![CDATA[
  119. var colours=new Array("#FFF0F6", "#FFC7DF", "#FFCCE2", "#FFCCE2", "#FFC7DF"); // colours for top, right, bottom and left borders and background of bubbles
  120. var bubbles=66; // how many bubbles are moving at any given time
  121. var over_or_under="over"; // set to "over" for bubbles to always be on top, or "under" to allow them to float behind other objects
  122.  
  123. /****************************
  124. * JavaScript Bubble Bath *
  125. *(c)2010-13 mf2fm web-design*
  126. * http://www.mf2fm.com/rv *
  127. * DON'T EDIT BELOW THIS BOX *
  128. ****************************/
  129.  
  130. var swide=800;
  131. var shigh=600;
  132. var bubb=new Array();
  133. var bubbx=new Array();
  134. var bubby=new Array();
  135. var bubbs=new Array();
  136. var boddie;
  137. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  138.  
  139. function addLoadEvent(funky) {
  140. var oldonload=window.onload;
  141. if (typeof(oldonload)!='function') window.onload=funky;
  142. else window.onload=function() {
  143. if (oldonload) oldonload();
  144. funky();
  145. }
  146. }
  147.  
  148. addLoadEvent(bubba);
  149.  
  150. function bubba() { if (document.getElementById) {
  151. var i, rats, div;
  152. boddie=document.createElement("div");
  153. boddie.style.position="fixed";
  154. boddie.style.top="0px";
  155. boddie.style.left="0px";
  156. boddie.style.overflow="visible";
  157. boddie.style.width="1px";
  158. boddie.style.height="1px";
  159. boddie.style.backgroundColor="transparent";
  160. boddie.style.zIndex="0";
  161. document.body.appendChild(boddie);
  162. set_width();
  163. for (i=0; i<bubbles; i++) {
  164. rats=createDiv("3px", "3px");
  165.  
  166. div=createDiv("auto", "auto");
  167. rats.appendChild(div);
  168. div=div.style;
  169. div.top="1px";
  170. div.left="0px";
  171. div.bottom="1px";
  172. div.right="0px";
  173. div.borderLeft="1px solid "+colours[3];
  174. div.borderRight="1px solid "+colours[1];
  175.  
  176. div=createDiv("auto", "auto");
  177. rats.appendChild(div);
  178. div=div.style;
  179. div.top="0px";
  180. div.left="1px";
  181. div.right="1px";
  182. div.bottom="0px"
  183. div.borderTop="1px solid "+colours[0];
  184. div.borderBottom="1px solid "+colours[2];
  185.  
  186. div=createDiv("auto", "auto");
  187. rats.appendChild(div);
  188. div=div.style;
  189. div.left="1px";
  190. div.right="1px";
  191. div.bottom="1px";
  192. div.top="1px";
  193. div.backgroundColor=colours[4];
  194. if (ie_version && ie_version<10) div.filter="alpha(opacity=50)";
  195. else div.opacity=0.5;
  196.  
  197. boddie.appendChild(rats);
  198. bubb[i]=rats.style;
  199. bubb[i].zIndex=(over_or_under=="over")?"1001":"0";
  200. }
  201. bubble();
  202. }}
  203.  
  204. function bubble() {
  205. var c;
  206. for (c=0; c<bubbles; c++) if (!bubby[c] && Math.random()<0.333) {
  207. bubb[c].left=(bubbx[c]=Math.floor(swide/6+Math.random()*swide/1.5)-10)+"px";
  208. bubb[c].top=(bubby[c]=shigh)+"px";
  209. bubb[c].width="3px";
  210. bubb[c].height="3px"
  211. bubb[c].visibility="visible";
  212. bubbs[c]=3;
  213. break;
  214. }
  215. for (c=0; c<bubbles; c++) if (bubby[c]) update_bubb(c);
  216. setTimeout("bubble()", 40);
  217. }
  218.  
  219. function update_bubb(i) {
  220. if (bubby[i]) {
  221. bubby[i]-=bubbs[i]/2+i%2;
  222. bubbx[i]+=(i%5-2)/5;
  223. if (bubby[i]>0 && bubbx[i]>0 && bubbx[i]<swide) {
  224. if (Math.random()<bubbs[i]/shigh*2 && bubbs[i]++<8) {
  225. bubb[i].width=bubbs[i]+"px";
  226. bubb[i].height=bubbs[i]+"px";
  227. }
  228. bubb[i].top=bubby[i]+"px";
  229. bubb[i].left=bubbx[i]+"px";
  230. }
  231. else {
  232. bubb[i].visibility="hidden";
  233. bubby[i]=0;
  234. return;
  235. }
  236. }
  237. }
  238.  
  239. window.onresize=set_width;
  240. function set_width() {
  241. var sw_min=999999;
  242. var sh_min=999999;
  243. if (document.documentElement && document.documentElement.clientWidth) {
  244. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  245. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  246. }
  247. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  248. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  249. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  250. }
  251. if (document.body.clientWidth) {
  252. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  253. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  254. }
  255. if (sw_min==999999 || sh_min==999999) {
  256. sw_min=800;
  257. sh_min=600;
  258. }
  259. swide=sw_min;
  260. shigh=sh_min;
  261. }
  262.  
  263. function createDiv(height, width) {
  264. var div=document.createElement("div");
  265. div.style.position="absolute";
  266. div.style.height=height;
  267. div.style.width=width;
  268. div.style.overflow="hidden";
  269. div.style.backgroundColor="transparent";
  270. return (div);
  271. }
  272. // ]]>
  273. </script>
  274.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement