Advertisement
sculptorgalaxy

benthic zone tumblr theme

Apr 4th, 2023 (edited)
461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 11.24 KB | Source Code | 0 0
  1. <!DOCTYPE HTML>
  2. <head>
  3. <!-- BENTHIC ZONE THEME BY FAUST SCULPTOR
  4.  
  5. Umm will definitely look a little broken in the theme preview but its ok...a little smoke and mirrors is needed for Awesome theme *Wink* you might need to adjust the left and right css for the avatar sadly but otherwise it will look Normal when viewed outside theme editor
  6.  
  7. this theme initially looked wayy different in my mind but im really happy with the way it looks now :^]!!
  8. -->
  9.  
  10. <meta name="image:favicon" content="">
  11. <meta name="image:background" content="">
  12. <meta name="image:avatar" content="">
  13. <meta name="image:floatie" content="">
  14. <meta name="image:custom cursor" content="">
  15. <meta name="image:post background" content="">
  16. <meta name="image:sidebar background" content="">
  17.  
  18. <meta name="text:text size" content="20">
  19. <meta name="text:border size" content="3">
  20. <meta name="text:floatie size" content="100">
  21. <meta name="text:wobble" content="the SILLIEST">
  22. <meta name="text:wobble font size" content="25">
  23. <meta name="text:desc" content="my swag. my awesome">
  24. <meta name="text:link one" content="1">
  25. <meta name="text:link two" content="2">
  26. <meta name="text:link three" content="3">
  27. <meta name="text:link one url" content="/">
  28. <meta name="text:link two url" content="/">
  29. <meta name="text:link three url" content="/">
  30.  
  31. <meta name="select:border style" content="solid"/>
  32. <meta name="select:border style" content="double"/>
  33. <meta name="select:border style" content="groove"/>
  34. <meta name="select:border style" content="ridge"/>
  35. <meta name="select:border style" content="inset"/>
  36. <meta name="select:border style" content="outset"/>
  37. <meta name="select:border style" content="dashed"/>
  38. <meta name="select:border style" content="dotted"/>
  39.  
  40. <meta name="select:font" content="Arial">
  41. <meta name="select:font" content="MS Gothic">
  42. <meta name="select:font" content="Tepeno Sans"
  43. <meta name="select:font" content="Comic Sans MS">
  44. <meta name="select:font" content="SF Quartzite">
  45. <meta name="select:font" content="Black Wolf">
  46. <meta name="select:font" content="Angerpoise Lampshade">
  47. <meta name="select:font" content="G Gemah">
  48.  
  49. <meta name="color:background color" content="">
  50. <meta name="color:post color" content="">
  51. <meta name="color:border color" content="">
  52. <meta name="color:text color" content="">
  53. <meta name="color:wobble" content="">
  54. <meta name="color:link color" content="">
  55. <meta name="color:link hover color" content="">
  56. <meta name="color:text selection color" content="">
  57. <meta name="color:text selection bg color" content="">
  58.  
  59. <meta name="if:custom cursor" content="">  
  60. <meta name="if:full background" content="">
  61.  
  62. <title>{Title}</title>
  63. <link rel="shortcut icon" href="{image:favicon}">
  64. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  65. <link rel="stylesheet" href="https://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
  66. <link href="https://fonts.cdnfonts.com/css/arial" rel="stylesheet">
  67. <link href="https://fonts.cdnfonts.com/css/tepeno-sans" rel="stylesheet">
  68. <link href="https://fonts.cdnfonts.com/css/black-wolf" rel="stylesheet">
  69. <link href="https://fonts.cdnfonts.com/css/sf-quartzite" rel="stylesheet">
  70. <link href="https://allfont.net/allfont.css?fonts=comic-sans-ms" rel="stylesheet" type="text/css"/>
  71. <link href="https://fonts.cdnfonts.com/css/angerpoise-lampshade" rel="stylesheet">
  72. <link href="https://fonts.cdnfonts.com/css/g-gemah" rel="stylesheet">
  73. <script type="text/javascript">
  74. // <![CDATA[
  75. var speed=100; // speed of wobbling, lower is faster
  76. var height=3; // height of wobbling in pixels
  77. var alink=""; // page to link text to (set to ="" for no link)
  78.  
  79. /****************************
  80. *    Wobbly Text Effect     *
  81. *(c) 2003-6 mf2fm web-design*
  82. *  http://www.mf2fm.com/rv  *
  83. * DON'T EDIT BELOW THIS BOX *
  84. ****************************/
  85. var wobtxt, wobble, wobcnt=0;
  86. window.onload=function() { if (document.getElementById) {
  87.   var i, wobli;
  88.   wobble=document.getElementById("wobble");
  89.   wobtxt=wobble.firstChild.nodeValue;
  90.   while (wobble.childNodes.length) wobble.removeChild(wobble.childNodes[0]);
  91.   for (i=0; i<wobtxt.length; i++) {
  92.     wobli=document.createElement("span");
  93.     wobli.setAttribute("id", "wobb"+i);
  94.     wobli.style.position="relative";
  95.     wobli.appendChild(document.createTextNode(wobtxt.charAt(i)));
  96.     if (alink) {
  97.       wobli.style.cursor="pointer";
  98.       wobli.onclick=function() { top.location.href=alink; }
  99.     }
  100.     wobble.appendChild(wobli);
  101.   }
  102.   setInterval("wobbler()", speed);
  103. }}
  104.  
  105. function wobbler() {
  106.   for (var i=0; i<wobtxt.length; i++) document.getElementById("wobb"+i).style.top=Math.round(height*Math.sin(i+wobcnt))+"px"
  107.   wobcnt++;
  108. }
  109. // ]]>
  110. </script>
  111. {block:Description}
  112. <meta name="description" content="{MetaDescription}" />
  113. {/block:Description}
  114. <style type="text/css">
  115. body{
  116. background-color:{color:background color};
  117. background-image:Url('{image:background}');
  118. background-attachment:fixed;
  119. {block:iffullbackground}
  120. background-size: cover;
  121. {/block:iffullbackground}
  122. color:{color:text color};
  123. {block:ifcustomcursor};
  124. cursor:url("{image:custom cursor}"), default;
  125. {/block:ifcustomcursor};
  126. font-size:{text:text size}px;
  127. font-family:{select:font};
  128. word-wrap:break-word;}
  129. a{
  130. color:{color:link color};
  131. text-decoration:none;}
  132. a:hover{
  133. cursor:help;
  134. color:{color:link hover color};
  135. text-decoration:none;}
  136. blockquote{
  137. margin:0 0 10px 10px;
  138. padding:0 0 0 10px;
  139. border-left:solid 1px #000;}
  140. ::selection{
  141. color:{color:text selection color};
  142. background:{color:text selection bg color};}
  143. @font-face {
  144.   font-family: MS Gothic;
  145.   src:url(https://sculptorgalaxy.neocities.org/MS%20Gothic.ttf) format("truetype");
  146.   font-weight: normal;
  147.   font-style: normal;
  148. }
  149. @font-face {
  150.   font-family: MS Gothic;
  151.   src:url(https://sculptorgalaxy.neocities.org/MS%20Gothic.ttf) format("truetype");
  152.   font-weight: bold;
  153.   font-style: normal;
  154. }
  155. @font-face {
  156.   font-family: MS Gothic;
  157.   src:url(https://sculptorgalaxy.neocities.org/MS%20Gothic.ttf) format("truetype");
  158.   font-weight: normal;
  159.   font-style: italic;
  160. }
  161. /* Sidebar, Posts */
  162. #content{
  163. position:absolute;
  164. top:20px;
  165. width:800px;
  166. left: 35%;
  167. transform: translateX(-50%);
  168. break-inside:avoid;
  169. column-count:3;
  170. column-gap: 20px;
  171. }
  172. .post{
  173. margin:0 0 20px 0;
  174. background-color:{color:post color};
  175. background-image: Url('{image:post background}');
  176. border:{text:border size}px {select:border style} {color:border color};
  177. padding:5px;
  178. overflow:hidden;
  179. break-inside:avoid;
  180. {block:permalinkpage}
  181. width:400px;
  182. break-inside:avoid;
  183. {/block:permalinkpage};
  184. }
  185. #sidebar{
  186. width:225px;
  187. background-color:{color:post color};
  188. background-image:Url('{image:sidebar background}');
  189. border:{text:border size}px {select:border style} {color:border color};
  190. position:fixed;
  191. padding:5px;
  192. margin-left:650px;
  193. margin-top:150px;
  194. }
  195. #wrapper{
  196. width:600px;
  197. margin:50px auto;
  198. }
  199.  
  200. .title{
  201. font-weight:bold;
  202. font-size:35px;
  203. margin:0 0 10px 0;}
  204. .footer{
  205. padding: 5px;}
  206. .naviga{
  207. text-align:center;}
  208. .post img{
  209. max-width:100%;}
  210. .sidebar img{
  211. max-width:100%;
  212. max-height:215px;
  213. position: fixed;
  214. bottom:460px;
  215. top:5px;
  216. left:1135px;
  217. right:450px;
  218. }
  219. #titl{
  220. color:{color:wobble};
  221. font-size:{text:wobble font size}px;}
  222. }
  223.  
  224. #audioplayer{
  225. width:30px;
  226. height:25px;
  227. overflow:hidden;
  228. position:absolute;
  229. margin-top:40px;
  230. margin-bottom:40px;
  231. margin-left:35px;
  232. border-radius: 40px;
  233. opacity: 0.7;}
  234. .trackstuff{
  235. overflow:auto;
  236. margin-left:110px;
  237. margin-top:-75px;  
  238. margin-bottom:50px;
  239. display:block;}
  240. .playbutton{
  241. margin-bottom:30px;
  242. margin-top:-60px;
  243. margin-left:35px;
  244. z-index:9;
  245. width:33px;
  246. height:30px;
  247. overflow:hidden;}
  248.  
  249. #hehe{
  250. font-size:35px;
  251. position:fixed;
  252. left:0px;
  253. bottom:0px;}
  254. #float{
  255. position:fixed;
  256. bottom:0px;
  257. right:15px;}
  258. video{
  259. max-width: 100%;
  260. height: auto;}
  261.  
  262. {CustomCss}
  263. </style>
  264. </head>
  265. <body>
  266. <div id="wrapper">
  267. <div id="sidebar">
  268. <br><center><div id="titl"><center><div id="wobble">{text:wobble}</div></center></div><p>{text:desc}</center>
  269. <center>
  270. <a href="{text:link one url}">{text:link one}</a>
  271. <br>
  272. <a href="{text:link two url}">{text:link two}</a>
  273. <br>
  274. <a href="{text:link three url}">{text:link three}</a>
  275. </center>
  276. </div>
  277. <div class="sidebar img">
  278. <center>
  279. <a href="/"><img src="{image:avatar}"></a>
  280. </center>
  281. </div>
  282. </div>
  283.  
  284. <div id="content">
  285. {block:Posts}
  286. <!--{block:NoRebloggedFrom}{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}{/block:NoRebloggedFrom} --> {block:ContentSource}<!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  287. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  288. {/block:ContentSource}
  289. <div class="post">
  290.  
  291. {block:Text}
  292. {block:Title}
  293. <div class="title">{Title}</div>
  294. {/block:Title}
  295. {Body}
  296. {/block:Text}
  297. {block:Chat}
  298. {block:Title}
  299. <div class="title">
  300. <h3><a href="{Permalink}">{Title}</a></h3></div>
  301. {/block:Title}
  302. {block:Lines}
  303. <div class="{Alt} user_{UserNumber}">
  304. {block:Label}
  305. <span class="label">{Label}</span>
  306. {/block:Label}{Line}
  307. </div>
  308. {/block:Lines}
  309. {/block:Chat}
  310.  
  311. {block:Photo}
  312. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}
  313. {block:Caption}{Caption}{/block:Caption}
  314. {/block:Photo}
  315. {block:Photoset}
  316. {Photoset}
  317. {block:Caption}
  318. {Caption}
  319. {/block:Caption}
  320. {/block:Photoset}
  321.  
  322. {block:Video}
  323. {Video-500}
  324. {block:Caption}
  325. {Caption}
  326. {/block:Caption}
  327. {/block:Video}
  328.  
  329. {block:Audio}
  330. <div id= "audioplayer">{AudioPlayerWhite}</div>
  331. {block:AlbumArt}
  332. <div id="albumart">
  333. <img src="{AlbumArtURL}" width="100">  
  334. </div>
  335. {/block:AlbumArt}
  336. <div class="trackstuff">
  337. {block:TrackName}<b><i>{TrackName}</i></b>{/block:TrackName}<br>{block:Artist}<i>{Artist}</i>{/block:Artist}</div>
  338. {Caption}
  339. {/block:Audio}
  340.  
  341. {block:Quote}
  342. <div class="quote">
  343. "{Quote}"
  344. {block:Source}
  345. <div class="source">- <i>{Source}</i></div>
  346. {/block:Source}
  347. </div>
  348. {/block:Quote}
  349.  
  350. {block:Link}
  351. <a href="{URL}" class="link" {Target}>{Name}</a>
  352. {block:Description}
  353. {Description}
  354. {/block:Description}
  355. {/block:Link}
  356.  
  357. {block:Answer}
  358. <div class="question">{Asker}: {Question}</div>
  359. <div class="caption">{Answer}</div>
  360. {/block:Answer}
  361.  
  362. {block:Date}
  363. <div class="footer">
  364. <hr width="100%" size="1" color="{color:text color}">
  365. <center><a href="{Permalink}">{TimeAgo}{block:NoteCount} ({NoteCountWithLabel}){/block:NoteCount}</a>, <a href="{ReblogUrl}">&#8634;</a>
  366. {block:HasTags}<br>{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</center>
  367. </div>
  368. {block:PermalinkPage}
  369. {block:NoteCount}
  370. {block:PostNotes}{PostNotes}{/block:PostNotes}
  371. {/block:NoteCount}
  372. {/block:PermalinkPage}
  373. <!--{block:NoRebloggedFrom}{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}{/block:NoRebloggedFrom} -->
  374. {/block:Date}
  375.  
  376. </div>
  377. {/block:Posts}
  378.  
  379. {block:Pagination}
  380. <div class="naviga">
  381. {block:PreviousPage}
  382. <a href="{PreviousPage}">&#171; Back</a>
  383. {/block:PreviousPage}
  384. {block:NextPage}
  385. <a href="{NextPage}">Next &#187;</a>
  386. {/block:NextPage}
  387. </div>
  388. {/block:Pagination}
  389.  
  390. </div>
  391. </div>
  392.  
  393. <div id="float">
  394. <img src="{image:floatie}" width="{text:floatie size}px">
  395. </div>
  396. <div id="hehe">
  397. <a href="https://urlcyberpalace.tumblr.com"><img src="https://64.media.tumblr.com/39d7fa9a70f5df1d55e1b768f75919d5/c51d9989687ce0f2-f8/s75x75_c1/b5c93ae6170d4f5a42776d9342eb04f4a61fe902.gifv" style="width:35px">
  398. </div>
  399.  
  400. </body>
  401. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement