Advertisement
ruesha

codes for tapioca crd

Feb 24th, 2022
1,146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. <note:> NOT EVERY CODE IS LISTED BECAUSE THERE ARE SO MANY PLEASE REFER TO THE VIDEO FOR BASIC CODES SUCH AS TEXT BACKGROUNDS, ETC!! if i put all the codes for every element, this pastebin would be so long and complicated so i am condensing it to the codes that would be hard to copy from the tutorial; hope this is still helpful!
  2.  
  3. ---- all the fonts ----
  4. <style>
  5. @font-face {
  6. font-family: retro;
  7. src: url(https://dl.dropbox.com/s/b94su663w08qcm3/Retro%20Gaming.ttf?dl=0);
  8. }
  9.  
  10. @font-face {
  11. font-family:'heart';
  12. src: url(https://dl.dropbox.com/s/3obmncth4fhmduq/HEARRG__.TTF);}
  13.  
  14. @font-face {
  15. font-family: pixel;
  16. src: url(https://dl.dropbox.com/s/kmhe7d3n18vdz5e/w95fa.woff?dl=0);
  17. }
  18.  
  19. @font-face {
  20. font-family: emoji;
  21. src: url(https://dl.dropbox.com/s/cvba4kh6qm23mru/EmojiFont.ttf);
  22. }
  23.  
  24. @font-face {
  25. font-family:'ROMANTIC';
  26. src: url(https://dl.dropbox.com/s/xggwcxb6mlf6pwq/ROMANTIC.TTF);
  27. }
  28.  
  29. </style>
  30.  
  31. ---- 'style' embed ----
  32. <style>
  33. ::-webkit-scrollbar {
  34. width: 16px;
  35. height: 10px;
  36. }
  37.  
  38. ::-webkit-scrollbar-thumb {
  39. background-color: #fff;
  40. background-image: url(https://i.imgur.com/Qtm9Z60.png);
  41. border-top: 1px solid #bdbdbd;
  42. border-left: 1px solid #bdbdbd;
  43. border-right: 1px solid black;
  44. border-bottom: 1px solid black;
  45. }
  46.  
  47. ::-webkit-scrollbar-track {
  48. background-color: #fff;
  49. background-image: url(https://i.imgur.com/IGXGYKz.png);
  50. }
  51.  
  52. ::-webkit-scrollbar-button:vertical:increment {
  53. background-image: url(https://i.imgur.com/WhC8iy3.png);
  54. width: 14px;
  55. height: 16px;
  56. border-top: 1px solid #bdbdbd;
  57. border-left: 1px solid #bdbdbd;
  58. border-right: 1px solid black;
  59. border-bottom: 1px solid black;
  60. }
  61.  
  62. ::-webkit-scrollbar-button:vertical:decrement {
  63. background-image: url(https://i.imgur.com/fQ18mrR.png);
  64. border-top: 1px solid #bdbdbd;
  65. border-left: 1px solid #bdbdbd;
  66. border-right: 1px solid black;
  67. border-bottom: 1px solid black;
  68. width: 14px;
  69. height: 16px;
  70. }
  71. </style>
  72.  
  73. ---- spiral gradient for container ----
  74. background: radial-gradient(circle, #E8F3FF 56%, #E3E0FF 100%);
  75.  
  76. ---- headers such as 'about' or 'my faves!' ----
  77. font-family: ROMANTIC;
  78. background:linear-gradient(to top, #E8F3FF 2%, #A4ADDE 100%);
  79. -webkit-background-clip: text;
  80. -webkit-text-fill-color: transparent;
  81. -webkit-text-stroke: 0.5px #96A7FF;
  82.  
  83. ---- webkit text stroke for the 'girls.web' & links to each section ----
  84. -webkit-text-stroke: 0.5px #000;
  85.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement