Advertisement
ukamori

pink xaiotng crd tut codes

Aug 13th, 2022 (edited)
797
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.17 KB | None | 0 0
  1. <!--- CSS FOR ELEMENTS --->
  2. <style>
  3. @font-face {
  4. font-family:'yipes';
  5. src: url(https://dl.dropbox.com/s/qrdm3wived8sm66/Yipes.ttf);
  6. }
  7.  
  8. @font-face {
  9. font-family: 'manuscribe';
  10. src: url(https://dl.dropbox.com/s/o6x6hslh0vo6crd/Manuscribe-Regular.ttf);
  11. }
  12.  
  13. #image01 {
  14. -webkit-mask-image: url(https://i.imgur.com/HQ8caZ1.png);
  15. -webkit-mask-size: 90%;
  16. -webkit-mask-repeat: no-repeat;
  17. -webkit-mask-position: center;
  18. }
  19.  
  20. #image01 img:hover {
  21. webkit-filter: blur(2px);
  22. filter: blur(2px);
  23. transition: 0.5s;
  24. }
  25.  
  26. #text01 {
  27. background: #ffa6d6;
  28. border-radius: 0.5em 0.5em 0em 0em;
  29. font-family: 'manuscribe';
  30. padding-bottom: 4px;
  31. }
  32.  
  33. #text02 {
  34. border: 1px solid #ffa6d6;
  35. border-radius: 0em 0em 0.5em 0.5em;
  36. background: white;
  37. padding: 2px;
  38. }
  39.  
  40. #text03 {
  41. position: relative;
  42. top: 0.25em;
  43. z-index: 99;
  44. font-family:'yipes';
  45. }
  46. </style>
  47.  
  48.  
  49.  
  50. <!--- HORIZONTAL SCROLLBOX -->
  51. <link rel="preconnect" href="https://fonts.googleapis.com">
  52. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  53. <link href="https://fonts.googleapis.com/css2?family=Questrial&display=swap" rel="stylesheet">
  54.  
  55. <style>
  56. @font-face {
  57. font-family: 'manuscribe';
  58. src: url(https://dl.dropbox.com/s/o6x6hslh0vo6crd/Manuscribe-Regular.ttf);
  59. }
  60.  
  61. #hoohoo {
  62. width: 100%;
  63. white-space: nowrap;
  64. overflow-x: auto;
  65. box-sizing: border-box;
  66. overflow-y: hidden;
  67. }
  68.  
  69. .lala {
  70. width: 16.35em;
  71. border: 1px solid #ffbbe0;
  72. white-space: normal;
  73. display: inline-block;
  74. margin-right: 8px;
  75. height: 16em;
  76. font-size: 0.875em;
  77. padding: 8px;
  78. vertical-align: middle;
  79. border-radius: 0.5em;
  80. overflow-y: scroll;
  81. font-family: 'Questrial', sans-serif;
  82. background: white;
  83. text-align: left;
  84. }
  85.  
  86. </style>
  87.  
  88. <div id="hoohoo">
  89. <div class="lala">
  90. <span style="font-family:'manuscribe'; font-size: 1.75em; font-weight: bold; color:#ff9cd1;">About Me</span> <br>
  91. text text text text text text text text text text text text text text text text text text text text text text text text text text text text
  92. <br></br>
  93. <span style="font-family:'manuscribe'; font-size: 1.75em; font-weight: bold; color:#ff9cd1;">My Print</span> <br> text text text text text text text text text text text text text text text text text text text text text text text text text text text text
  94. <br></br>
  95. <span style="font-family:'manuscribe'; font-size: 1.75em; font-weight: bold; color:#ff9cd1;">Music</span> <br> text text text text text text text text text text text text text text text text text text text text text text text text text text text text
  96. </div>
  97.  
  98. <div class="lala">
  99. <span style="font-family:'manuscribe'; font-size: 1.75em; font-weight: bold; color:#ff9cd1;">To Know</span> <br>
  100. text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text
  101. <br></br>
  102. <span style="font-family:'manuscribe'; font-size: 1.75em; font-weight: bold; color:#ff9cd1;">Go Away</span> <br> text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text
  103. </div>
  104.  
  105. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement