Advertisement
wilderanima

𝐓𝐇𝐑𝐄𝐄

Apr 28th, 2024 (edited)
1,208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.14 KB | Writing | 0 0
  1.      Hello, wildlings!
  2.  
  3.   A very simple placeholder code with an image and scrolling stats.
  4.   Follow the dimensions of the image, otherwise, it won't fit properly.
  5.  Feel free to change colors!
  6.  
  7.  Please do not steal this code.
  8.  Leave the credit! <3 Happy Writing!
  9.  
  10. β€” β€” β€” β€” β€” β€” β€” β€” β€” β€” β€” β€” β€” β€”
  11.  
  12. <style>
  13.  
  14. @import url('https://fonts.googleapis.com/css2?family=Sedgwick+Ave+Display&display=swap');
  15. @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
  16.  
  17. body {
  18. cursor: url(https://66.media.tumblr.com/232c090ebdd37ae4bc17adb54e1e0344/tumblr_inline_ol4nwhvSwg1uxxza6_1280.png), auto;
  19. background-color: #000;
  20. }
  21.  
  22. ::-webkit-scrollbar {
  23. display: none;
  24. }
  25.  
  26. ::selection {
  27. background: ;
  28. color: white;
  29. }
  30.  
  31. .wilder {
  32. position: fixed;
  33. bottom: 0px;
  34. right: 0px;
  35. }
  36.  
  37. .container {
  38. position: absolute;
  39. margin: auto;
  40. top: 0px;
  41. bottom: 0px;
  42. left: 0px;
  43. right: 0px;
  44. height: 650px;
  45. width: 650px;
  46. background-color: #000;
  47. }
  48.  
  49. .mainimg {
  50. position: absolute;
  51. margin: auto;
  52. height: 380px;
  53. width: 540px;
  54. top: -200px;
  55. bottom: 0px;
  56. left: 0px;
  57. right: 0px;
  58. background: url(https://placehold.co/540x380.png);
  59. background-size: cover;
  60. border: 1px solid #000;
  61. border-radius: 5px 5px 5px 5px;
  62. box-shadow: #7C3C2E 0px 0px 20px;
  63. }
  64.  
  65. .name {
  66. position: absolute;
  67. font-family: 'sedgwick ave display';
  68. font-size: 50px;
  69. font-style: italic;
  70. margin-top: 0px;
  71. margin-bottom: 0px;
  72. left: 200px;
  73. top: 375px;
  74. text-shadow: 2px 2px 2px #7C3C2E;
  75. color: #EEEDEE;
  76. letter-spacing: -1px;
  77. z-index: 1;
  78. }
  79.  
  80. .stats {
  81. position: absolute;
  82. bottom: 100px;
  83. right: 75px;
  84. height: 125px;
  85. width: 250px;
  86. overflow: auto;
  87. }
  88.  
  89. .stats li {
  90. display: block;
  91. background: transparent;
  92. padding: 5px;
  93. margin: 5px;
  94. mix-blend-mode: plus-lighter;
  95. font: 12px open sans;
  96. color: #EEEDEE;
  97. text-shadow: 2px 2px 2px #7C3C2E;
  98. font-weight: bold;
  99. text-align: right;
  100. border-radius: 0px 5px 5px;
  101. }
  102.  
  103. </style>
  104.  
  105. <!--
  106. MUSIC PLAYER #02 by glenthemes
  107. ♬ glenthpvs.tumblr.com/player02
  108. --->
  109. <script src="//cdn.jsdelivr.net/npm/jquery@latest/dist/jquery.min.js"></script>
  110. <link href="//fonts.googleapis.com/css?family=Readex+Pro" rel="stylesheet">
  111. <link href="//glenthemes.github.io/-music-/glenplayer02.css" rel="stylesheet">
  112. <script src="//glenthemes.github.io/-music-/glenplayer02.js"></script>
  113. <style element="glenplayer02">
  114. :root {
  115. --MusicPlayer-Position:bottom left;
  116. --MusicPlayer-Edge-Offset:15px;
  117.  
  118. --MusicPlayer-Buttons-Size:14px;
  119. --MusicPlayer-Buttons-Color:#7C3C2E;
  120. --MusicPlayer-Buttons-Fill:yes;
  121.  
  122. }
  123. </style>
  124.  
  125. <div glenplayer02>
  126. <div controls></div>
  127. <i class="aa-line-icons" icon-name="music-2"></i>
  128. <audio src="MUSIC_LINK" volume="100%"></audio>
  129. </div>
  130.  
  131. <div class="wilder"><a target="_blank" href="https://pastebin.com/u/wilderanima" title="code by wilder."><img src="https://i.imgur.com/hCJmFVu.png" width="75px;"></a></div>
  132.  
  133. <div class="container">
  134. <div class="mainimg"></div>
  135. <div class="name">firstname lastname</div>
  136. <div class="stats">
  137. <li>it scrolls! add as many as you'd like.</li>
  138. <li>words</li>
  139. <li>words</li>
  140. <li>words</li>
  141. <li>words</li>
  142. </div>
  143. </div>
Tags: RPC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement