Advertisement
nomskoo

temptation uwu ai - pro plus

Jun 11th, 2024 (edited)
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.95 KB | None | 0 0
  1. NOTE: haiii :3 when rming this carrd pls credit angeidiarys!! if you have any questions pls either dm me @ crrdcore or send me a retrospring @ soobinzz! and as always all positions were made to fit my personal devices so you may need to change them to fit your devices!
  2.  
  3. --- CODES ---
  4. <style>
  5. @font-face {
  6. font-family: Chemre;
  7. src: url(https://dl.dropbox.com/s/a4vu0khvvhe5lwq/Chemre.ttf);
  8. }
  9.  
  10. html {
  11. overflow: scroll;
  12. overflow-x: hidden;
  13. }
  14. ::-webkit-scrollbar {
  15. width: 0; /* remove scrollbar space */
  16. background: transparent; /* to make scrollbar invisible */
  17. }
  18. ::-webkit-scrollbar-thumb {
  19. background: transparent;
  20. }
  21. @keyframes blinkingText {
  22. 0% {
  23. color: #fec5e5;
  24. }
  25.  
  26. 49% {
  27. color: #fec5e5;
  28. }
  29.  
  30. 60% {
  31. color: white;
  32. }
  33.  
  34. 99% {
  35. color: white;
  36. }
  37.  
  38. 100% {
  39. color: #fec5e5;
  40. }
  41. }
  42. </style>
  43.  
  44. --- CURSOR ---
  45. <script type="text/javascript">
  46. // <![CDATA[
  47. var colours=new Array( '#FFC0D3', '#FFA6D5', 'white', '#F9CEEE', '#FED1EF'); // colours of the stars
  48. var minisize=16; // smallest size of stars in pixels
  49. var maxisize=28; // biggest size of stars in pixels
  50. var stars=66; // maximum number of stars on screen
  51. var over_or_under="over"; // set to "over" for stars to always be on top, or "under" to allow them to float behind other objects
  52.  
  53. /*****************************
  54. *JavaScript Love Heart Cursor*
  55. * (c)2013+ mf2fm web-design *
  56. * http://www.mf2fm.com/rv *
  57. * DON'T EDIT BELOW THIS BOX *
  58. *****************************/
  59. var x=ox=400;
  60. var y=oy=300;
  61. var swide=800;
  62. var shigh=600;
  63. var sleft=sdown=0;
  64. var herz=new Array();
  65. var herzx=new Array();
  66. var herzy=new Array();
  67. var herzs=new Array();
  68. var kiss=false;
  69.  
  70. if (typeof('addRVLoadEvent')!='function') function addRVLoadEvent(funky) {
  71. var oldonload=window.onload;
  72. if (typeof(oldonload)!='function') window.onload=funky;
  73. else window.onload=function() {
  74. if (oldonload) oldonload();
  75. funky();
  76. }
  77. }
  78.  
  79. addRVLoadEvent(mwah);
  80.  
  81. function mwah() { if (document.getElementById) {
  82. var i, heart;
  83. for (i=0; i<stars; i++) {
  84. heart=createDiv("auto", "auto");
  85. heart.style.visibility="hidden";
  86. heart.style.zIndex=(over_or_under=="over")?"1001":"0";
  87. heart.style.color=colours[i%colours.length];
  88. heart.style.pointerEvents="none";
  89. if (navigator.appName=="Microsoft Internet Explorer") heart.style.filter="alpha(opacity=75)";
  90. else heart.style.opacity=0.75;
  91. heart.appendChild(document.createTextNode(String.fromCharCode(9733)));
  92. document.body.appendChild(heart);
  93. herz[i]=heart;
  94. herzy[i]=false;
  95. }
  96. set_scroll();
  97. set_width();
  98. herzle();
  99. }}
  100.  
  101. function herzle() {
  102. var c;
  103. if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
  104. ox=x;
  105. oy=y;
  106. for (c=0; c<stars; c++) if (herzy[c]===false) {
  107. herz[c].firstChild.nodeValue=String.fromCharCode(9733);
  108. herz[c].style.left=(herzx[c]=x-minisize/2)+"px";
  109. herz[c].style.top=(herzy[c]=y-minisize)+"px";
  110. herz[c].style.fontSize=minisize+"px";
  111. herz[c].style.fontWeight='normal';
  112. herz[c].style.visibility='visible';
  113. herzs[c]=minisize;
  114. break;
  115. }
  116. }
  117. for (c=0; c<stars; c++) if (herzy[c]!==false) blow_me_a_kiss(c);
  118. setTimeout("herzle()", 40);
  119. }
  120.  
  121. document.onmousedown=pucker;
  122. document.onmouseup=function(){clearTimeout(kiss);};
  123.  
  124. function pucker() {
  125. ox=-1;
  126. oy=-1;
  127. kiss=setTimeout('pucker()', 100);
  128. }
  129.  
  130. function blow_me_a_kiss(i) {
  131. herzy[i]-=herzs[i]/minisize+i%2;
  132. herzx[i]+=(i%5-2)/5;
  133. if (herzy[i]<sdown-herzs[i] || herzx[i]<sleft-herzs[i] || herzx[i]>sleft+swide-herzs[i]) {
  134. herz[i].style.visibility="hidden";
  135. herzy[i]=false;
  136. }
  137. else if (herzs[i]>minisize+2 && Math.random()<.5/stars) break_my_heart(i);
  138. else {
  139. if (Math.random()<maxisize/herzy[i] && herzs[i]<maxisize) herz[i].style.fontSize=(++herzs[i])+"px";
  140. herz[i].style.top=herzy[i]+"px";
  141. herz[i].style.left=herzx[i]+"px";
  142. }
  143. }
  144.  
  145. function break_my_heart(i) {
  146. var t;
  147. herz[i].firstChild.nodeValue=String.fromCharCode(9676);
  148. herz[i].style.fontWeight='bold';
  149. herzy[i]=false;
  150. for (t=herzs[i]; t<=maxisize; t++) setTimeout('herz['+i+'].style.fontSize="'+t+'px"', 60*(t-herzs[i]));
  151. setTimeout('herz['+i+'].style.visibility="hidden";', 60*(t-herzs[i]));
  152. }
  153.  
  154. document.onmousemove=mouse;
  155. function mouse(e) {
  156. if (e) {
  157. y=e.pageY;
  158. x=e.pageX;
  159. }
  160. else {
  161. set_scroll();
  162. y=event.y+sdown;
  163. x=event.x+sleft;
  164. }
  165. }
  166.  
  167. window.onresize=set_width;
  168. function set_width() {
  169. var sw_min=999999;
  170. var sh_min=999999;
  171. if (document.documentElement && document.documentElement.clientWidth) {
  172. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  173. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  174. }
  175. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  176. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  177. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  178. }
  179. if (document.body.clientWidth) {
  180. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  181. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  182. }
  183. if (sw_min==999999 || sh_min==999999) {
  184. sw_min=800;
  185. sh_min=600;
  186. }
  187. swide=sw_min;
  188. shigh=sh_min;
  189. }
  190.  
  191. window.onscroll=set_scroll;
  192. function set_scroll() {
  193. if (typeof(self.pageYOffset)=='number') {
  194. sdown=self.pageYOffset;
  195. sleft=self.pageXOffset;
  196. }
  197. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  198. sdown=document.body.scrollTop;
  199. sleft=document.body.scrollLeft;
  200. }
  201. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  202. sleft=document.documentElement.scrollLeft;
  203. sdown=document.documentElement.scrollTop;
  204. }
  205. else {
  206. sdown=0;
  207. sleft=0;
  208. }
  209. }
  210.  
  211. function createDiv(height, width) {
  212. var div=document.createElement("div");
  213. div.style.position="absolute";
  214. div.style.height=height;
  215. div.style.width=width;
  216. div.style.overflow="hidden";
  217. div.style.backgroundColor="transparent";
  218. return (div);
  219. }
  220. // ]]>
  221. </script>
  222.  
  223. --- TOP / MAIN CONTAINER ---
  224. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  225. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  226.  
  227. --- NAVIGATION TEXT ---
  228. text-shadow: -1px 0 #808080, 0 1px #808080, 1px 0 #808080, 0 -1px #808080;
  229.  
  230. --- NAVIGATION TEXT UNDERLINE ---
  231. text-decoration: none;
  232. box-shadow: inset 0 -0.5em 0 0 #FFDBEC;
  233.  
  234. -NAVIGATION BUTTONS ---
  235. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  236. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  237. padding: 10px;
  238.  
  239. --- HOME / ABOUT ME / RULES CONTAINER ---
  240. width: 14em;
  241. height: 18em;
  242. border: 1px solid #CCCCCC;
  243. border-radius: 15px;
  244. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(66,66,66,0.376);
  245. background: radial-gradient(circle, rgba(255,255,255,1) 37%, rgba(255,214,233,1) 100%);
  246. position: absolute;
  247. top: -19em;
  248. right: 1em;
  249. z-index: 100;
  250.  
  251. --- DOLLBAHI / ABOUT ME / RULES TEXT ---
  252. font-family: Chemre;
  253. font-weight: bolder;
  254. background-image: linear-gradient(#ffdbec 20%, #000000 100%);
  255. -webkit-background-clip: text;
  256. -webkit-text-fill-color: transparent;
  257. -webkit-filter: drop-shadow(0px 0px 2px rgba(255, 255, 255,1));
  258.  
  259. --- BAHIYYIH IMG ---
  260. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  261. position: absolute;
  262. left: 3.625em;
  263. top: -0.5em;
  264.  
  265. --- WELCOME TEXT ---
  266. padding: 0.9em;
  267. border-radius: 10px;
  268. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%);
  269. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  270. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  271. position: relative;
  272. top: 2em;
  273. z-index: -1;
  274.  
  275. --- SLIDESHOW ---
  276. border: 1px solid #A1A1A1;
  277. border-radius: 10px;
  278.  
  279. --- ABOUT INFO TEXT ---
  280. width: 12em;
  281. height: 7em;
  282. padding: 0.9em;
  283. border-radius: 10px;
  284. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%);
  285. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  286. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  287. overflow-y: scroll;
  288.  
  289. --- ABOUT INFO UNDERLINE ---
  290. color: white;
  291. font-family: "Pixelify Sans";
  292. font-size: 1.25em;
  293. text-decoration: none;
  294. text-shadow: -1px 0 #808080, 0 1px #808080, 1px 0 #808080, 0 -1px #808080;
  295. box-shadow: inset 0 -0.5em 0 0 #FFDBEC;
  296.  
  297. --- ABOUT INFO HIGHLIGHT ---
  298. font-family: "Pixelify Sans";
  299. text-shadow: -1px 0 #808080, 0 1px #808080, 1px 0 #808080, 0 -1px #808080, 0 0;
  300.  
  301. --- BYF / DFI TEXT ---
  302. padding: 0.5em;
  303. border-radius: 10px 10px 0 0;
  304. background: #EEEEEE;
  305. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  306. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  307.  
  308. --- BYF / DFI UNDERLINE ---
  309. text-decoration: none;
  310. box-shadow: inset 0 -0.5em 0 0 #FFDBEC;
  311.  
  312. --- LIST 1 & LIST 2 ---
  313. padding: 0.9em;
  314. border-radius: 0px 0px 10px 10px;
  315. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%);
  316. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  317. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  318.  
  319. --- LOVEZONE / NOTES BACKGROUND CONTAINER ---
  320. width: 79em;
  321. height: 22em;
  322. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  323. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  324.  
  325. --- DOTTED CONTAINER ---
  326. width: 25em;
  327. height: 20em;
  328. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  329. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  330. position: absolute;
  331. left: 1em;
  332. top: -21em;
  333.  
  334. --- MY STANLIST TEXT ---
  335. padding: 0.375em;
  336. border-radius: 10px 10px 0 0;
  337. background: #fec5e5;
  338. text-shadow: -1px 0 #808080, 0 1px #808080, 1px 0 #808080, 0 -1px #808080;
  339. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  340. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  341.  
  342. --- STANLIST INFO TEXT ---
  343. height: 13em;
  344. padding: 0.75em;
  345. border-radius: 0px 0px 10px 10px;
  346. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%);
  347. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  348. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  349. overflow-y: scroll;
  350.  
  351. --- STANLIST INFO UNDERLINE ---
  352. color: white;
  353. font-family:"Pixelify Sans";
  354. font-size: 1.25em;
  355. text-decoration: none;
  356. box-shadow: inset 0 -0.5em 0 0 #FFDBEC;
  357. text-shadow: -1px 0 #808080, 0 1px #808080, 1px 0 #808080, 0 -1px #808080;
  358.  
  359. --- HOMEPAGE BUTTON ---
  360. padding: 10px;
  361. border-radius: 0px 0px 10px 10px;
  362. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  363. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  364. position: relative;
  365. top: 0.020em;
  366.  
  367. --- LOVEZONE TEXT ---
  368. border: 1px solid #CCCCCC;
  369. background: #FFDBEC;
  370. border-radius: 10px;box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  371. text-shadow: -1px 0 #808080, 0 1px #808080, 1px 0 #808080, 0 -1px #808080, 0 0;
  372.  
  373. --- LOVEZONE TEXT HIHGLIGHT ---
  374. color: white;
  375. background: none;
  376. animation: blinkingText .875s infinite;
  377. text-shadow: -1px 0 #808080, 0 1px #808080, 1px 0 #808080, 0 -1px #808080, 0 0;
  378.  
  379. --- DELUSIONAL YEONJUN TEXT ---
  380. height: 10em;
  381. padding: 0.75em;
  382. border-radius: 10px 10px 0px 0px;
  383. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%);
  384. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  385. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  386. overflow-y: scroll;
  387.  
  388. --- DELUSIONAL YEONJUN TEXT UNDERLINE ---
  389. color: white;
  390. font-family:"Pixelify Sans";
  391. font-size: 1.25em;
  392. text-decoration: none;
  393. box-shadow: inset 0 -0.5em 0 0 #FFDBEC;
  394. text-shadow: -1px 0 #808080, 0 1px #808080, 1px 0 #808080, 0 -1px #808080;
  395.  
  396. --- YEONJJUNIE TEXT ---
  397. padding: 0.5em;
  398. border: 1px solid #CCCCCC;
  399. border-radius: 0 0 10px 10px;
  400. background: #EEEEEE;
  401. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  402. text-shadow: -1px 0 #808080, 0 1px #808080, 1px 0 #808080, 0 -1px #808080;
  403.  
  404. --- NEXT PAGE TEXT ---
  405. padding: 0.125em;
  406. border: 1px solid #CCCCCC;
  407. border-radius: 10px;
  408. background: #FFDBEC;
  409. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  410. text-shadow: -1px 0 #808080, 0 1px #808080, 1px 0 #808080, 0 -1px #808080, 0 0;
  411.  
  412. --- PINK CONTAINER ---
  413. width: 25em;
  414. height: 20em;
  415. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  416. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  417. position: absolute;
  418. left: 1em;
  419. top: -21em;
  420.  
  421. --- EXTRA TEXT ---
  422. padding: 0.375em;
  423. border-radius: 10px 10px 0px 0px;
  424. background: #FEC5E5;
  425. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  426. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  427. text-shadow: -1px 0 #808080, 0 1px #808080, 1px 0 #808080, 0 -1px #808080;
  428.  
  429. --- NOTES TEXT ---
  430. height: 13em;
  431. padding: 0.75em;
  432. border-radius: 0px 0px 10px 10px;
  433. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%);
  434. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  435. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  436. overflow-y: scroll;
  437.  
  438. --- NOTES TEXT UNDERLINE ---
  439. color: white;
  440. font-family:"Pixelify Sans";
  441. font-size: 1.25em;
  442. text-decoration: none;
  443. box-shadow: inset 0 -0.5em 0 0 #FFDBEC;
  444. text-shadow: -1px 0 #808080, 0 1px #808080, 1px 0 #808080, 0 -1px #808080;
  445.  
  446. --- NOTES TEXT HIGHLIGHT ---
  447. padding-left: 0.5em;
  448. padding-right: 0.5em;
  449. border: 1px solid #CCCCCC;
  450. border-radius: 10px;
  451. background: #FFE0F1;
  452.  
  453. --- HOMEPAGE BUTTON ---
  454. padding: 10px;
  455. border-radius: 0px 0px 10px 10px;
  456. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  457. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  458. position: relative;
  459. top: 0.020em;
  460.  
  461. --- PREVIOUS BUTTON ---
  462. padding: 10px;
  463. border-radius: 10px 10px 0px 0px;
  464. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  465. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  466. position: relative;
  467. top: 0.020em;
  468.  
  469. --- EXTRA INFO TEXT ---
  470. height: 10em;
  471. padding: 0.75em;
  472. border-radius: 10px 10px 10px 10px;
  473. background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(238,238,238,1) 100%);
  474. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  475. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  476.  
  477. --- EXTRA INFO TEXT UNDERLINE ---
  478. color: white;
  479. font-family:"Pixelify Sans";
  480. font-size: 1.25em;
  481. text-decoration: none;
  482. box-shadow: inset 0 -0.5em 0 0 #FFDBEC;
  483. text-shadow: -1px 0 #808080, 0 1px #808080, 1px 0 #808080, 0 -1px #808080;
  484.  
  485. --- LINK BUTTONS ---
  486. box-shadow: inset 10px 0px 6px -10px rgba(66,66,66,0.565), inset -10px 0px 6px -10px rgba(66,66,66,0.565), inset 0px 10px 6px -10px #ffffff, inset 0px -10px 6px -10px rgba(255, 255, 255,0.76);
  487. text-shadow: -1px 0 #808080, 0 1px #808080, 1px 0 #808080, 0 -1px #808080;
  488. -webkit-filter: drop-shadow(0px 0px 1px #424242);
  489. position: relative;
  490. top: 0.020em;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement