Advertisement
extasisthemes

Serendipity

Sep 21st, 2017
1,452
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.38 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC>
  2.  
  3. <html>
  4.  
  5. <head>
  6.  
  7. <title>{Title}</title>
  8.  
  9. <link rel="shortcut icon" href="{Favicon}">
  10.  
  11. <meta name="color:Asker Background" content="#fcfcfc"/>
  12. <meta name="color:Background" content="#f5f5f5"/>
  13. <meta name="color:Border" content="#eeeeee"/>
  14. <meta name="color:Credit Background" content="#ffffff"/>
  15. <meta name="color:Link" content="#000000"/>
  16. <meta name="color:Link Hover" content="#cfcfcf"/>
  17. <meta name="color:Main Color" content="#bb7788"/>
  18. <meta name="color:Scrollbar" content="#000000"/>
  19. <meta name="color:Text" content="#555555"/>
  20. <meta name="color:Tooltip Background" content="#ffffff"/>
  21.  
  22. <meta name="image:Image" content="http://i.imgur.com/a1HzN4F.png"/>
  23.  
  24. <meta name="text:Title" content="Serendipity"/>
  25.  
  26. <meta name="text:Link 1" content="/"/>
  27. <meta name="text:Link 1 Title" content="Link One"/>
  28. <meta name="text:Link 2" content="/"/>
  29. <meta name="text:Link 2 Title" content="Link Two"/>
  30. <meta name="text:Link 3" content="/"/>
  31. <meta name="text:Link 3 Title" content="Link Three"/>
  32.  
  33. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  34.  
  35. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  36.  
  37. <script>
  38. (function($){
  39. $(document).ready(function(){
  40. $("a[title]").style_my_tooltips({
  41. tip_follows_cursor:true,
  42. tip_delay_time:90,
  43. tip_fade_speed:600,
  44. attribute:"title"
  45. });
  46. });
  47. })(jQuery);
  48. </script>
  49.  
  50. <script src="https://use.fontawesome.com/b01aac9904.js"></script>
  51.  
  52. <style type="text/css">
  53.  
  54. @import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,700,700i');
  55.  
  56. ::-webkit-scrollbar-thumb:vertical {
  57. background: {color:Scrollbar};
  58. }
  59.  
  60. ::-webkit-scrollbar {
  61. width: 3px;
  62. }
  63.  
  64. #s-m-t-tooltip {
  65. background: {color:Tooltip Background};
  66. border: 1px solid {color:Border};
  67. font-size: 10px;
  68. letter-spacing:0px;
  69. padding: 5px;
  70. text-align: center;
  71. text-transform: uppercase;
  72. z-index: 999999999999999999999999999999999999;
  73. }
  74.  
  75. body {
  76. background: {color:Background};
  77. background-image: url("{image:Header Image}");
  78. background-position: top;
  79. background-repeat: no-repeat;
  80. background-size: cover;
  81. color: {color:Text};
  82. cursor: url(http://i.imgur.com/lhPqll6.png), progress;
  83. font-family: 'Source Sans Pro', sans-serif;
  84. font-size: 13px;
  85. font-style: normal;
  86. font-weight: 400;
  87. letter-spacing: 0px;
  88. margin: 0px;
  89. text-align: justify;
  90. text-transform: none;
  91. word-break: break-word;
  92. }
  93.  
  94. a {
  95. border-bottom: 1px solid {color:Border};
  96. color: {color:Link};
  97. text-decoration: none;
  98. -webkit-transition: all 0.5s ease;
  99. -moz-transition: all 0.5s ease;
  100. -o-transition: all 0.5s ease;
  101. }
  102.  
  103. a:hover {
  104. color: {color:Link Hover};
  105. }
  106.  
  107. h1 {
  108. font-size: 14px;
  109. }
  110.  
  111. blockquote {
  112. border-left: 1px solid {color:Border};
  113. margin: 5px;
  114. padding-left: 5px;
  115. }
  116.  
  117. blockquote img {
  118. height: auto;
  119. max-width: 300px;
  120. }
  121.  
  122. blockquote blockquote {
  123. border-left: 1px solid {color:Border};
  124. padding-left: 5px;
  125. }
  126.  
  127. #container {
  128. background: {color:Tooltip Background};
  129. border: 1px solid {color:Border};
  130. position: fixed;
  131. width: 700px;
  132. height: 76%;
  133. top: 12%;
  134. left: calc(50% - 350px);
  135. }
  136.  
  137. #image {
  138. border-bottom: 1px solid {color:Border};
  139. height: 150px;
  140. width: 500px;
  141. }
  142.  
  143. #image img {
  144. height: 150px;
  145. width: 500px;
  146. }
  147.  
  148. .title {
  149. background: {color:Main Color};
  150. color: {color:Tooltip Background};
  151. padding: 20px;
  152. text-align: center;
  153. text-transform: uppercase;
  154. }
  155.  
  156. #user-information {
  157. border-left: 1px solid {color:Border};
  158. height: 100%;
  159. margin-top: -150px;
  160. right: 0px;
  161. overflow: scroll;
  162. position: absolute;
  163. width: 200px;
  164. }
  165.  
  166. .description {
  167. border-bottom: 1px solid {color:Border};
  168. margin: 20px;
  169. padding-bottom: 20px;
  170. }
  171.  
  172. .links {
  173. border-left: 1px solid {color:Border};
  174. font-style: italic;
  175. margin: 20px;
  176. padding-left: 20px;
  177. text-transform: lowercase;
  178. }
  179.  
  180. .links a {
  181. border-bottom: none;
  182. display: block;
  183. }
  184.  
  185. #content {
  186. height: calc(100% - 150px);
  187. width: 500px;
  188. }
  189.  
  190. #posts {
  191. height: calc(100% - 150px);
  192. overflow: scroll;
  193. position: absolute;
  194. width: 500px;
  195. }
  196.  
  197. .entries {
  198. margin-bottom: 50px;
  199. margin-left: auto;
  200. margin-right: auto;
  201. margin-top: 50px;
  202. width: 400px;
  203. }
  204.  
  205. .caption {
  206. font-style: italic;
  207. margin-top: 5px;
  208. text-align: left;
  209. }
  210.  
  211. .ask {
  212. text-align: justify;
  213. }
  214.  
  215. .asker {
  216. background: {color:Asker Background};
  217. font-size: 12px;
  218. padding: 10px;
  219. text-transform: uppercase;
  220. }
  221.  
  222. .asker a {
  223. border-bottom: none;
  224. padding: 0px;
  225. }
  226.  
  227. .question {
  228. border-bottom: 1px solid {color:Border};
  229. margin-bottom: 30px;
  230. padding-bottom: 10px;
  231. padding-top: 10px;
  232. }
  233.  
  234. .quote, .website a {
  235. font-size: 16px;
  236. text-align: left;
  237. }
  238.  
  239. .chat {
  240. text-align: left;
  241. }
  242.  
  243. .audio {
  244. width: 400px;
  245. }
  246.  
  247. .player-container {
  248. margin-left: 17px;
  249. margin-top: 17px;
  250. position: absolute;
  251. width: 34px;
  252. }
  253.  
  254. .player {
  255. margin-left: -3px;
  256. overflow: hidden;
  257. padding: 5px;
  258. position: relative;
  259. }
  260.  
  261. .audio-information {
  262. font-size: 12px;
  263. padding: 12.5px;
  264. margin-left: 70px;
  265. margin-top: -70px;
  266. text-transform: uppercase;
  267. width: 305px;
  268. }
  269.  
  270. .entries-information {
  271. border-top: 1px solid {color:Border};
  272. font-size: 12px;
  273. margin-top: 20px;
  274. padding-top: 20px;
  275. text-transform: uppercase;
  276. }
  277.  
  278. .notes {
  279. text-align: left;
  280. }
  281.  
  282. .notes img {
  283. display: none;
  284. }
  285.  
  286. .pagination {
  287. font-size: 12px;
  288. margin-bottom: 50px;
  289. margin-left: auto;
  290. margin-right: auto;
  291. margin-top: 50px;
  292. width: 400px;
  293. text-transform: uppercase;
  294. }
  295.  
  296. #credit {
  297. background: {color:Credit Background};
  298. border: 1px solid {color:Border};
  299. bottom: 15px;
  300. float: right;
  301. font-size: 10px;
  302. padding: 5px;
  303. position: fixed;
  304. right: 15px;
  305. text-align: center;
  306. text-transform: uppercase;
  307. -webkit-transition: all 0.5s ease;
  308. -moz-transition: all 0.5s ease;
  309. -o-transition: all 0.5s ease;
  310. }
  311.  
  312. #credit a {
  313. border-bottom: none;
  314. color: {color:Link};
  315. }
  316.  
  317. #credit a:hover {
  318. color: {color:Link Hover};
  319. }
  320.  
  321. {CustomCSS}
  322.  
  323. </style>
  324.  
  325. </head>
  326.  
  327. <body>
  328.  
  329. <div id="container">
  330.  
  331. <div id="image">
  332.  
  333. <img src="{image:Image}"/>
  334.  
  335. </div>
  336.  
  337. <div id="user-information">
  338.  
  339. <div class="title">{text:Title}</div>
  340.  
  341. {block:Description}
  342. <div class="description">{Description}</div>
  343.  
  344. <center>
  345. <i class="fa fa-bars" aria-hidden="true" style="background: {color:Tooltip Background};border: 1px solid {color:Border};border-radius: 100%;margin-top:-33px;padding: 6px;"></i>
  346. </center>
  347. {/block:Description}
  348.  
  349. <div class="links">
  350. <a href="/">Home</a>
  351. <a href="/ask">Ask</a>
  352. {block:ifLink1}<a href="{text:Link 1}">{text:Link 1 Title}</a>{/block:ifLink1}
  353. {block:ifLink2}<a href="{text:Link 2}">{text:Link 2 Title}</a>{/block:ifLink2}
  354. {block:ifLink3}<a href="{text:Link 3}">{text:Link 3 Title}</a>{/block:ifLink3}
  355. <a href="/archive">Archive</a>
  356. </div>
  357.  
  358. </div>
  359.  
  360. <div id="content">
  361.  
  362. <div id="posts">
  363.  
  364. {block:Posts}
  365.  
  366. <div class="entries">
  367.  
  368. {block:Answer}
  369. <div class="ask">
  370. <div class="asker">
  371. <a href="{AskerURL}">{Asker}</a> left a message: {Question}
  372. </div>
  373. {Answer}
  374. </p>
  375. </div>
  376. {/block:Answer}
  377.  
  378. {block:Quote}
  379. <div class="quote">
  380. "{Quote}</i>" {block:Source}— {Source}{/block:Source}
  381. </div>
  382. {/block:Quote}
  383.  
  384. {block:Link}
  385. <div class="website"><a href="{URL}">{Name}</a></div>
  386. {block:Description}
  387. {Description}
  388. {/block:Description}
  389. {/block:Link}
  390.  
  391. {block:Chat}
  392. <div class="chat">
  393. {block:Title}
  394. <h1>{Title}</h1>
  395. {/block:Title}
  396. {block:Lines}
  397. {block:Label}<u>{Label}</u>{/block:Label}
  398. {Line}
  399. <br>
  400. {/block:Lines}
  401. </div>
  402. {/block:Chat}
  403.  
  404. {block:Text}
  405. {block:Title}
  406. <h1>{Title}</h1>
  407. {/block:Title}
  408. {Body}
  409. {/block:Text}
  410.  
  411. {block:Audio}
  412. <div class="audio">
  413. <div class="player-container">
  414. <div class="player">
  415. {block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}
  416. </div>
  417. </div>
  418. {block:AlbumArt}
  419. <img src="{AlbumArtURL}" height="70" width="70">
  420. {/block:AlbumArt}
  421.  
  422. <div class="audio-information">
  423. {block:TrackName}
  424. <b>Title:</b> {TrackName} <br>
  425. {/block:TrackName}
  426. {block:Artist}
  427. <b>Artist:</b> {Artis} <br>
  428. {/block:Artist}
  429. {block:Album}
  430. <b>Album:</b> {Album}
  431. {/block:Album}
  432. </div>
  433. {block:Caption}
  434. <div class="caption">{Caption}</div>
  435. {/block:Caption}
  436. </div>
  437. {/block:Audio}
  438.  
  439. {block:Photo}
  440. <img src="{PhotoURL-400}"/>
  441. {block:Caption}
  442. <div class="caption">{Caption}</div>
  443. {/block:Caption}
  444. {/block:Photo}
  445.  
  446. {block:Photoset}
  447. {Photoset}
  448. {block:Caption}
  449. <div class="caption">{Caption}</div>
  450. {/block:Caption}
  451. {/block:Photoset}
  452.  
  453. {block:Video}
  454. {Video-400}
  455. {block:Caption}
  456. <div class="caption">{Caption}</div>
  457. {/block:Caption}
  458. {/block:Video}
  459.  
  460. {block:Date}
  461. <div class="entries-information">
  462. {Month} {DayOfMonth}, {Year}
  463. <font style="margin-left:10px;">
  464. <a href="{Permalink}">{NoteCount}</a> notes
  465. </font>
  466. <font style="float:right;">
  467. <a href="{ReblogParentURL}">Via</a> /
  468. {block:ContentSource}
  469. <a href="{SourceURL}">Source</a> /
  470. {/block:ContentSource}
  471. <a href="{ReblogURL}" target="_blank">Reblog</a>
  472. </font>
  473. <br>
  474. {block:HasTags}
  475. {block:Tags}
  476. <a href="{TagURL}">#{Tag}</a>
  477. {/block:Tags}
  478. {/block:HasTags}
  479. {block:PostNotes}
  480. <div class="notes">{PostNotes}</div>
  481. {/block:PostNotes}
  482. </div>
  483. {/block:Date}
  484.  
  485. </div>
  486.  
  487. {/block:Posts}
  488.  
  489. {block:IndexPage}
  490. <div class="pagination">
  491. {CurrentPage} out of {TotalPages}
  492. <font style="float:right;">
  493. {block:PreviousPage}
  494. <a href="{PreviousPage}">previous</a> /
  495. {/block:PreviousPage}
  496. {block:NextPage}
  497. <a href="{NextPage}">next</a>
  498. {/block:NextPage}
  499. </font>
  500. </div>
  501. {/block:IndexPage}
  502.  
  503. </div>
  504.  
  505. </div>
  506.  
  507. </div>
  508.  
  509. <div id="credit">
  510. <a href="http://extasisthemes.tumblr.com/themes">ET</a>
  511. </div>
  512.  
  513. </body>
  514.  
  515. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement