Advertisement
anakinskywalker

NIPPLES

Dec 26th, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.46 KB | None | 0 0
  1. <!--
  2.  
  3. base code by chraliecox
  4. go wild, make it your own, no credit needed
  5.  
  6. --
  7.  
  8. video resizing script by
  9. https://shythemes.tumblr.com/
  10.  
  11. -->
  12.  
  13. <!DOCTYPE html>
  14.  
  15. <head>
  16.  
  17. <title>{Title}</title>
  18.  
  19. <link rel="shortcut icon" href="{Favicon}">
  20. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  21. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  22.  
  23. <!--Default Variables-->
  24.  
  25. <meta name="color:background" content="#ffffff"/>
  26. <meta name="color:text" content="#2b2b2b"/>
  27. <meta name="color:link" content="#2b2b2b"/>
  28. <meta name="color:link hover" content="#949494"/>
  29. <meta name="color:blockquote" content="#dadada"/>
  30. <meta name="color:tag underline" content="#B40431" />
  31.  
  32. <meta name="image:sidebar" content=""/>
  33.  
  34. <meta name="text:link 1 URL" content="" />
  35. <meta name="text:link 1" content="" />
  36. <meta name="text:link 2 URL" content="" />
  37. <meta name="text:link 2" content="" />
  38. <meta name="text:link 3 URL" content="" />
  39. <meta name="text:link 3" content="" />
  40.  
  41. <!--CSS customization here. -->
  42.  
  43. <link href='https://fonts.googleapis.com/css?family=Karla' rel='stylesheet' type='text/css'>
  44.  
  45. <style type="text/css">
  46.  
  47. #s-m-t-tooltip{
  48. position:absolute;
  49. margin-top: 15px;
  50. z-index:9999;
  51. background:{color:background};
  52. }
  53.  
  54. /*basics*/
  55.  
  56. blockquote {
  57. padding-left:12px;
  58. border-left:3px solid {color:blockquote};
  59. margin-left:8px;
  60. }
  61.  
  62. ul {
  63. list-style:none;
  64. text-align:left;
  65. padding-left:0;
  66. }
  67.  
  68. li {
  69. position:relative;
  70. padding-left:30px;
  71. }
  72.  
  73. ul li:before {
  74. position:absolute;
  75. left:15px;
  76. vertical-align:baseline!important;
  77. content:'›';
  78. }
  79.  
  80. body {
  81. background:{color:background};
  82. color:{color:text};
  83. font-family:arial;
  84. font-size:11px;
  85. margin:0;
  86. text-align:justify;
  87. line-height:16px;
  88. }
  89.  
  90. a {
  91. color:{color:link};
  92. -moz-transition-duration:0.4s;
  93. -webkit-transition-duration:0.4s;
  94. -o-transition-duration:0.4s;
  95. text-decoration:none;
  96. border-bottom: 1px solid {color:tag underline};
  97. }
  98.  
  99. a:hover {
  100. color:{color:link hover};
  101. -moz-transition-duration:0.4s;
  102. -webkit-transition-duration:0.4s;
  103. -o-transition-duration:0.4s;
  104. }
  105.  
  106. img {
  107. opacity:1;
  108. border:none;
  109. text-decoration:none;
  110. }
  111.  
  112. small {
  113. font-size:11px;
  114. }
  115.  
  116. big {
  117. font-size:11px;
  118. }
  119.  
  120. #title {font-size:12px;
  121. line-height:18px;
  122. margin-bottom:10px;
  123. font-weight:bold;
  124. text-transform:none;
  125. text-align:left;
  126. }
  127.  
  128. /*sidebar*/
  129.  
  130. #sidebar {
  131. text-align:center;
  132. position:fixed;
  133. margin-left:-350px;
  134. margin-top:150px;
  135. width:245px;
  136. }
  137.  
  138. #sidebar img {
  139. width:245px;
  140. }
  141.  
  142. #links {
  143. font-size:12px;
  144. margin-top:10px;
  145. text-align:center;
  146. text-transform:lowercase;
  147. font-weight:bold;
  148. }
  149.  
  150. #links a {
  151. margin-bottom:0px;
  152. -moz-transition-duration:0.4s;
  153. -webkit-transition-duration:0.4s;
  154. -o-transition-duration:0.4s;
  155. }
  156.  
  157. #description {
  158. margin-top:10px;
  159. text-align:center;
  160. }
  161.  
  162. /*pagination*/
  163.  
  164. #pagination {
  165. text-transform:lowercase;
  166. text-align:center;
  167. font-size:13px;
  168. margin-bottom:120px;
  169. }
  170.  
  171. #pagination a {
  172. padding:0 3px;
  173. }
  174.  
  175. /*container*/
  176.  
  177. #con {
  178. left:50%;
  179. margin-left:-140px;
  180. position:absolute;
  181. }
  182.  
  183. /*posts*/
  184.  
  185. #entries {
  186. margin-top:95px;
  187. width:500px;
  188. }
  189.  
  190. #posts {
  191. width:500px;
  192. {block:IndexPage}
  193. margin-bottom:80px;
  194. {/block:IndexPage}
  195. {block:PermalinkPage}
  196. margin-bottom:50px;
  197. {/block:PermalinkPage}
  198. }
  199.  
  200. #posts img {
  201. max-width:500px;
  202. }
  203.  
  204. #posts img, #posts li, #posts blockquote {
  205. max-width: 100%;
  206. }
  207.  
  208. .caption {
  209. width:100%;
  210. margin-top:13px;
  211. margin-bottom:12px;
  212. }
  213.  
  214. a.tumblr_blog {
  215. font-weight:bold;
  216. -moz-transition-duration:0.4s;
  217. -webkit-transition-duration:0.4s;
  218. -o-transition-duration:0.4s;
  219. }
  220.  
  221. /*quote*/
  222.  
  223. #titlequote {
  224. text-align:left;
  225. font-size:12px;
  226. line-height:17px;
  227. font-weight:bold;
  228. }
  229.  
  230. #source {
  231. margin-top:0px;
  232. margin-bottom:11px;
  233. margin-left:0px;
  234. }
  235.  
  236. /*asks*/
  237.  
  238. .q {
  239. line-height:17px;
  240. font-size:11px;
  241. }
  242.  
  243. .as {
  244. font-weight:normal;
  245. }
  246.  
  247. .a {
  248. margin-top:13px;
  249. }
  250.  
  251. /*chat*/
  252.  
  253. .chat ol {
  254. padding:0;
  255. list-style:none;
  256. }
  257.  
  258. .line {
  259. padding:0px 0;
  260. }
  261.  
  262. .label {
  263. font-weight:bold;
  264. }
  265.  
  266. /*permalink and notes*/
  267.  
  268. #permalink {
  269. font-size:11px;
  270. text-align:left;
  271. margin-top:6px;
  272. text-transform:lowercase;
  273. }
  274.  
  275. #permalink a {
  276. margin-right:0px;
  277. }
  278.  
  279. .tags {
  280. font-size:11px;
  281. text-transform:none;
  282. }
  283.  
  284. .pagenotes {
  285. {block:IndexPage}
  286. display: none!important;
  287. {/block:IndexPage}
  288. width:500px;
  289. text-align:left;
  290. }
  291.  
  292. .pagenotes img {
  293. display:none!important;
  294. }
  295.  
  296. .pagenotes li {
  297. list-style-type:none;
  298. padding:2px 0px;
  299. text-align:left;
  300. margin:0 0 0 -40px;
  301. }
  302.  
  303. {CustomCSS}
  304.  
  305. </style>
  306.  
  307. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  308. <script src ="//static.tumblr.com/fwgzvyf/l6jnyutne/shythemes.vr.js"></script>
  309.  
  310. </head>
  311.  
  312. <body>
  313.  
  314. <div id="con">
  315.  
  316. <div id="sidebar">
  317. <div id="sidebar img"><img src="{image:sidebar}"></div>
  318.  
  319.  
  320. <div id="description">{Description}</div>
  321.  
  322. <div id="links">
  323. <a href="/">refresh</a>&nbsp;&nbsp;
  324. <a href="/ask">ask</a>&nbsp;&nbsp;
  325. {block:iflink1}<a href="{text:link 1 URL}">{text:link 1}</a>{/block:iflink1}&nbsp;&nbsp;
  326. {block:iflink2}<a href="{text:link 2 URL}" >{text:link 2}</a>{/block:iflink2}&nbsp;&nbsp;
  327. {block:iflink3}<a href="{text:link 3 URL}" >{text:link 3}</a>{/block:iflink3}
  328.  
  329. </div>
  330.  
  331. </div>
  332.  
  333. <div id="entries">
  334.  
  335. {block:Posts}
  336.  
  337. <div id="posts">
  338.  
  339. {block:Quote}
  340. <div id="titlequote"><i class="fa fa-quote-left"></i>&nbsp; {Quote} &nbsp;<i class="fa fa-quote-right"></i></div>
  341. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  342. {/block:Quote}
  343.  
  344. {block:Text}
  345. {block:Title}
  346. <div id="title">{Title}</div>{/block:Title}
  347. {Body}
  348. {/block:Text}
  349.  
  350. {block:link}
  351. <div id="title"><a href="{URL}"><i class="fa fa-link"></i>&nbsp; {Name}</a></div>
  352. {block:Description}{Description}{/block:Description}
  353. {/block:link}
  354.  
  355. {block:Chat}
  356. {block:Title}
  357. <div id="title">{Title}</div>{/block:Title}
  358. {/block:Text}
  359. {block:lines}
  360. {block:label}
  361. <br><b>{label}</b>
  362. {/block:label}
  363. {line}
  364. {/block:lines}
  365. {/block:Chat}
  366.  
  367. {block:Photo}
  368. {linkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{linkCloseTag}
  369. {/block:Photo}
  370.  
  371. {block:Photoset}
  372. {Photoset-500}
  373. {/block:Photoset}
  374.  
  375. <div class="video">{Video-500}</div>
  376.  
  377. {block:Audio}
  378. {block:AudioEmbed}{AudioEmbed-500}{/block:AudioEmbed}
  379. {/block:Audio}
  380.  
  381. {block:Answer}
  382. <div class="q">
  383. <div class="as"> <b><big>{Asker} said:</big></b>
  384. {Question}</div></div>
  385. <div class="a">{Answer}</div>
  386. {/block:Answer}
  387.  
  388. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  389.  
  390. <!-- {block:ContentSource} {SourceURL} {/block:ContentSource} {block:RebloggedFrom} {ReblogRootURL} {ReblogParentURL} {/block:RebloggedFrom} -->
  391.  
  392. {block:Date}
  393. <div id="permalink">
  394. <a href="{Permalink}" ><b>{timeago}</b></a>
  395. {block:NoteCount} with <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}<div style="float:right;">{block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource} <a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}</div>
  396.  
  397. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>&nbsp;&nbsp;{/block:Tags}</div>{/block:HasTags}
  398.  
  399. </div>
  400.  
  401. {/block:Date}
  402.  
  403. </div>
  404.  
  405. {block:PostNotes}
  406. <div class="pagenotes">
  407. {PostNotes}
  408. </div>
  409. {/block:PostNotes}
  410.  
  411. {/block:Posts}
  412.  
  413. <div id="pagination">
  414. {block:Pagination}
  415. {block:PreviousPage}
  416. <a href="{PreviousPage}">previous page</a>
  417. {/block:PreviousPage}
  418.  
  419.  
  420. {block:NextPage}
  421. <a href="{NextPage}">next page</a>
  422. {/block:NextPage}
  423. {/block:Pagination}
  424. </div>
  425.  
  426. </div>
  427.  
  428. </div>
  429.  
  430. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement