Advertisement
wilderanima

π’πˆπ—

Apr 30th, 2024
887
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.84 KB | Writing | 0 0
  1.      Hello, wildlings!
  2.  
  3.   A straightforward placeholder code with a couple of images and a scrolling blurb 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.  
  14. @import url('https://fonts.googleapis.com/css2?family=Walter+Turncoat&display=swap');
  15. @import url('https://fonts.googleapis.com/css2?family=Economica:ital,wght@0,400;0,700;1,400;1,700&display=swap');
  16.  
  17. body {
  18. cursor: url(https://66.media.tumblr.com/232c090ebdd37ae4bc17adb54e1e0344/tumblr_inline_ol4nwhvSwg1uxxza6_1280.png), auto;
  19. background-color: #1b2a09; }
  20.  
  21. ::-webkit-scrollbar {
  22. display: none;}
  23.  
  24. ::selection {
  25. background: ;
  26. color: white;}
  27.  
  28. a {
  29. text-decoration: none;
  30. color: #a6c1bc;
  31. }
  32.  
  33. a:hover {
  34. color: #e5cfa2;
  35. }
  36.  
  37. .wilder {
  38. position: fixed;
  39. bottom: 0px;
  40. right: 0px; }
  41.  
  42. .container {
  43. position: absolute;
  44. margin: auto;
  45. top: 0px;
  46. bottom: 0px;
  47. left: 0px;
  48. right: 0px;
  49. height: 550px;
  50. width: 550px;
  51. background-color: #738859;
  52. border-radius: 10px; }
  53.  
  54. .image1 {
  55. position: absolute;
  56. margin: auto;
  57. top: 25px;
  58. bottom: 0px;
  59. left: 0px;
  60. right: 0px;
  61. height: 338px;
  62. width: 450px;
  63. background: url(https://placehold.co/450x338.png);
  64. background-size: cover;
  65. border: 5px solid #1b2a09;
  66. filter: grayscale(0%);
  67. border-radius: 10px; }
  68.  
  69. .image2 {
  70. position: absolute;
  71. bottom: 25px;
  72. left: -150px;
  73. right: 0px;
  74. height: 150px;
  75. width: 268px;
  76. background: url(https://placehold.co/268x150.png); <!--bottom-->
  77. background-size: cover;
  78. border: 5px solid #738859;
  79. filter: grayscale(0%);
  80. border-radius: 10px; }
  81.  
  82. .image3 {
  83. position: absolute;
  84. top: 25px;
  85. right: -150px;
  86. height: 150px;
  87. width: 268px;
  88. background: url(https://placehold.co/268x150.png); <!--top-->
  89. background-size: cover;
  90. border: 5px solid #738859;
  91. filter: grayscale(0%);
  92. border-radius: 10px; }
  93.  
  94. .name {
  95. position: absolute;
  96. top: 50px;
  97. left: 60px;
  98. font-family: walter turncoat;
  99. font-size: 50px;
  100. color: #1b2a09;
  101. }
  102.  
  103. .blurb {
  104. position: absolute;
  105. bottom: -50px;
  106. right: -75px;
  107. height: 195px;
  108. width: 240px;
  109. background: rgba(177, 163, 110, 0.3);
  110. backdrop-filter: blur(7.0px);
  111. -webkit-backdrop-filter: blur(7.0px);
  112. mix-blend-mode: overlay;
  113. border-radius: 10px 10px; }
  114.  
  115. .blin {
  116. position: absolute;
  117. bottom: -40px;
  118. right: -65px;
  119. height: 160px;
  120. width: 200px;
  121. padding: 8px;
  122. background: rgba(13, 13, 13, 0.4);
  123. backdrop-filter: blur(7.0px);
  124. -webkit-backdrop-filter: blur(7.0px);
  125. border-radius: 10px 10px;
  126. color: #fff;
  127. font: 13px economica;
  128. text-align: right;
  129. overflow: auto; }
  130.  
  131. .blin b {
  132. font: 16px walter turncoat;
  133. color: #CFC06A;
  134. mix-blend-mode: overlay;
  135. }
  136. .blin i {
  137. font: 14px economica;
  138. font-style: italic;
  139. }
  140. .blin p {
  141. margin: 5px;
  142. padding: 5px;
  143. outline: 1px solid #9A9B8C;
  144. text-align: justify;
  145. }
  146.  
  147. .cons {
  148. position: absolute;
  149. bottom: 25px;
  150. left: 140px;
  151. height: 55px;
  152. width: 240px;
  153. background: #738859;
  154. border: 1px solid #738859;
  155. padding: 0px;
  156. overflow: auto;
  157. }
  158.  
  159. .contact {
  160. width: 35px;
  161. height: 35px;
  162. border: 1px solid #1b2a09;
  163. display: inline-block;
  164. transition: all 500ms linear;
  165. object-fit: cover;
  166. margin: 5px;
  167. margin-bottom: 8px;
  168. padding: 4px;
  169. background: transparent;
  170. overflow:; }
  171.  
  172. .contact img {
  173. width: 35px;
  174. height: 35px;
  175. transition: all 500ms linear;
  176. -webkit-filter: grayscale(0%);
  177. /* Safari 6.0 - 9.0 */
  178. filter: grayscale(0%);
  179. opacity: 1; }
  180.  
  181. </style>
  182.  
  183. <!--
  184. MUSIC PLAYER #02 by glenthemes
  185. ♬ glenthpvs.tumblr.com/player02
  186. --->
  187. <script src="//cdn.jsdelivr.net/npm/jquery@latest/dist/jquery.min.js"></script>
  188. <link href="//fonts.googleapis.com/css?family=Readex+Pro" rel="stylesheet">
  189. <link href="//glenthemes.github.io/-music-/glenplayer02.css" rel="stylesheet">
  190. <script src="//glenthemes.github.io/-music-/glenplayer02.js"></script>
  191. <style element="glenplayer02">
  192. :root {
  193. --MusicPlayer-Position:bottom left;
  194. --MusicPlayer-Edge-Offset:15px;
  195.  
  196. --MusicPlayer-Buttons-Size:15px;
  197. --MusicPlayer-Buttons-Color:#738859;
  198. --MusicPlayer-Buttons-Fill:yes;
  199.  
  200. }
  201. </style>
  202.  
  203. <div glenplayer02>
  204. <div controls></div>
  205. <i class="aa-line-icons" icon-name="music-2"></i>
  206. <audio src="MUSIC_LINK" volume="100%"></audio>
  207. </div>
  208.  
  209. <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>
  210.  
  211. <div class="container">
  212. <div class="image1"></div>
  213. <div class="image2"></div>
  214. <div class="image3"></div>
  215. <div class="name">Name Name</div>
  216.  
  217. <div class="blurb"></div>
  218. <div class="blin">
  219. <p>put whatever you want in here!</p>
  220. <p>put whatever you want in here!</p>
  221. <p>put whatever you want in here!</p>
  222. <p>put whatever you want in here!</p>
  223. <p><b>bold</b> <i>italic</i> <a>link</a></p> <br>
  224.  
  225. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. <br><br>
  226.  
  227. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. <br><br>
  228.  
  229. </div>
  230.  
  231. <div class="cons">
  232.  
  233. <a target="_blank" href="https://roleplay.chat/profile.php?user=" title="Name." >
  234. <div class="contact">
  235. <img class="contact-img" src="https://placehold.co/50x50.png">
  236. </div> </a>
  237.  
  238. <a target="_blank" href="https://roleplay.chat/profile.php?user=" title="Name." >
  239. <div class="contact">
  240. <img class="contact-img" src="https://placehold.co/50x50.png">
  241. </div> </a>
  242.  
  243. <a target="_blank" href="https://roleplay.chat/profile.php?user=" title="Name." >
  244. <div class="contact">
  245. <img class="contact-img" src="https://placehold.co/50x50.png">
  246. </div> </a>
  247.  
  248. <a target="_blank" href="https://roleplay.chat/profile.php?user=" title="Name." >
  249. <div class="contact">
  250. <img class="contact-img" src="https://placehold.co/50x50.png">
  251. </div> </a>
  252.  
  253. </div>
  254.  
  255. </div>
Tags: RPC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement