Advertisement
alicescreed

scxfieldtm

Feb 23rd, 2020
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.82 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2.  
  3. "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5. <head>
  6. <title>{Title}</title>
  7.  
  8. <!-- please do not steal, redistribute, or claim as your own. KEEP CREDIT IN TACT. thank you! -->
  9.  
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12. {block:Description}<meta name="description" content="{MetaDescription}" />
  13.  
  14. {/block:Description}
  15.  
  16.  
  17. <meta name="image:background" content="">
  18. <meta name="image:infobackground" content="">
  19.  
  20. <meta name="text:link1url" content="link1url">
  21. <meta name="text:link1title" content="link1title">
  22. <meta name="text:link2url" content="link2url">
  23. <meta name="text:link2title" content="link2title">
  24. <meta name="text:link3url" content="link3url">
  25. <meta name="text:link3title" content="link3title">
  26. <meta name="text:link4url" content="link4url">
  27. <meta name="text:link4title" content="link4title">
  28.  
  29. <meta name="color:text" content="#b3b3b3">
  30. <meta name="color:scrollbar" content="#2b2b2b">
  31. <meta name="color:bold" content="#5079a0">
  32. <meta name="color:italic" content="#c9c9c9">
  33. <meta name="color:links" content="#5079a0">
  34. <meta name="color:borders" content="#5a5a5a">
  35. <meta name="color:hover link" content="#5a5a5a">
  36.  
  37. <link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono|Ubuntu+Mono&display=swap" rel="stylesheet">
  38.  
  39. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  40. <script src="https://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  41. <script>
  42. (function($){
  43. $(document).ready(function(){
  44. $("[title]").style_my_tooltips({
  45. tip_follows_cursor:true,
  46. tip_delay_time:200,
  47. tip_fade_speed:300
  48. }
  49. );
  50. });
  51. })(jQuery);
  52. </script>
  53.  
  54. <style type="text/css">
  55.  
  56.  
  57. body {
  58. font-family: 'IBM Plex Mono', display;
  59. color: {color:text};
  60. font-size: 11px;
  61. letter-spacing: 0px;
  62. background-color: #161616;
  63. background-image: url('{image:background}');
  64. background-position: absolute;
  65. background-attachment: fixed;
  66. line-height: 120%;
  67. background-repeat: no-repeat;
  68. text-align: justify;
  69. }
  70.  
  71. #s-m-t-tooltip{
  72. position: absolute;
  73. z-index: 999999999999999999999999999999999999999999999999999999999999;
  74. margin-top: 10px;
  75. margin-left: 5px;
  76. display: block;
  77. background-image: url('{image:infobackground}');
  78. background-position: center;
  79. text-align: center;
  80. color: #fff;
  81. font-style: italic;
  82. font-family: 'Ubuntu Mono', display;
  83. letter-spacing: 1px;
  84. border: 4px double {color:borders};
  85. padding: 10px;
  86. font-size: 200%;
  87. margin-bottom: 5px;
  88. }
  89.  
  90. ::-webkit-scrollbar-thumb:vertical {
  91. background-color: {color:scrollbar};
  92. height:auto;
  93. }
  94.  
  95. ::-webkit-scrollbar-thumb:horizontal {
  96. background-color: {color:scrollbar};
  97. height:2px;
  98. }
  99.  
  100. ::-webkit-scrollbar {
  101. height:2px;
  102. width:5px;
  103. background-color: transparent;
  104. }
  105.  
  106.  
  107. a {
  108. text-decoration: none;
  109. color: {color:links};
  110. font-size: 13pt;
  111. line-height: 15pt;
  112. font-weight: bold;
  113. transition-duration: 0.6s;
  114. -moz-transition-duration: 0.6s;
  115. -webkit-transition-duration: 0.6s;
  116. -o-transition-duration: 0.6s;
  117. font-family: 'Ubuntu Mono', display;
  118. letter-spacing: 1px;
  119. text-shadow: 1px 1px 5px #000;
  120. }
  121.  
  122.  
  123. a:hover {
  124. letter-spacing: 2px;
  125. text-decoration: none;
  126. font-size: 14pt;
  127. filter:blur(1px);
  128. color: {color:hover link};
  129. transition-duration: 0.6s;
  130. -moz-transition-duration: 0.6s;
  131. -webkit-transition-duration: 0.6s;
  132. -o-transition-duration: 0.6s;
  133. font-family:'Ubuntu Mono', display;
  134. text-shadow: 1px 1px 4px #000;
  135. }
  136.  
  137. small, sup, sub {
  138. font-size: 100%;
  139. }
  140.  
  141. b, strong {
  142. text-shadow: 1px 1px 5px #000;
  143. padding-left: 2px;
  144. padding-right: 2px;
  145. color:{color:bold};
  146. letter-spacing: 1px;
  147. font-weight: bold;
  148. font-size: 150%;
  149. font-family: 'Ubuntu Mono', display;
  150. }
  151.  
  152. i, em {
  153. text-shadow: 1px 1px 5px #000;
  154. color:{color:italic};
  155. font-style: italic;
  156. letter-spacing: 1px;
  157. padding-left:5px;
  158. padding-right: 5px;
  159. padding-top: 10px;
  160. padding-bottom: 10px;
  161. font-size: 15pt;
  162. font-family:'Ubuntu Mono', display;
  163. }
  164.  
  165.  
  166.  
  167.  
  168. h2 {
  169. text-shadow: 1px 1px 5px #000;
  170. font-family: 'Ubuntu Mono', display;
  171. font-size: 20pt;
  172. line-height: 20pt;
  173. font-weight: bold;
  174. letter-spacing: 1px;
  175. }
  176.  
  177. #info {
  178. background-color: grey;
  179. padding: 20px;
  180. background-image: url('{image:infobackground}');
  181. background-position: center;
  182. text-align: center;
  183. color: #fff;
  184. letter-spacing: 1px;
  185. font-family:'Ubuntu Mono', display;
  186. text-shadow: 1px 1px 4px #000;
  187. border: 4px double {color:borders};
  188. }
  189.  
  190. #sidebarh1 {
  191. background-image: url('{image:infobackground}');
  192. text-align: center;
  193. color: #fff;
  194. font-family: 'Ubuntu Mono', display;
  195. border: 4px double {color:borders};
  196. padding: 10px;
  197. line-height: 110%;
  198. font-size: 16px;
  199. background-position: center;
  200. margin-bottom: 5px;
  201. }
  202.  
  203. #h1 {
  204. color: white;
  205. background-position: center;
  206. text-shadow: 1px 1px 5px #000;
  207. background-image: url('{image:infobackground}');
  208. text-align: center;
  209. font-family: 'Ubuntu Mono', display;
  210. border: 4px double {color:borders};
  211. padding: 5px;
  212. line-height: 120%;
  213. font-size: 22px;
  214. margin-bottom: 5px;
  215. }
  216.  
  217. h1 {
  218. font-family: 'Ubuntu Mono', display;
  219. font-size: 20pt;
  220. line-height: 21pt;
  221. color: white;
  222. font-weight: normal;
  223. text-align: center;
  224. }
  225.  
  226. #audio {
  227. text-align: center;
  228. font-size: 8pt;
  229. line-height: 9pt;
  230. }
  231.  
  232.  
  233. #musicinfo {
  234.  
  235. text-transform: uppercase;
  236. margin-top:10px;
  237. }
  238.  
  239. blockquote {
  240. border-right: 2px solid {Color:bold};
  241. border-left: 2px solid {Color:bold};
  242. padding: 5px;
  243. background-color: #151515;
  244. }
  245.  
  246. blockquote img {
  247. max-width: 100%;
  248. }
  249.  
  250.  
  251. ol.notes {
  252. text-align: left;
  253. list-style: upper-roman;
  254. padding: 10px;
  255.  
  256. }
  257.  
  258. #info a {
  259. font-family: 'Ubuntu Mono', display;
  260. font-size: 10pt;
  261. text-transform: uppercase;
  262. color: {color:italic};
  263. }
  264.  
  265. #info a:hover {
  266. color: {color:bold};
  267. }
  268.  
  269. #credit {
  270. right:10px;
  271. bottom:7px;
  272. padding:5px;
  273. font-size:10px;
  274. position:fixed;
  275. background-image: url('{image:infobackground}');
  276. text-align: center;
  277. font-style: italic;
  278. font-family: 'Ubuntu Mono', display;
  279. letter-spacing: 1px;
  280. border: 4px double {color:borders};
  281. padding: 5px;
  282. font-size: 120%;
  283. margin-bottom: 5px;
  284. transition-duration: 0.6s;
  285. -moz-transition-duration: 0.6s;
  286. -webkit-transition-duration: 0.6s;
  287. -o-transition-duration: 0.6s;
  288. }
  289.  
  290.  
  291. #credit a {
  292. font-family: 'Ubuntu Mono', display;
  293. color:#fff;
  294. padding:5px;
  295. letter-spacing:1px;
  296. text-decoration:none;
  297. font-weight:bold;
  298. }3
  299. II
  300. #tags {
  301.  
  302. }
  303.  
  304. #tags a {
  305. font-size: 10px;
  306. line-height: 11px;
  307. font-family: 'Ubuntu Mono', display;
  308. color:{color:text};
  309. }
  310.  
  311. #post {
  312. width: 400px;
  313. margin-bottom: 20px;
  314. }
  315.  
  316. #posts {
  317. width: 400px;
  318. height: 530px;
  319. padding-right: 20px;
  320. position: absolute;
  321. margin-left: 150px;
  322. margin-top: 60px;
  323. overflow: auto;
  324. }
  325.  
  326.  
  327.  
  328. #links {
  329. position: fixed;
  330. margin-top: 450px;
  331. text-align: left;
  332. width: 200px;
  333. font-size: 13pt;
  334. line-height: 6pt;
  335. margin-left: 525px;
  336. font-family: 'Ubuntu Mono', display;
  337. }
  338.  
  339. #links a {
  340. color: {color:navlinks};
  341. font-weight: bold;
  342. font-family: 'Ubuntu Mono', display;
  343. text-transform: uppercase;
  344. }
  345.  
  346. #links a:hover {
  347. color: {color:bold};
  348. font-style: normal;
  349. }
  350.  
  351. #navlinks {
  352. position: fixed;
  353. margin-top: 375px;
  354. margin-left: 635px;
  355. }
  356.  
  357. #navlinks a{
  358. line-height: 100%;
  359. font-size: 30pt;
  360. color:{color:text};
  361. transition-duration: 0.6s;
  362. -moz-transition-duration: 0.6s;
  363. -webkit-transition-duration: 0.6s;
  364. -o-transition-duration: 0.6s;
  365. }
  366.  
  367. #navlinks a:hover{
  368. color:{color:links};
  369. letter-spacing: 2px;
  370. transform:rotate(2deg);
  371. transition-duration: 0.6s;
  372. -moz-transition-duration: 0.6s;
  373. -webkit-transition-duration: 0.6s;
  374. -o-transition-duration: 0.6s;
  375. }
  376.  
  377. #pages {
  378. }
  379.  
  380. #pages a {
  381. font-size: 8pt;
  382. }
  383.  
  384. #sidebar {
  385. margin-top: 245px;
  386. margin-left: 630px;
  387. position: fixed;
  388. width: 200px;
  389. font-size: 7pt;
  390. }
  391.  
  392. #description {
  393. width: 110px;
  394. height: 115px;
  395. padding-right: 5px;
  396. overflow: auto;
  397. float:left;
  398. }
  399.  
  400. #desc2 {
  401. position: fixed;
  402. margin-left: 132px;
  403. float:right;
  404. }
  405.  
  406. #mtitle {
  407. text-transform: uppercase;
  408. font-weight: bold;
  409. color: {color:bold};
  410. }
  411.  
  412.  
  413. </style>
  414.  
  415. </head>
  416.  
  417. <body>
  418.  
  419.  
  420. <div id="navlinks">
  421. <a href="/" title="home"><img src="https://i.imgur.com/ycPo1mK.png" width="30"></a>
  422. <a href="/ask" title="ask"><img src="https://i.imgur.com/ycPo1mK.png" width="30"></a>
  423. <a href="{text:link1url}" title="{text:link1title}"><img src="https://i.imgur.com/ycPo1mK.png" width="30"></a>
  424. <a href="{text:link2url}" title="{text:link2title}"><img src="https://i.imgur.com/ycPo1mK.png" width="30"></a>
  425. <a href="{text:link3url}" title="{text:link3title}"><img src="https://i.imgur.com/ycPo1mK.png" width="30"></a>
  426. <a href="{text:link4url}" title="{text:link4title}"><img src="https://i.imgur.com/ycPo1mK.png" width="30"></a>
  427.  
  428. </div>
  429.  
  430.  
  431. <div id="sidebar">
  432. <div id="description">
  433. {description}
  434. </div>
  435. <div id="desc2">
  436. <p align="Center"><img src="https://i.imgur.com/BaRdvCy.gif"></p>
  437. <marquee scrolldelay="200" id="mtitle">{title}</marquee>
  438. <div id="pages"> {block:Pagination}
  439. {block:PreviousPage}
  440. <a href="{PreviousPage}">fall</a> /
  441. {/block:PreviousPage} {block:NextPage}<a href="{NextPage}">rise</a>
  442. {/block:NextPage}
  443. {/block:Pagination}</div></div>
  444. </div>
  445.  
  446.  
  447.  
  448. <div id="posts">{block:Posts}<div id="post">
  449.  
  450.  
  451.  
  452. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  453.  
  454. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}" style="margin-bottom: 10px;">{LinkCloseTag}{block:Caption}
  455.  
  456. {Caption} {/block:Caption}{/block:Photo}
  457.  
  458. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}
  459.  
  460. {/block:Photoset}
  461.  
  462. {block:Quote}<div id="h1">{Quote}</div>{block:Source}<div style="text-align:center;">—{Source}</div>{/block:Source}{/block:Quote}
  463.  
  464. {block:Link}<div id="h1"><a href="{URL}" {Target}>{Name}</a></div>{block:Description}
  465.  
  466. {Description}{/block:Description}{/block:Link}
  467.  
  468. {block:Chat}{block:Title}<div id="h1">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>
  469.  
  470. <div id="l">{Label}</b>{/block:Label} {Line}<br></div>{/block:Lines}{/block:Chat}
  471.  
  472. {block:Audio}
  473. <div id="audio">
  474. {block:TrackName}
  475. <div id="musicinfo" style="margin-top: 5px;">
  476. {AudioPlayerGrey} <br>
  477. {TrackName} by
  478. {/block:TrackName}
  479. {block:Artist}
  480. {Artist}
  481. {/block:Artist}
  482.  
  483. </div>
  484. </div>
  485. {block:caption}<div id="caption">{Caption} </div>{/block:caption}
  486. {/block:Audio}
  487.  
  488.  
  489. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  490.  
  491. {block:Answer}
  492. <div id="sidebarh1">
  493. <img src="https://i.imgur.com/ycPo1mK.png" width="30"><br>
  494. {Asker} asked, <br>
  495. <span style="font-weight: normal;font-family: 'IBM Plex Mono', display; color: {color:text}; font-size: 10px;">" {Question} "</span>
  496. </div>
  497. {Answer}{/block:Answer}
  498.  
  499. <div id="info">
  500. <a title="{TimeAgo}" title="{timeago}"> {TimeAgo}</a> <img src="https://i.imgur.com/ycPo1mK.png" width="15"> <a href="{Permalink}" title="{NoteCount} notes">{NoteCount}</a> <img src="https://i.imgur.com/ycPo1mK.png" width="15"> <a href="{ReblogURL}" title="reblog">reblog</a>
  501. <div id="tags">
  502. {block:HasTags}{block:Tags} <a href="{TagURL}">#{Tag} </a>
  503. {/block:Tags}{/block:HasTags}
  504. </div>
  505. </div>
  506.  
  507. </div>
  508. {block:PostNotes}<Div style="width: 400px;">
  509.  
  510.  
  511. {PostNotes}</div>{/block:PostNotes}
  512. {/block:Posts}</div>
  513.  
  514. <div id="credit">
  515. <a href="https://anacommissions.tumblr.com/" title="theme & graphics by anacommissions">AC</a>
  516. </div>
  517.  
  518.  
  519.  
  520.  
  521.  
  522. </body>
  523.  
  524.  
  525. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement