Advertisement
wilderanima

π…πˆπ•π„

Apr 28th, 2024
1,331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.91 KB | Writing | 0 0
  1.      Hello, wildlings!
  2.  
  3.   A very simple placeholder code with a couple of images and a scrolling stat box.
  4.   Follow the dimensions of the images, otherwise, they 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. @import url('https://fonts.googleapis.com/css2?family=Galada&display=swap');
  14. @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
  15.  
  16. body {
  17. cursor: url(https://66.media.tumblr.com/232c090ebdd37ae4bc17adb54e1e0344/tumblr_inline_ol4nwhvSwg1uxxza6_1280.png), auto;
  18. background-color: #E8CBB2;
  19. }
  20.  
  21. ::-webkit-scrollbar {
  22. display: none;
  23. }
  24.  
  25. ::selection {
  26. background: ;
  27. color: white;
  28. }
  29.  
  30. a {
  31. color: #996232;
  32. }
  33.  
  34. a:hover {
  35. color: #77411B;
  36. }
  37.  
  38. .container {
  39. position: absolute;
  40. margin: auto;
  41. top: 0px;
  42. bottom: 0px;
  43. left: 0px;
  44. right: 0px;
  45. height: 500px;
  46. width: 500px;
  47. background-color: #E8CBB2;
  48.  
  49. }
  50.  
  51. .wilder {
  52. position: fixed;
  53. bottom: 0px;
  54. right: 10px;
  55. }
  56.  
  57. .image1 {
  58. position: fixed;
  59. margin: auto;
  60. top: 0px;
  61. bottom: 0px;
  62. left: 0px;
  63. right: 0px;
  64. height: 500px;
  65. width: 313px;
  66. background: url(https://placehold.co/313x500.png);
  67. background-size: 100%;
  68. border: 5px solid #E8CBB2;
  69. }
  70.  
  71. .image2 {
  72. position: fixed;
  73. margin: auto;
  74. top: 450px;
  75. bottom: 0px;
  76. left: 0px;
  77. right: 300px;
  78. height: 140px;
  79. width: 250px;
  80. background: url(https://placehold.co/250x140.png);
  81. background-size: 100%;
  82. border: 5px solid #E8CBB2;
  83. z-index: 1;
  84. }
  85.  
  86. .name {
  87. position: absolute;
  88. margin: auto;
  89. top: 25px;
  90. bottom: 0px;
  91. left: 250px;
  92. right: 0px;
  93. font-family: galada;
  94. font-size: 75px;
  95. font-weight: bold;
  96. letter-spacing: 3px;
  97. color: #181816;
  98. -webkit-text-stroke-width: 1px;
  99. -webkit-text-stroke-color: #181816;
  100. opacity: 0.9;
  101. }
  102.  
  103. .name2 {
  104. position: absolute;
  105. margin: auto;
  106. top: 100px;
  107. left: 350px;
  108. right: 0px;
  109. font-family: galada;
  110. font-size: 75px;
  111. font-weight: bold;
  112. letter-spacing: 3px;
  113. color: #181816;
  114. -webkit-text-stroke-width: 1px;
  115. -webkit-text-stroke-color: #181816;
  116. opacity: 0.9;
  117. }
  118.  
  119. .stats {
  120. position: absolute;
  121. top: 275px;
  122. left: -158px;
  123. height: 130px;
  124. width: 250px;
  125. overflow: auto;
  126. }
  127.  
  128. .stats li {
  129. display: block;
  130. background: #E8CBB2;
  131. padding: 5px;
  132. margin: 5px;
  133. font-family: poppins;
  134. color: #181816;
  135. font-size: 12px;
  136. font-weight: bold;
  137. text-align: right;
  138. border-radius: 5px 0px 0px;
  139. }
  140.  
  141. </style>
  142.  
  143. <!-- MUSIC PLAYER #02 by glenthemes
  144. ♬ glenthpvs.tumblr.com/player02 --->
  145. <script src="//cdn.jsdelivr.net/npm/jquery@latest/dist/jquery.min.js"></script>
  146. <link href="//fonts.googleapis.com/css?family=Readex+Pro" rel="stylesheet">
  147. <link href="//glenthemes.github.io/-music-/glenplayer02.css" rel="stylesheet">
  148. <script src="//glenthemes.github.io/-music-/glenplayer02.js"></script>
  149. <style element="glenplayer02">
  150. :root {
  151.    --MusicPlayer-Position:bottom left;
  152.    --MusicPlayer-Edge-Offset:10px;
  153.    
  154.    --MusicPlayer-Buttons-Size:15px;
  155.    --MusicPlayer-Buttons-Color:#181816;
  156.    --MusicPlayer-Buttons-Fill:yes;
  157. }
  158. </style>
  159.  
  160. <div glenplayer02>
  161. <div controls></div>
  162.    
  163. <i class="aa-line-icons" icon-name="music-2"></i>
  164.    
  165.    <!-- HOW TO CHANGE THE MUSIC -->
  166.    <!-- linktr.ee/direct_file_links -->
  167. <audio src="MUSIC_LINK" volume="100%"></audio>
  168.    
  169. </div><!--don't delete this line-->
  170. <!--end music player-->
  171.  
  172. <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>
  173.  
  174. <div class="container">
  175. <div class="image1"></div>
  176. <div class="image2"></div>
  177. <div class="name">FirstName</div>
  178. <div class="name2">LastName</div>
  179. <div class="stats">
  180. <li>it scrolls! add as many as you'd like.</li>
  181. <li><a>link</a> example!</li>
  182. <li>words</li>
  183. <li>words</li>
  184. </div>
  185.  
  186. </div>
Tags: RPC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement