Advertisement
wilderanima

πŽππ„

Apr 28th, 2024 (edited)
1,184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 4.87 KB | Writing | 0 0
  1.      Hello, wildlings!
  2.  
  3.   A very simple code with an image on the left and information on the right.
  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. @import url('https://fonts.googleapis.com/css2?family=Jersey+15&display=swap');
  14. @import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
  15.  
  16.  
  17. body {
  18. background: #000;
  19. }
  20.  
  21. ::-webkit-scrollbar {
  22. display: none;
  23. }
  24.  
  25. ::selection {
  26. background: ;
  27. color: white;
  28. }
  29.  
  30. a {
  31. text-decoration: none;
  32. color: #C2A490;
  33. }
  34.  
  35. a:hover {
  36. color: #6D5952;
  37. }
  38.  
  39. b {
  40. color: #B1BDC6;
  41. font-weight: bold;
  42. }
  43.  
  44. i {
  45. color: #C29F67;
  46. font-style: italic;
  47. }
  48.  
  49. .wilder {
  50. position: absolute;
  51. bottom: 0px;
  52. right: 10px;
  53. }
  54.  
  55. .container {
  56. position: fixed;
  57. height: 650px;
  58. width: 750px;
  59. background: #000;
  60. top: 50px;
  61. left: 50px;
  62. }
  63.  
  64. .img {
  65. position: absolute;
  66. height: 600px;
  67. width: 375px;
  68. top: 25px;
  69. left: 25px;
  70. background: url(https://placehold.co/375x600.png);
  71. background-size: 100%;
  72. border: 1px solid #647C8E;
  73. box-shadow: #647C8E 0px 0px 20px;
  74. }
  75.  
  76. .stats {
  77. position: absolute;
  78. height: 250px;
  79. width: 300px;
  80. background: #000;
  81. top: 25px;
  82. right: 25px;
  83. overflow: auto;
  84. }
  85.  
  86. .stats h1 {
  87. text-align: center;
  88. font: 20px 'libre baskerville';
  89. padding: 5px;
  90. padding-right: 15px;
  91. border-radius: 5px;
  92. color: #647C8E;
  93. font-weight: bold;
  94. letter-spacing: 0px;
  95. margin-top: 0;
  96. }
  97.  
  98. .stats li {
  99. display: block;
  100. background: #000;
  101. padding: 5px;
  102. margin: 5px;
  103. font: 12px 'libre baskerville';
  104. text-align: justify;
  105. color: #647C8E;
  106. font-weight: ;
  107. }
  108.  
  109. .hc {
  110. position: absolute;
  111. height: 265px;
  112. width: 300px;
  113. background: #000;
  114. bottom: 100px;
  115. right: 25px;
  116. overflow: auto;
  117. }
  118.  
  119. .hc h1 {
  120. text-align: center;
  121. font: 20px 'libre baskerville';
  122. padding: 5px;
  123. padding-right: 15px;
  124. border-radius: 5px;
  125. color: #647C8E;
  126. font-weight: bold;
  127. letter-spacing: 0px;
  128. margin-top: 0;
  129. }
  130.  
  131. .hc li {
  132. display: block;
  133. background: #000;
  134. padding: 5px;
  135. margin: 5px;
  136. font: 12px 'libre baskerville';
  137. text-align: justify;
  138. color: #647C8E;
  139. font-weight: ;
  140. }
  141.  
  142. .cons {
  143. position: absolute;
  144. height: 55px;
  145. width: 300px;
  146. background: #000;
  147. bottom: 35px;
  148. right: 25px;
  149. overflow: auto;
  150. }
  151.  
  152. .contact {
  153. width: 35px;
  154. height: 35px;
  155. border: 1px solid #647C8E;
  156. display: inline-block;
  157. transition: all 500ms linear;
  158. object-fit: cover;
  159. margin: 5px;
  160. margin-bottom: 8px;
  161. padding:4px;
  162. background: transparent;
  163. overflow:; }
  164.  
  165. .contact img {
  166. width: 35px;
  167. height: 35px;
  168. transition: all 500ms linear;
  169. -webkit-filter: grayscale(100%);
  170. /* Safari 6.0 - 9.0 */
  171. filter: grayscale(100%);
  172. opacity: 1; }
  173.  
  174.  
  175. </style>
  176.  
  177. <!--
  178. MUSIC PLAYER #02 by glenthemes
  179. ♬ glenthpvs.tumblr.com/player02
  180. --->
  181. <script src="//cdn.jsdelivr.net/npm/jquery@latest/dist/jquery.min.js"></script>
  182. <link href="//fonts.googleapis.com/css?family=Readex+Pro" rel="stylesheet">
  183. <link href="//glenthemes.github.io/-music-/glenplayer02.css" rel="stylesheet">
  184. <script src="//glenthemes.github.io/-music-/glenplayer02.js"></script>
  185. <style element="glenplayer02">
  186. :root {
  187. --MusicPlayer-Position:bottom left;
  188. --MusicPlayer-Edge-Offset:18px;
  189.  
  190. --MusicPlayer-Buttons-Size:14px;
  191. --MusicPlayer-Buttons-Color:#647C8E;
  192. --MusicPlayer-Buttons-Fill:yes;
  193.  
  194. }
  195. </style>
  196.  
  197. <div glenplayer02>
  198. <div controls></div>
  199.  
  200. <i class="aa-line-icons" icon-name="music-2"></i>
  201.  
  202. <!-- HOW TO CHANGE THE MUSIC -->
  203. <!-- linktr.ee/direct_file_links -->
  204. <audio src="MUSIC_LINK" volume="100%"></audio>
  205.  
  206. </div>
  207. <!--don't delete this line-->
  208. <!--end music player-->
  209.  
  210. <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>
  211.  
  212. <div class="container">
  213. <div class="img"></div>
  214.  
  215. <div class="stats">
  216. <h1>DOSSIER</h1>
  217.  
  218. <li>It scrolls! Add as many as you'd like.</li>
  219. <li>words</li>
  220. <li>words</li>
  221. <li>words</li>
  222. <li>words</li>
  223. <li>words</li>
  224. <li>words</li>
  225. <li>words</li>
  226. </div>
  227.  
  228. <div class="hc">
  229. <h1>HEADCANONS</h1>
  230.  
  231. <li>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</li>
  232. <li>It scrolls! Add as many as you'd like.</li>
  233. <li>words</li>
  234. <li>words</li>
  235. <li>words</li>
  236. <li><b>bold</b> <i>italic</i> <u>underline</u> <a target="_blank" href="LINK">link</a></li>
  237. </div>
  238.  
  239. <div class="cons">
  240.  
  241. <!-- it scrolls, add as many as you'd like! -->
  242.  
  243. <a target="_blank" href="LINK" 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="LINK" title="Name." >
  249. <div class="contact">
  250. <img class="contact-img" src="https://placehold.co/50x50.png">
  251. </div> </a>
  252. </div>
  253.  
  254. </div>
Tags: RPC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement