Advertisement
jesstroya

10/07/14

Oct 7th, 2014
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.88 KB | None | 0 0
  1.  
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.  
  4. <!--------------------------------------------------------------------
  5. Theme by rnisogyny. Please do not remove the credit link or use this as a base for your own themes. Thank you !!
  6. --------------------------------------------------------------------->
  7.  
  8. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  9.  
  10. <head>
  11.  
  12. <link rel="shortcut icon" href="{Favicon}">
  13. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  14. <title>{Title}</title>
  15.  
  16. <!--------------------------VARIABLES-------------------------------->
  17.  
  18. <meta name="color:background" content="#f0f8fc" />
  19. <meta name="color:text" content="#696969" />
  20. <meta name="color:titles" content="#e0d1d1" />
  21. <meta name="color:posts" content="#e0d1d1" />
  22. <meta name="color:links" content="#471644" />
  23. <meta name="color:link hover" content="#d7a7e8" />
  24. <meta name="color:sidebar links" content="#d7a7e8" />
  25. <meta name="color:sidebar links hover" content="#d7a7e8" />
  26. <meta name="color:shadow" content="#333333" />
  27. <meta name="color:description" content="#e0d1d1" />
  28. <meta name="color:sidebar background" content="#ddd1e0" />
  29.  
  30. <meta name="image:sidebar image" content="" />
  31. <meta name="image:sidebar background" content="" />
  32. <meta name="image:background" content="" />
  33.  
  34. <meta name="if:background cover" content="1" />
  35. <meta name="if:show notes source permalink" content="1" />
  36. <meta name="if:rounded corners" content="0" />
  37. <meta name="if:shadow" content="1" />
  38. <meta name="if:transparent posts" content="0" />
  39.  
  40. <!----------------------------LINKS---------------------------------->
  41.  
  42. <meta name="text:Link 1 Text" content="" />
  43. <meta name="text:Link 1 URL" content="" />
  44. <meta name="text:Link 2 Text" content="" />
  45. <meta name="text:Link 2 URL" content="" />
  46. <meta name="text:Link 3 Text" content="" />
  47. <meta name="text:Link 3 URL" content="" />
  48. <meta name="text:Link 4 Text" content="" />
  49. <meta name="text:Link 4 URL" content="" />
  50. <meta name="text:Link 5 Text" content="" />
  51. <meta name="text:Link 5 URL" content="" />
  52.  
  53. <link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
  54. <link href='http://fonts.googleapis.com/css?family=Source+Code+Pro' rel='stylesheet' type='text/css'>
  55. <link href='http://fonts.googleapis.com/css?family=Anonymous+Pro' rel='stylesheet' type='text/css'>
  56.  
  57. <style type="text/css">
  58.  
  59. body {
  60. background-color:{color:background};
  61. background-image: url('{image:background}');
  62. background-attachment:fixed;
  63. {block:ifbackgroundcover}
  64. background-size:cover;
  65. {/block:ifbackgroundcover}
  66. {block:ifnotbackgroundcover}
  67. background-size:height;
  68. {/block:ifnotbackgroundcover}
  69. font-family: 'Inconsolata', sans-serif;
  70. }
  71.  
  72. a {
  73. text-decoration:none;
  74. color:{color:links};
  75. -webkit-transition: all 0.7s ease-out;
  76. -moz-transition: all 0.7s ease-out;
  77. transition: all 0.7s ease-out;
  78. }
  79.  
  80. a:link {
  81. text-decoration: none;
  82. -o-transition: all 0.5s ease-out;
  83. -webkit-transition: all 0.5s ease-out;
  84. -moz-transition: all 0.5s ease-out;
  85. }
  86.  
  87. a:visited {
  88. text-decoration: none;
  89. -o-transition: all 0.5s ease-out;
  90. -webkit-transition: all 0.5s ease-out;
  91. -moz-transition: all 0.5s ease-out;
  92. }
  93.  
  94. a:hover {
  95. color:{color:link hover};
  96. -o-transition: all 0.2s ease-out;
  97. -webkit-transition: all 0.2s ease-out;
  98. -moz-transition: all 0.2s ease-out;
  99. }
  100.  
  101. img {
  102. border-radius:4px;
  103. max-width:400px;
  104. -webkit-transition: opacity 0.2s linear;
  105. opacity:.8;
  106. -o-transition: all 0.5s ease-out;
  107. -webkit-transition: all 0.5s ease-out;
  108. -moz-transition: all 0.5s ease-out;
  109. }
  110.  
  111. img:hover {
  112. -webkit-transition: opacity 0.5s linear;
  113. -o-transition: all 0.5s ease-out;
  114. -webkit-transition: all 0.5s ease-out;
  115. -moz-transition: all 0.5s ease-out;
  116. opacity:1;
  117. }
  118.  
  119. #sidebar {
  120. position:fixed;
  121. margin-top:-10px;
  122. margin-left:-10px;
  123. width:450px;
  124. height:100%;
  125. background-image: url('{image:sidebar background}');
  126. background-color:{color:sidebar background};
  127. background-size:cover;
  128. }
  129.  
  130. #sbimg {
  131. width:120px;
  132. height:120px;
  133. margin-top:220px;
  134. margin-bottom:10px;
  135. border:7px solid rgba(255,255,255,.4);
  136. }
  137.  
  138. #sbimg img {
  139. max-width:120px;
  140. max-height:120px;
  141. opacity:1;
  142. padding-bottom:10px;
  143. }
  144.  
  145. .sblinks {
  146. margin-bottom:10px;
  147. }
  148.  
  149. .sblinks a {
  150. color:{color:sidebar links};
  151. max-width:50px;
  152. display:inline;
  153. font-size:7pt;
  154. text-align:center;
  155. border-right:1px solid gray;
  156. border-left:1px solid gray;
  157. padding:5px;
  158. font-size:11px;
  159. font-weight:lighter;
  160. }
  161.  
  162. .sblinks a:hover {
  163. color:{color:sidebar links hover};
  164. }
  165.  
  166. .desc {
  167. padding:5px;
  168. width:250px;
  169. font-size:11px;
  170. text-align:center;
  171. background:rgba(255,255,255,.85);
  172. }
  173.  
  174. .bor {
  175. border:10px solid rgba(255,255,255,.5);
  176. width:260px;
  177. }
  178.  
  179. #pagination {
  180. margin-top:15px;
  181. max-width:250px;
  182. }
  183.  
  184. #pagination a {
  185. background:rgba(255,255,255,.85);
  186. font-size:14px;
  187. width:50px;
  188. text-align:center;
  189. padding:5px;
  190. }
  191.  
  192. #pagination .current_page {
  193. background:rgba(255,255,255,.85);
  194. font-size:14px;
  195. width:50px;
  196. text-align:center;
  197. padding:5px;
  198. }
  199.  
  200. #entry {
  201. font-size:12px;
  202. margin-left:750px;
  203. margin-top:40px;
  204. float:left;
  205. text-align:justify;
  206. margin-bottom:10px;
  207. }
  208.  
  209. #post {
  210. {block:ifnotroundedcorners}
  211. border-radius:4px;
  212. {/block:ifnotroundedcorners}
  213. {block:ifroundedcorners}
  214. border-radius:10px;
  215. {block:ifroundedcorners}
  216. font-size:12px;
  217. margin:15px;
  218. padding:10px;
  219. width:400px;
  220. border:1px solid;
  221. {block:iftransparentposts}
  222. background:rgba(255,255,255,.5);
  223. {/block:iftransparentposts}
  224. {block:ifnottransparentposts}
  225. background:{color:posts};
  226. {/block:ifnottransparentposts}
  227. color:{color:text};
  228. {block:ifshadow}
  229. -moz-box-shadow:7px 7px 2px {color:shadow};
  230. -webkit-box-shadow:7px 7px 2px {color:shadow};
  231. box-shadow:7px 7px 2px {color:shadow};
  232. {/block:ifshadow}
  233. }
  234.  
  235. #post .info {
  236. margin-top:-25px;
  237. padding-top:10px;
  238. opacity:0;
  239. font-size:10px;
  240. text-align:center;
  241. -webkit-transition: all 0.6s ease-out;
  242. -moz-transition: all 0.6s ease-out;
  243. transition: all 0.6s ease-out;
  244. border-top:1px dashed;
  245. }
  246.  
  247. #post:hover .info {
  248. margin-top:10px;
  249. padding-top:10px;
  250. opacity:100;
  251. font-size:10px;
  252. text-align:center;
  253. -webkit-transition: all 0.6s ease-out;
  254. -moz-transition: all 0.6s ease-out;
  255. transition: all 0.6s ease-out;
  256. border-top:1px dashed;
  257. }
  258.  
  259. #post .tags {
  260. margin-top:-15px;
  261. -webkit-transition: all 0.3s ease-out;
  262. -moz-transition: all 0.3s ease-out;
  263. transition: all 0.3s ease-out;
  264. }
  265.  
  266. #post:hover .tags {
  267. margin-top:5px;
  268. -webkit-transition: all 0.3s ease-out;
  269. -moz-transition: all 0.3s ease-out;
  270. transition: all 0.3s ease-out;
  271. }
  272.  
  273. #titles {
  274. margin-bottom:10px;
  275. font-size:15px;
  276. font-family: 'Source Code Pro', '';
  277. padding:5px;
  278. border-bottom:1px solid gray;
  279. letter-spacing:1px;
  280. }
  281.  
  282. .quote {
  283. font-family: 'Anonymous Pro', '';
  284. font-size:18px;
  285. }
  286.  
  287. .source {
  288. text-align:right;
  289. }
  290.  
  291. .bb {
  292. position:relative;
  293. border-radius:7px;
  294. border:1px solid white;
  295. background-color:rgba(255,255,255,.5);
  296. padding:10px;
  297. text-align:center;
  298. width:380px;
  299. -moz-border-radius:10px;
  300. -webkit-border-radius:10px;
  301. -webkit-box-shadow: 0px 0 3px rgba(0,0,0,0.25);
  302. -moz-box-shadow: 0px 0 3px rgba(0,0,0,0.25);
  303. box-shadow: 0px 0 3px rgba(0,0,0,0.25);
  304. }
  305.  
  306. .bb:after {
  307. position: absolute;
  308. display: block;
  309. content: "";
  310. border-color: #eee transparent transparent transparent;
  311. border-style: solid;
  312. border-width: 10px;
  313. height:0;
  314. width:0;
  315. position:absolute;
  316. bottom:-19px;
  317. right:2em;
  318. }
  319.  
  320. #question {
  321. padding-bottom:10px;
  322. }
  323.  
  324. .blog {
  325. text-align:right;
  326. margin-bottom:-30px;
  327. }
  328.  
  329. .bb2 {
  330. border:1px solid white;
  331. width:230px;
  332. height:auto;
  333. margin-left:150px;
  334. margin-top:-25px;
  335. padding:10px;
  336. background-color:rgba(255,255,255,.5);
  337. position:relative;
  338. -moz-border-radius: 10px;
  339. -webkit-border-radius: 10px;
  340. border-radius: 7px;
  341. -webkit-box-shadow: 0px 0 3px rgba(0,0,0,0.25);
  342. -moz-box-shadow: 0px 0 3px rgba(0,0,0,0.25);
  343. box-shadow: 0px 0 3px rgba(0,0,0,0.25);
  344. }
  345.  
  346. .bb2:before {
  347. content:"";
  348. position:absolute;
  349. width:0;
  350. height:0;
  351. border-top:7px solid transparent;
  352. border-right:20px solid rgba(255,255,255,.5);
  353. border-bottom:7px solid transparent;
  354. margin:0px 0 0 -30px;
  355. }
  356.  
  357. .bb3 {
  358. border:1px solid white;
  359. height:auto;
  360. width:230px;
  361. padding:10px;
  362. background-color:rgba(255,255,255,.5);
  363. position:relative;
  364. -moz-border-radius: 10px;
  365. -webkit-border-radius: 10px;
  366. border-radius: 7px;
  367. -webkit-box-shadow: 0px 0 3px rgba(0,0,0,0.25);
  368. -moz-box-shadow: 0px 0 3px rgba(0,0,0,0.25);
  369. box-shadow: 0px 0 3px rgba(0,0,0,0.25);
  370. }
  371.  
  372. .bb3:after {
  373. content:"";
  374. position:absolute;
  375. width:0;
  376. height:0;
  377. border-top:7px solid transparent;
  378. border-left:20px solid rgba(255,255,255,.5);
  379. border-bottom:7px solid transparent;
  380. margin:-25px 0 0 240px;
  381. }
  382.  
  383. #audio {
  384. overflow:hidden;
  385. }
  386.  
  387. .infos {
  388. margin-left:10px;
  389. padding-top:10px;
  390. }
  391.  
  392. .art {
  393. opacity:1;
  394. padding-right:10px;
  395. }
  396.  
  397. {CustomCSS}
  398.  
  399. </style>
  400.  
  401. </head>
  402.  
  403. <body>
  404.  
  405. <div id="sidebar">
  406.  
  407. <center>
  408. <div id="sbimg">
  409. <a href="/"><img src="{image:sidebar image}"/></a>
  410. </div> <!----sbimg---->
  411.  
  412. <div class="sblinks">
  413. <a href="{text:Link 1 URL}">I</a>
  414. <a href="{text:Link 2 URL}">II</a>
  415. <a href="{text:Link 3 URL}">III</a>
  416. <a href="{text:Link 4 URL}">IV</a>
  417. <a href="http://rnisogyny.tumblr.com">V</a>
  418. </div> <!----sblinks---->
  419.  
  420. {block:Description}
  421. <div class="bor">
  422. <div class="desc">
  423. {Description}
  424. </div> <!----desc---->
  425. </div>
  426. {/block:Description}
  427.  
  428. {block:Pagination}
  429. <div id="pagination">
  430. {block:PreviousPage}
  431. <a href="{PreviousPage}">❮</a>
  432. {/block:PreviousPage}
  433. {block:JumpPagination length="3"}
  434. {block:CurrentPage}
  435. <span class="current_page">{PageNumber}</span>
  436. {/block:CurrentPage}
  437. {block:JumpPage}
  438. <a class="jump_page" href="{URL}">{PageNumber}</a>
  439. {/block:JumpPage}
  440. {/block:JumpPagination}
  441. {block:NextPage}
  442. <a href="{NextPage}">❯</a>
  443. {/block:NextPage}
  444. </div> <!----pagination--->
  445. {/block:Pagination}
  446. </center>
  447.  
  448. </div> <!----sidebar---->
  449.  
  450. <div id="entry">
  451.  
  452. {block:Posts}
  453.  
  454. <div id="post">
  455.  
  456. {block:Title}
  457. <center>
  458. <div id="titles">
  459. <a href="{Permalink}">{Title}</a>
  460. </div> <!----titles---->
  461. <center>
  462. {/block:Title}
  463. {block:Text}
  464. {Body}
  465. {/block:Text}
  466.  
  467. {block:Quote}
  468. <div class="quote">
  469. <div class="bb">
  470. “{Quote}”
  471. </div>
  472. </div> <!----quote---->
  473. <br>
  474. <div class="source">
  475. — {Source}
  476. </div> <!----source---->
  477. {/block:Quote}
  478.  
  479. {block:Link}
  480. <center>
  481. <div id="titles">
  482. <a href="{URL}" class="link" {Target}>{Name}</a>
  483. </div> <!----titles---->
  484. </center>
  485. {block:Description}
  486. <p>{Description}</p>
  487. {/block:Description}
  488. {/block:Link}
  489.  
  490. {block:Photo}
  491. {LinkOpenTag}
  492. <center>
  493. <img src="{PhotoURL-400}" alt="{PhotoAlt}"/>
  494. </center>
  495. {LinkCloseTag}
  496. {block:Caption}
  497. {Caption}
  498. {/block:Caption}
  499. {/block:Photo}
  500.  
  501. {block:Photoset}
  502. <center>
  503. {Photoset-400}
  504. </center>
  505. {block:Caption}
  506. {Caption}
  507. {/block:Caption}
  508. {/block:Photoset}
  509.  
  510. {block:Chat}
  511. {block:Title}
  512. {Title}<br>
  513. {/block:Title}
  514. {block:Lines}
  515. {block:Label}<b>{Label}</b>{/block:Label}
  516. {Line}<br>{/block:Lines}
  517. {/block:Chat}
  518.  
  519. {block:Video}
  520. {Video-250}
  521. {block:Caption}
  522. {Caption}
  523. {/block:Caption}
  524. {/block:Video}
  525.  
  526. {block:Answer}
  527. <div class="asker">
  528. <img src="{AskerPortraitURL-24}">
  529. {Asker}
  530. </div> <!----asker---->
  531. <div id="question">
  532. <div class="bb2">
  533. {Question}
  534. </div> <!----bb2---->
  535. </div> <!----question---->
  536. <div id="ans">
  537. <div class="bb3">
  538. {Answer}
  539. </div> <!----bb3---->
  540. <div class="blog">
  541. <img src="{PortraitURL-24}">
  542. {Name}
  543. </div> <!----blog---->
  544. </div> <!----ans---->
  545. {/block:Answer}
  546.  
  547. {block:Audio}
  548.  
  549. {block:AlbumArt}
  550. <img src="{AlbumArtURL}" width="80px" class="art" align="left">
  551. {/block:AlbumArt}
  552.  
  553. <div class="audiopl">
  554. {AudioPlayerWhite}
  555. </div> <!----audiopl---->
  556.  
  557. <div id="infos">
  558. {block:TrackName}
  559. <b>Track:</b> {TrackName}
  560. {/block:TrackName}
  561. <br><b>Artist:</b> {block:Artist}
  562. {Artist}
  563. {/block:Artist}
  564. {block:Album}
  565. <br><b>Album:</b> {Album}
  566. {/block:Album}
  567. </div> <!----infos---->
  568.  
  569. <div class="audcaption">
  570. <br>
  571. <br>
  572. {Caption}
  573. </div> <!----audcaption---->
  574.  
  575. {/block:Audio}
  576.  
  577. {block:ifshownotessourcepermalink}
  578. <div class="info">
  579.  
  580. <a href="{Permalink}">
  581. {block:NoteCount} <a href="{Permalink}">
  582. ⚡ {NoteCount}</a>
  583. {/block:NoteCount}
  584. {block:Date}
  585. • <a href="{Permalink}">posted {TimeAgo}</a>
  586. {/block:Date}
  587. </a>
  588.  
  589. {block:RebloggedFrom} • <a href="{ReblogParentURL}">
  590. via</a>
  591. {block:ContentSource} • <a href="{SourceURL}">
  592. source</a>{block:ContentSource}
  593. {/block:RebloggedFrom}<br>
  594.  
  595. {block:HasTags}
  596. <div class="tags">
  597. {block:Tags}
  598. #<a href="{TagURL}">{Tag}</a>,
  599. {/block:Tags}
  600. </div> <!----tags---->
  601. {/block:HasTags}
  602. </div> <!----info---->
  603. {/block:ifshownotessourcepermalink}
  604. </div> <!----post---->
  605. {/block:Posts}
  606.  
  607. </div> <!----entry---->
  608.  
  609. </body>
  610.  
  611. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement