Advertisement
leowatch

sb size op

Feb 6th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!-----
  5. base code by animecharacter.tumblr.com
  6.  
  7. for help visit:
  8. tumblr.com/docs/en/custom_themes
  9. tumblr.com/docs/en/localizing_themes
  10. w3schools.com
  11. (please dont send me customization asks)
  12.  
  13. credit if used is not compulsory but it's nice if you mention where you got this
  14.  
  15. ----->
  16.  
  17. <meta charset="utf-8">
  18. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  19. {block:Description}
  20. <meta name="description" content="{MetaDescription}" />
  21. {/block:Description}
  22.  
  23. <title>{Title}</title>
  24.  
  25. <link rel="shortcut icon" href="{image:Favicon}">
  26. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  27. <link rel="stylesheet" href="http://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
  28.  
  29. <script src="http://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
  30.  
  31. <meta name="image:favicon" content="">
  32. <meta name="image:side" content="">
  33. <meta name="image:corner img" content="">
  34. <meta name="image:bg img" content="">
  35.  
  36. <meta name="color:bg" content="#ffffff">
  37. <meta name="color:content" content="#ffffff">
  38. <meta name="color:links" content="#999999">
  39. <meta name="color:hover" content="#cccccc">
  40. <meta name="color:link bg" content="#ffffff">
  41. <meta name="color:nav bg" content="#ffffff">
  42. <meta name="color:scrollbar" content="#ffffff">
  43. <meta name="color:scrollbar thumb" content="#ffffff">
  44. <meta name="color:scrollbar border" content="#000000">
  45.  
  46. <meta name="select:font" content="helvetica">
  47. <meta name="select:font" content="courier">
  48. <meta name="select:font" content="arial">
  49. <meta name="select:font" content="franklin gothic book">
  50. <meta name="select:font" content="century gothic">
  51. <meta name="select:font" content="lucida console">
  52. <meta name="select:font" content="tahoma">
  53.  
  54. <meta name="if:infinitescroll" content="1">
  55.  
  56. <meta name="text:sb img" content="90">
  57. <meta name="text:corner img width" content="">
  58. <meta name="text:corner img left" content="0">
  59. <meta name="text:corner img bottom" content="0">
  60.  
  61. <meta name="image:" content="">
  62. <meta name="color:" content="#">
  63. <meta name="if:" content="">
  64. <meta name="text:" content="">
  65. <meta name="select:" content="">
  66.  
  67. {block:ifInfiniteScroll}
  68. <script type="text/javascript" src="http://yourjavascript.com/21212225154/esz.js"></script>
  69. {block:ifInfiniteScroll}
  70.  
  71. <div id="imageright" style="position:fixed; bottom:{text:corner img bottom}px; right:{text:corner img left}px; z-index:-1;"><img src="{image:corner img}"width="{text:corner img width}"></div>
  72.  
  73. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  74.  
  75. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  76.  
  77. <script>
  78.  
  79. (function($){
  80.  
  81. $(document).ready(function(){
  82.  
  83. $("a[title]").style_my_tooltips({
  84.  
  85. tip_follows_cursor:true,
  86.  
  87. tip_delay_time:80,
  88.  
  89. tip_fade_speed:400,
  90.  
  91. attribute:"title"
  92.  
  93. });
  94.  
  95. });
  96.  
  97. })(jQuery);
  98.  
  99. </script>
  100.  
  101. <style type="text/css">
  102.  
  103. #s-m-t-tooltip {
  104.  
  105. max-width:280px; /* maximum width */
  106. text-align:center;
  107. background-color:#fff; /* color background */
  108.  
  109. -webkit-box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.1);
  110. -moz-box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.1);
  111. box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.1);
  112.  
  113. border-radius:7px;
  114.  
  115. border:none /* color, shape and thickness of the border */
  116.  
  117. font-size:9px; /* font size */
  118.  
  119. color:#000; /* font color */
  120. font-weight:bold;
  121. font-family:helvetica;
  122.  
  123. letter-spacing:1px; /* font spacing */
  124.  
  125. text-transform:lowercase; /* uppercase, lowercase, none */
  126.  
  127. padding:4px; /* padding size */
  128.  
  129. margin:20px 0px 0px 20px; /* margin size */
  130.  
  131. z-index:9999999999999999999999;
  132.  
  133.  
  134.  
  135. }
  136.  
  137. ::-webkit-scrollbar {width: 9px; height: 3px; background: {color:scrollbar};}
  138. ::-webkit-scrollbar-thumb {background-color:{color:scrollbar thumb} ; border: 1px solid {color:scrollbar border};}
  139.  
  140. /*
  141. general text styles, fonts and colours
  142. */
  143.  
  144. body {
  145. margin:0px;
  146. background:{color:bg} url({image:bg img});
  147. background-attachment:fixed;
  148. font-family: {select:font};
  149. font-size:11px;
  150. line-height:140%;
  151. color: #000;
  152. }
  153.  
  154. p{
  155. margin:0 0 10px 0;
  156. padding:0;
  157. }
  158.  
  159. pre {
  160. white-space: pre-wrap;
  161. white-space: -moz-pre-wrap;
  162. white-space: -pre-wrap;
  163. white-space: -o-pre-wrap;
  164. word-wrap: break-word;
  165. }
  166.  
  167. a{
  168. color:{color:links};
  169. text-decoration:none;
  170. letter-spacing:1px;
  171. background:{color:link bg};
  172. -webkit-transition-duration: .3s;
  173. -moz-transition-duration: .3s;
  174. -o-transition-duration: .3s;
  175. }
  176.  
  177. a:hover{
  178. color:{color:hover};
  179. text-decoration:none;
  180. letter-spacing:1px;
  181. -webkit-transition-duration: .3s;
  182. -moz-transition-duration: .3s;
  183. -o-transition-duration: .3s;
  184. }
  185.  
  186. ol,ul {
  187. margin-left:-5px;
  188. list-style-type:hiragana;
  189. }
  190.  
  191. /*
  192. containers etc
  193. */
  194. #wrapper{
  195. width:600px;
  196. margin:50px auto;
  197. }
  198.  
  199. #sidebar{
  200. width:{text:sb img}px;
  201. position:fixed;
  202. margin-left:-110px;
  203. background:#fff;
  204. padding:15px;
  205. -webkit-box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.1);
  206. -moz-box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.1);
  207. box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.1);
  208. border-radius:7px;
  209. }
  210.  
  211. #girl a {
  212. background:none;
  213. }
  214.  
  215. #sheik {
  216. text-align:center;
  217. font-size:10px;
  218. margin-top:-0px;
  219. }
  220.  
  221. #zelda {
  222. display:block;
  223. border:1px dashed
  224. margin-bottom:3px;
  225. background:{color:nav bg};
  226. padding:4px;
  227. text-align:center;
  228. margin-top:-5px;
  229. }
  230. #zelda a {
  231. background:none;
  232. }
  233. #zelda2 {
  234. display:block;
  235. border:1px dashed
  236. margin-bottom:3px;
  237. background:{color:nav bg};
  238. padding:4px;
  239. text-align:center;
  240. margin-top:-10px;
  241. }
  242. #zelda2 a {
  243. background:none;
  244. }
  245. #zelda3 {
  246. display:block;
  247. border:1px dashed
  248. margin-bottom:3px;
  249. background:{color:nav bg};
  250. padding:4px;
  251. text-align:center;
  252. margin-top:-10px;
  253. }
  254. #zelda3 a {
  255. background:none;
  256. }
  257.  
  258. #content{
  259. width:300px;
  260. {block:permalinkpage}
  261. width:350px;
  262. {/block:permalinkpage}
  263. margin-left:50px;
  264. margin-top:-10px;
  265. overflow:hidden;
  266. }
  267.  
  268. .post{
  269. width:250px;
  270. {block:permalinkpage}
  271. width:300px;
  272. {/block:permalinkpage}
  273. margin:0 0 30px 0;
  274. overflow:hidden;
  275. padding:20px;
  276. background:{color:content};
  277. -webkit-box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.1);
  278. -moz-box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.1);
  279. box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.1);
  280. border-radius:7px;
  281. }
  282.  
  283. #sidebar img, .post img{
  284. max-width:100%;
  285. }
  286.  
  287. #nav{
  288. margin:50px 0 0 0;
  289. }
  290.  
  291. #quartz {
  292. font-size:10px;
  293. }
  294.  
  295. /*
  296. content in the body of the posts - quotes, asks, etc
  297. "media" contains photos, photosets, videos, audio posts
  298. */
  299. .media{
  300. margin:0 0 10px 0;
  301. }
  302.  
  303. .title{
  304. font-weight:normal;
  305. font-size:18px;
  306. margin:0 0 10px 0;
  307. }
  308.  
  309. .quote{
  310. font-weight:normal;
  311. font-size:16px;
  312. font-style:italic;
  313. margin:0 0 10px 0;
  314. }
  315.  
  316. .question{
  317. margin-bottom:10px;
  318. }
  319.  
  320. blockquote{
  321. margin:0 0 10px 10px;
  322. padding:0 0 0 10px;
  323. border-left:solid 1px {color:bg};
  324. }
  325.  
  326. #audio {
  327. width:100%;
  328. height:50px;
  329. margin-bottom:10px;
  330. display:block;
  331. }
  332.  
  333. #audio .player{background:#FFF;height:26px;width:26px;padding:2px;overflow:hidden;position:absolute;margin-top:8px;margin-left:8px;border:2px solid #fff;opacity:0.8;z-index:2;}
  334.  
  335.  
  336. .art{width:50px;height:50px; position:absolute;display:block;z-index:1;}
  337. .art img{width:50px;height:50px;}
  338.  
  339. .songtitle{margin-left:60px;height:40px;padding:5px 10px;border-left:1px solid {color:border};line-height:13px;overflow:auto;font-size:10px;}
  340.  
  341. .video-container {
  342. position: center;
  343. overflow: hidden;
  344. }
  345.  
  346. .video-container iframe,
  347. .video-container object,
  348. .video-container embed {
  349. position: center;
  350. max-width:270px;
  351. max-height:270px;
  352. }
  353.  
  354. .video-wrapper {
  355. max-width:270px;
  356. max-height:270px;
  357. }
  358.  
  359. /*
  360. post footers - date, tags, via and source
  361. */
  362. .post .footer{
  363. margin:0;
  364. text-align:left;
  365. }
  366.  
  367. /*
  368. post notes
  369. */
  370. ol.notes{
  371. list-style-type:none;
  372. padding:0;
  373. margin:0;
  374. }
  375.  
  376. ol.notes li.note img{
  377. width:16px;
  378. height:16px;
  379. }
  380.  
  381. ol.notes li.note{
  382. margin:0px;
  383. }
  384.  
  385. {CustomCSS}
  386. </style>
  387. </head>
  388.  
  389. <body>
  390. <div id="wrapper">
  391.  
  392. <div id="sidebar">
  393.  
  394. <div id="girl"><a href="/"/><img src="{image:side}"></a></div>
  395.  
  396. <div id="sheik">alec + <a href="/pronouns">it/*e</a><br>read my links byf</p></div>
  397.  
  398. <div id="zelda"><a href="/about">about</a></div><br>
  399. <div id="zelda2"><a href="/disclaimer">id</a></div><br>
  400. <div id="zelda3"><a href="/links">links</a></div>
  401.  
  402. {block:HasPages}
  403. {block:Pages}
  404. <a href="{URL}">{Label}</a><br>
  405. {/block:Pages}
  406. {/block:HasPages}
  407.  
  408. </div>
  409.  
  410. <div id="content">
  411. {block:Posts}
  412.  
  413. <div class="post">
  414.  
  415. {block:Text}
  416. {block:Title}
  417. <div class="title">{Title}</div>
  418. {/block:Title}
  419. {Body}
  420. {/block:Text}
  421.  
  422. {block:Photo}{block:PermalinkPage}{LinkOpenTag}{/block:PermalinkPage}<img src="{PhotoURL-HighRes}">{block:PermalinkPage}{LinkCloseTag}{/block:PermalinkPage}{block:Caption}<div class="cap">{Caption}</div>{/block:Caption}{/block:Photo}
  423.  
  424. {block:Photoset}<div style="width:100%;opacity:1.0;margin:0 0 -1px 0;">{Photoset}</div>{block:Caption}<div class="cap">{Caption}</div>{/block:Caption}{/block:Photoset}
  425.  
  426. {block:Quote}
  427. <div class="quote">"{Quote}"</div>
  428. {block:Source}
  429. <div class="quotesource">{Source}</div>
  430. {/block:Source}
  431. {/block:Quote}
  432.  
  433. {block:Link}
  434. <div class="title"><a href="{URL}">{Name}</a></div>
  435. {block:Description}
  436. <div class="description">{Description}</div>
  437. {/block:Description}
  438. {/block:Link}
  439.  
  440. {block:Chat}
  441. {block:Title}
  442. <div class="title">{Title}</div>
  443. {/block:Title}
  444.  
  445. {block:Lines}
  446. <div class="{Alt} user_{UserNumber}">
  447. {block:Label}
  448. <b>{Label}</b>{/block:Label}
  449. &nbsp;{Line}
  450. </div>
  451. {/block:Lines}
  452. {/block:Chat}
  453.  
  454. {block:Video}
  455. <div class="media"><div class="video-wrapper">
  456. <div class="video-container">{Video-400}</div>
  457. </div></div>
  458. {/block:Video}
  459.  
  460. {block:Audio}
  461. <div id="audio">
  462. <div class="art">{block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}</div>
  463. <div class="player">{AudioPlayerWhite}</div>
  464. <div class="songtitle">
  465. {block:TrackName}<i>{TrackName}</i>{/block:TrackName}<br>
  466. {block:Artist}{Artist}{/block:Artist}<br>
  467. {block:Album}{Album}{/block:Album}
  468. </div>
  469. </div>
  470. {/block:Audio}
  471.  
  472. {block:Answer}
  473. <div class="question">{Asker}: {Question}</div>
  474. <div class="caption">{Answer}</div>
  475. {/block:Answer}
  476.  
  477.  
  478. {block:Date}
  479. <div class="footer">
  480. <a href="{Permalink}"><div style="letter-spacing:1px; text-align:center; word-spacing:1px;">{TimeAgo}<br> {block:Tags}<a href="{TagURL}">#{Tag}</a> {/block:Tags}</div>
  481. </div>
  482.  
  483. {block:PermalinkPage}
  484. {block:NoteCount}
  485. {block:PostNotes}{PostNotes}{/block:PostNotes}
  486. {/block:NoteCount}
  487. {/block:PermalinkPage}
  488. {/block:Date}
  489.  
  490. </div>
  491. {/block:Posts}
  492.  
  493. {block:ContentSource}
  494. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  495. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  496. {/block:SourceLogo}
  497. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  498. {/block:ContentSource}
  499.  
  500. <!--{block:NoRebloggedFrom}{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}{/block:NoRebloggedFrom} -->
  501.  
  502. {block:ifNotInfiniteScroll}
  503. {block:Pagination}
  504. <div id="nav">
  505. {block:PreviousPage}<a href="{PreviousPage}">{lang:Previous}</a>{/block:PreviousPage}
  506.  
  507. {block:NextPage}<a href="{NextPage}">{lang:Next}</a>{/block:NextPage}
  508. </div>
  509. {/block:Pagination}
  510. </div>
  511. </div>
  512.  
  513. </div>
  514. {/block:ifNotInfiniteScroll}
  515.  
  516. {block:ifInfiniteScroll}
  517. </div>
  518. {/block:ifInfiniteScroll}
  519.  
  520. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
  521. <script>window.jQuery || document.write('<script src="http://static.tumblr.com/qxrkgx6/q6kmgn2w2/jquery-1.8.3.min.js"><\/script>')</script>
  522.  
  523. </body>
  524. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement