axel-exe

unfinished spacehey layout code that seemed to go against the site rules on only mobile... waaah X(

Oct 1st, 2024
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.27 KB | None | 0 0
  1. <img src="https://64.media.tumblr.com/556d830156e1994072d131a1a6ef4349/038b5d1fbc72f290-03/s400x600/e851ba13cbeaad31b66ff2aac9e394892b3c0718.gifv" style="width: 100%"/>
  2. <img src="https://64.media.tumblr.com/c29bec9aa18c04468743315eb0a3aa32/881cfe786d0e4504-04/s400x600/f3d8ffb798dc3a43715bc62d91c76576434a92b6.gifv" style="width: 100%"/>
  3.  
  4. <!--OTHER ELEMENTS DOWN HERE-->
  5. <div class="music">
  6. <iframe width="220" height="190" src="https://www.youtube.com/embed///RTzGvGDU2kk?si=YuvMTLEJAp2oNgyr//?&;amp;;autoplay=1&;loop=1&;controls=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" loading="lazy">
  7. </iframe>
  8. </div>
  9.  
  10.  
  11. <style>
  12.  
  13. @import url('https://fonts.googleapis.com/css2?family=DotGothic16&family=Tiny5&display=swap');
  14.  
  15. p, ul, li {
  16. font-family: dotgothic16;
  17. font-size: 13px;
  18. }
  19.  
  20. h1, h2, h3, h4, h5, h6 {
  21. font-family: tiny5;
  22. }
  23.  
  24. body {
  25. background: url(https://i.pinimg.com/564x/63/68/d3/6368d3187a2573f278e47b21c0b11b01.jpg);
  26. background-size: cover;
  27. background-position: center;
  28. background-attachment: fixed;
  29. }
  30.  
  31. main {
  32. background: #431ba09c;
  33. }
  34.  
  35. nav {
  36. position: relative;
  37. }
  38.  
  39. nav > .links {
  40. position: absolute;
  41. left: -230px;
  42. top: 150px;
  43. width: 220px;
  44. height: auto;
  45. text-align: center;
  46. padding: 15px;
  47. background: url(https://files.catbox.moe/587vaa.jpg);
  48. background-size: cover;
  49. background-position: center;
  50. border: 3px solid white;
  51. border-radius: 7px;
  52. }
  53.  
  54. nav > .links > li {
  55. display: block;
  56. text-align: left;
  57. font-size: 15px;
  58. }
  59.  
  60. nav > .links li::before{
  61. content: url(https://pix.crd.co/assets/images/gallery27/05e223f1.gif?v=bae75af9);
  62. margin-right: 10px;
  63. }
  64.  
  65. nav > .links li:not(:last-child)::after{
  66. display: none;
  67. }
  68.  
  69. nav > .links::before{
  70. content: url(https://files.catbox.moe/aadjj6.png);
  71. }
  72.  
  73. .active {
  74. margin-top: 20px;
  75. }
  76.  
  77. nav > .top{
  78. background-image: url('https://files.catbox.moe/azsbn3.jpg');
  79. height: 250px;
  80. width: 100%;
  81. background-size: cover;
  82. background-repeat: no-repeat;
  83. background-position: center;
  84. }
  85.  
  86. nav .links a:hover {
  87.  
  88. }
  89.  
  90. #comments {
  91. position: absolute;
  92. overflow-y: scroll;
  93. width: 300px;
  94. height: 300px;
  95. top: -106px;
  96. left: 496px;
  97. background: white;
  98. }
  99.  
  100. main .right {
  101. padding: 10px;
  102. position: relative;
  103. }
  104.  
  105. .friends {
  106. position: absolute;
  107. top: 205px;
  108. left: 497px;
  109. width: 300px;
  110. background: white;
  111. height: 220px;
  112. }
  113.  
  114. .profile .blurbs .section {
  115. background: #1c0542;
  116. padding: 10px;
  117. }
  118.  
  119. .profile .blurbs .inner {
  120. padding: 0;
  121. }
  122.  
  123. .profile .blurbs .heading, .profile .friends .heading {
  124. background: #9453fc;
  125. color: white;
  126. padding: 2px 7px;
  127. }
  128.  
  129. .music {
  130. background: black;
  131. width: 220px;
  132. height: 190px;
  133. position: absolute;
  134. top: 450px;
  135. left: -554px;
  136. }
  137.  
  138. .music:after {
  139. content: "";
  140. background: url('https://fluorescent-lights.neocities.org/f0rzNHe.png'), linear-gradient(150deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2), 40%, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.6));
  141. background-size: contain, cover;
  142. position: absolute;
  143. top: 0;
  144. left: 0;
  145. width: 100%;
  146. height: 100%;
  147. }
  148.  
  149. .music:before {
  150. content: "";
  151. background: url(https://fluorescent-lights.neocities.org/Digital-CD-Disk-Vector-Transparent-PNG.png);
  152. position: absolute;
  153. top: 5px;
  154. left: -20px;
  155. background-repeat: no-repeat;
  156. z-index: -1;
  157. animation-name: spin;
  158. animation-duration: 5000ms;
  159. animation-iteration-count: infinite;
  160. animation-timing-function: linear;
  161. transition: left ease 0.5s;
  162. width: 180px;
  163. height: 180px;
  164. background-size: cover;
  165. }
  166.  
  167. .music:hover:before {
  168. left: -75px;
  169. }
  170.  
  171. @keyframes spin {
  172. from {
  173. transform:rotate(0deg);
  174. }
  175. to {
  176. transform:rotate(360deg);
  177. }
  178. }
  179.  
  180. </style>
  181.  
  182. <!-- (c) Layout created by boybean (https://layouts.spacehey.com/layout?id=3419) -->
  183.  
  184. <style>
  185. .friends-grid::before {
  186. width: 1000px;
  187. height: 80px;
  188. object-fit: cover;
  189. margin-bottom: 10px!important;
  190. }
  191.  
  192.  
  193. .friends-grid::before{
  194. content: " ";
  195. display: flow-root;
  196. font-size: 30px;
  197. color: var(--lighter-blue);
  198. font-weight: 800;
  199. text-align: center !important;
  200. margin: 10px 300px 500px 0px;
  201. position: relative;
  202. animation-fill-mode: forwards;
  203. }
  204.  
  205. .friends {
  206. border: none;
  207. overflow: hidden;
  208. }
  209.  
  210. .friends-grid {
  211. position: relative;
  212. animation: myfirst 10s linear infinite;
  213. animation-fill-mode: forwards;
  214. }
  215.  
  216. @keyframes myfirst {
  217. 0% {left:-1000px;}
  218. 100% {left:500px;}
  219. }
  220.  
  221. .friends-grid {
  222. display: flex;
  223. flex-wrap: nowrap;
  224. }
  225. </style>
  226.  
  227. <!-- (c) Layout created by Twilight Sparkle (https://layouts.spacehey.com/layout?id=1796) -->
  228.  
  229. <!-- REPLACE THE URL WITH YOUR UPLOADED GIF -->
  230. <style>
  231. .profile-pic > img { display:none; }
  232. .profile-pic:after { background-image: url("https://files.catbox.moe/rawli9.gif"); display: inline-block; content:"" }
  233. .blog-entry .profile-pic:after, .bulletin .profile-pic:after { background-size: cover; width: 110px; height: 110px; } /* blogs, bulletins */
  234. .general-about .profile-pic:after { background-size: cover; width: 160px; height: 160px; } /* profile */
  235. </style>
  236.  
Add Comment
Please, Sign In to add comment