Advertisement
officialdogblog

Simple 420 Theme

Aug 12th, 2013
617
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.12 KB | None | 0 0
  1. <div class="sidealign">
  2. <div id="sidebar">
  3. <center>
  4.  
  5. <a href="/"><img src="{PortraitURL-64}" {block:IfRoundCorners}style="-webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px;"{/block:IfRoundCorners} /></a>
  6.  
  7. </center>
  8. </div>
  9.  
  10. <center>
  11. {block:IfLink1}
  12. <div id="sidelink">
  13. <a href="{text:Link 1 URL}">{text:Link 1 Title}</a>
  14. </div>
  15. {/block:IfLink1}
  16.  
  17. {block:IfLink2}
  18. <div id="sidelink">
  19. <a href="{text:Link 2 URL}">{text:Link 2 Title}</a>
  20. </div>
  21. {/block:IfLink2}
  22.  
  23. {block:IfLink3}
  24. <div id="sidelink">
  25. <a href="{text:Link 3 URL}">{text:Link 3 Title}</a>
  26. </div>
  27. {/block:IfLink3}
  28.  
  29. {block:IfLink4}
  30. <div id="sidelink">
  31. <a href="{text:Link 4 URL}">{text:Link 4 Title}</a>
  32. </div>
  33. {/block:IfLink4}
  34.  
  35. {block:IfLink5}
  36. <div id="sidelink">
  37. <a href="{text:Link 5 URL}">{text:Link 5 Title}</a>
  38. </div>
  39. {/block:IfLink5}
  40.  
  41. <div id="sidelink">
  42. <a href="http://gay8.tumblr.com/">credit</a>
  43. </div>
  44. </div>
  45.  
  46. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  47. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  48. <head>
  49.  
  50. <meta name="color:Background" content="#ADDFE7" />
  51. <meta name="color:Chat Even Background" content="" />
  52. <meta name="color:Chat Odd Background" content="" />
  53. <meta name="color:Link" content="#5A8E9C" />
  54. <meta name="color:Link Hover" content="" />
  55. <meta name="color:Text" content="#000000" />
  56.  
  57. <meta name="if:Big Background Image" content="0" />
  58. <meta name="if:Link 1" content="0" />
  59. <meta name="if:Link 2" content="0" />
  60. <meta name="if:Link 3" content="0" />
  61. <meta name="if:Link 4" content="0" />
  62. <meta name="if:Link 5" content="0" />
  63. <meta name="if:Round Corners" content="1" />
  64. <meta name="if:Transparent Posts" content="1" />
  65.  
  66. <meta name="image:Background" content="" />
  67.  
  68. <meta name="text:Link 1 Title" content="" />
  69. <meta name="text:Link 1 URL" content="" />
  70. <meta name="text:Link 2 Title" content="" />
  71. <meta name="text:Link 2 URL" content="" />
  72. <meta name="text:Link 3 Title" content="" />
  73. <meta name="text:Link 3 URL" content="" />
  74. <meta name="text:Link 4 Title" content="" />
  75. <meta name="text:Link 4 URL" content="" />
  76. <meta name="text:Link 5 Title" content="" />
  77. <meta name="text:Link 5 URL" content="" />
  78. <meta name="text:Post Position" content="300" />
  79. <meta name="text:Sidebar Position Top" content="400" />
  80. <meta name="text:Sidebar Position Side" content="100" />
  81. <meta name="text:Transparency" content="0.7" />
  82.  
  83. </head>
  84.  
  85. <link rel=”shortcut icon” href=”{PortraitURL-16}”><title>{Title}</title>
  86.  
  87. <style type="text/css">
  88.  
  89. ::-webkit-scrollbar {
  90. width: 6px;
  91. }
  92.  
  93. ::-webkit-scrollbar-thumb {
  94. background-color: {color:Background};
  95. }
  96.  
  97. body {
  98. color: {color:Text};
  99. text-align: justify;
  100. word-wrap: break-word;
  101. font-family: consolas;
  102. font-size: 11px;
  103. text-transform: lowercase;
  104. background-color: {color:Background};
  105. background-image: url('{image:Background}');
  106. background-attachment: fixed;
  107. {block:IfBigBackgroundImage}background-size: 100% 100%;{/block:IfBigBackgroundImage}
  108. }
  109.  
  110. body a {
  111. color: {color:Link};
  112. text-transform: uppercase;
  113. text-decoration: none;
  114. }
  115.  
  116. body a:hover {
  117. color: {color:Link Hover};
  118. -webkit-transition: color 0.4s ease;
  119. -moz-transition: color 0.4s ease;
  120. -o-transition: color 0.4s ease;
  121. transition: color 0.4s ease;
  122. }
  123.  
  124. #content {
  125. margin-left: {text:Post Position}px;
  126. }
  127.  
  128. #post {
  129. padding-top: 1px;
  130. padding-left: 15px;
  131. padding-right: 15px;
  132. margin-top: 30px;
  133. width: 250px;
  134. background-color: #fff;
  135. {block:IfTransparentPosts}
  136. opacity: {text:Transparency};
  137. {/block:IfTransparentPosts}
  138. {block:IfRoundCorners}
  139. -webkit-border-radius: 10px;
  140. -moz-border-radius: 10px;
  141. border-radius: 10px;
  142. {/block:IfRoundCorners}
  143. }
  144.  
  145. {block:IfTransparentPosts}
  146. #post:hover {
  147. opacity: 1;
  148. }
  149. {/block:IfTransparentPosts}
  150.  
  151. #post img {
  152. width: 100%;
  153. }
  154.  
  155. #info {
  156. padding: 5px;
  157. margin-top: 15px;
  158. margin-bottom: 10px;
  159. color: #fff;
  160. background-color: {color:Link};
  161. }
  162.  
  163. #info a {
  164. color: #fff;
  165. }
  166.  
  167. #tag {
  168. margin-top: -10px;
  169. padding-bottom: 15px;
  170. display: none;
  171. }
  172.  
  173. #post:hover #tag {
  174. display: block;
  175. }
  176.  
  177. .photo:hover #tag {
  178. display: block;
  179. }
  180.  
  181. #chat:hover #tag {
  182. display: block;
  183. }
  184.  
  185. .photo {
  186. {block:IfTransparentPosts}
  187. opacity: {text:Transparency};
  188. {/block:IfTransparentPosts}
  189. width: 250px;
  190. }
  191.  
  192. {block:IfTransparentPosts}
  193. .photo:hover {
  194. opacity: 1;
  195. }
  196. {/block:IfTransparentPosts}
  197.  
  198. #photo {
  199. margin-top: 30px;
  200. }
  201.  
  202. #photopost {
  203. padding-top: 1px;
  204. padding-left: 15px;
  205. padding-right: 15px;
  206. width: 250px;
  207. background-color: #fff;
  208. margin-top: 10px;
  209. {block:IfRoundCorners}
  210. -webkit-border-radius: 10px;
  211. -moz-border-radius: 10px;
  212. border-radius: 10px;
  213. {/block:IfRoundCorners}
  214. }
  215.  
  216. .sidealign {
  217. width: 94px;
  218. position: fixed;
  219. margin-top: {text:Sidebar Position Top}px;
  220. margin-left: {text:Sidebar Position Side}px;
  221. }
  222.  
  223. #sidebar {
  224. padding-top: 15px;
  225. padding-bottom: 15px;
  226. width: 94px;
  227. background-color: #fff;
  228. {block:IfTransparentPosts}
  229. opacity: {text:Transparency};
  230. {/block:IfTransparentPosts}
  231. {block:IfRoundCorners}
  232. -webkit-border-radius: 10px;
  233. -moz-border-radius: 10px;
  234. border-radius: 10px;
  235. {/block:IfRoundCorners}
  236. }
  237.  
  238. {block:IfTransparentPosts}
  239. .sidealign:hover #sidebar {
  240. opacity: 1;
  241. }
  242. {/block:IfTransparentPosts}
  243.  
  244. #sidelink {
  245. margin-top: 10px;
  246. padding: 5px;
  247. background-color: #fff;
  248. display: none;
  249. {block:IfRoundCorners}
  250. -webkit-border-radius: 10px;
  251. -moz-border-radius: 10px;
  252. border-radius: 10px;
  253. {/block:IfRoundCorners}
  254. }
  255.  
  256. .sidealign:hover #sidelink {
  257. display: block;
  258. }
  259.  
  260. #chat {
  261. padding-top: 1px;
  262. padding-left: 15px;
  263. padding-right: 15px;
  264. margin-top: 30px;
  265. width: 250px;
  266. background-color: #fff;
  267. {block:IfTransparentPosts}
  268. opacity: {text:Transparency};
  269. {/block:IfTransparentPosts}
  270. {block:IfRoundCorners}
  271. -webkit-border-radius: 10px;
  272. -moz-border-radius: 10px;
  273. border-radius: 10px;
  274. {/block:IfRoundCorners}
  275. }
  276.  
  277. {block:IfTransparentPosts}
  278. #chat:hover {
  279. opacity: 1;
  280. }
  281. {/block:IfTransparentPosts}
  282.  
  283. #chat ul {
  284. margin-top: 15px;
  285. list-style: none;
  286. padding: 0;
  287. }
  288.  
  289. #chat li {
  290. padding: 2%;
  291. width: 240px;
  292. }
  293.  
  294. #chat .odd {
  295. text-align: left;
  296. background: {color:Chat Odd Background};
  297. }
  298.  
  299. #chat .even {
  300. text-align: right;
  301. background: {color:Chat Even Background};
  302. color: #fff;
  303. }
  304.  
  305. .link {
  306. font-size: 16px;
  307. text-transform: uppercase;
  308. }
  309.  
  310. .pagealign {
  311. margin-top: 25px;
  312. width: 280px;
  313. }
  314.  
  315. #pagination {
  316. font-size: 10px;
  317. background-color: #fff;
  318. padding-top: 15px;
  319. padding-left: 18px;
  320. padding-right: 25px;
  321. padding-bottom: 15px;
  322. width: 0px;
  323. {block:IfRoundCorners}
  324. -webkit-border-radius: 10px;
  325. -moz-border-radius: 10px;
  326. border-radius: 10px;
  327. {/block:IfRoundCorners}
  328. }
  329.  
  330. #permalink {
  331. padding-top: 1px;
  332. padding-left: 15px;
  333. padding-right: 15px;
  334. margin-top: 30px;
  335. width: 250px;
  336. background-color: #fff;
  337. {block:IfTransparentPosts}
  338. opacity: {text:Transparency};
  339. {/block:IfTransparentPosts}
  340. {block:IfRoundCorners}
  341. -webkit-border-radius: 10px;
  342. -moz-border-radius: 10px;
  343. border-radius: 10px;
  344. {/block:IfRoundCorners}
  345. }
  346.  
  347. {block:IfTransparentPosts}
  348. #permalink:hover {
  349. opacity: 1;
  350. }
  351. {/block:IfTransparentPosts}
  352.  
  353. #permalink ol.notes {
  354. list-style-type: none;
  355. margin-left: -40px;
  356. }
  357.  
  358. </style>
  359. <body>
  360.  
  361. <div id="content">
  362.  
  363. {block:Posts}
  364.  
  365.  
  366.  
  367. {block:ContentSource}
  368. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  369. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  370. {/block:SourceLogo}
  371. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  372. {/block:ContentSource}
  373.  
  374. {block:ReblogParent}{/block:ReblogParent}
  375.  
  376.  
  377.  
  378. {block:Text}
  379. <div id="post">
  380. {block:Title}
  381. <br />
  382. <div class="link">{Title}</div>
  383. {/block:Title}
  384. {Body}
  385. <div id="info">
  386. <a href="{Permalink}">
  387. <span style="float:left;">{block:Date}{TimeAgo}{/block:Date}</span>
  388. <span style="float:right;">{NoteCountWithLabel}</span>
  389. </a>
  390. <div style="clear:both;"></div>
  391. </div>
  392. <br />
  393. {block:HasTags}
  394. <div id="tag">
  395. {block:Tags}#<a href="{TagURL}">{Tag}</a>  {/block:Tags}
  396. </div>
  397. {/block:HasTags}
  398. </div>
  399. {/block:Text}
  400.  
  401.  
  402.  
  403. {block:Photo}
  404. <div class="photo">
  405. <div id="photo">
  406. <img src="{PhotoURL-HighRes}" width="280px" style="{block:IfRoundCorners}-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;{/block:IfRoundCorners}" />
  407. </div>
  408. <div id="photopost">
  409. {block:Caption}{Caption}{/block:Caption}
  410. <div id="info">
  411. <a href="{Permalink}">
  412. <span style="float:left;">{block:Date}{TimeAgo}{/block:Date}</span>
  413. <span style="float:right;">{NoteCountWithLabel}</span>
  414. </a>
  415. <div style="clear:both;"></div>
  416. </div>
  417. <br />
  418. {block:HasTags}
  419. <div id="tag">
  420. {block:Tags}#<a href="{TagURL}">{Tag}</a>  {/block:Tags}
  421. </div>
  422. {/block:HasTags}
  423. </div>
  424. </div>
  425. {/block:Photo}
  426.  
  427.  
  428.  
  429. {block:Photoset}
  430. <div id="post">
  431. <br />
  432. {Photoset-250}
  433. <br />
  434. {block:Caption}<div style="margin-top:-15px;">{Caption}</div>{/block:Caption}
  435. <div id="info">
  436. <a href="{Permalink}">
  437. <span style="float:left;">{block:Date}{TimeAgo}{/block:Date}</span>
  438. <span style="float:right;">{NoteCountWithLabel}</span>
  439. </a>
  440. <div style="clear:both;"></div>
  441. </div>
  442. <br />
  443. {block:HasTags}
  444. <div id="tag">
  445. {block:Tags}#<a href="{TagURL}">{Tag}</a>  {/block:Tags}
  446. </div>
  447. {/block:HasTags}
  448. </div>
  449. {/block:Photoset}
  450.  
  451.  
  452.  
  453. {block:Quote}
  454. <div id="post">
  455. <br />
  456. "{Quote}"<br />
  457. {block:Source}<span style="float:right;">{Source}</span><br />{/block:Source}
  458. <div id="info">
  459. <a href="{Permalink}">
  460. <span style="float:left;">{block:Date}{TimeAgo}{/block:Date}</span>
  461. <span style="float:right;">{NoteCountWithLabel}</span>
  462. </a>
  463. <div style="clear:both;"></div>
  464. </div>
  465. <br />
  466. {block:HasTags}
  467. <div id="tag">
  468. {block:Tags}#<a href="{TagURL}">{Tag}</a>  {/block:Tags}
  469. </div>
  470. {/block:HasTags}
  471. </div>
  472. {/block:Quote}
  473.  
  474.  
  475.  
  476. {block:Link}
  477. <div id="post">
  478. <br />
  479. <div class="link"><a href="{URL}">{Name}</a></div>
  480. {block:Description}{Description}{/block:Description}
  481. <div id="info">
  482. <a href="{Permalink}">
  483. <span style="float:left;">{block:Date}{TimeAgo}{/block:Date}</span>
  484. <span style="float:right;">{NoteCountWithLabel}</span>
  485. </a>
  486. <div style="clear:both;"></div>
  487. </div>
  488. <br />
  489. {block:HasTags}
  490. <div id="tag">
  491. {block:Tags}#<a href="{TagURL}">{Tag}</a>  {/block:Tags}
  492. </div>
  493. {/block:HasTags}
  494. </div>
  495. {/block:Link}
  496.  
  497.  
  498.  
  499. {block:Chat}
  500. <div id="chat">
  501. <center>
  502. <ul>
  503. {block:Lines}<li class="{Alt}">{block:Label} {Label} {/block:Label}{Line}</li>{/block:Lines}
  504. </ul>
  505. </center>
  506. <div id="info">
  507. <a href="{Permalink}">
  508. <span style="float:left;">{block:Date}{TimeAgo}{/block:Date}</span>
  509. <span style="float:right;">{NoteCountWithLabel}</span>
  510. </a>
  511. <div style="clear:both;"></div>
  512. </div>
  513. <br />
  514. {block:HasTags}
  515. <div id="tag">
  516. {block:Tags}#<a href="{TagURL}">{Tag}</a>  {/block:Tags}
  517. </div>
  518. {/block:HasTags}
  519. </div>
  520. {/block:Chat}
  521.  
  522.  
  523.  
  524. {block:Audio}
  525. <div id="post">
  526. <br />
  527. {block:AlbumArt}<img src="{AlbumArtURL}" width="250px" style="margin-bottom: 5px;{block:IfRoundCorners}-webkit-border-radius: 10px;-moz-border-radius: 10px;border-radius: 10px;{/block:IfRoundCorners}" />{/block:AlbumArt}
  528. {block:AudioEmbed}{AudioEmbed-250}{/block:AudioEmbed}
  529. {block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}
  530. <br />
  531. {block:Caption}<div style="margin-top:-15px;">{Caption}</div>{/block:Caption}
  532. <div id="info">
  533. <a href="{Permalink}">
  534. <span style="float:left;">{block:Date}{TimeAgo}{/block:Date}</span>
  535. <span style="float:right;">{NoteCountWithLabel}</span>
  536. </a>
  537. <div style="clear:both;"></div>
  538. </div>
  539. <br />
  540. {block:HasTags}
  541. <div id="tag">
  542. {block:Tags}#<a href="{TagURL}">{Tag}</a>  {/block:Tags}
  543. </div>
  544. {/block:HasTags}
  545. </div>
  546. {/block:Audio}
  547.  
  548.  
  549.  
  550. {block:Video}
  551. <div id="post">
  552. <br />
  553. {VideoEmbed-250}
  554. <br />
  555. {block:Caption}<div style="margin-top:-15px;">{Caption}</div>{/block:Caption}
  556. <div id="info">
  557. <a href="{Permalink}">
  558. <span style="float:left;">{block:Date}{TimeAgo}{/block:Date}</span>
  559. <span style="float:right;">{NoteCountWithLabel}</span>
  560. </a>
  561. <div style="clear:both;"></div>
  562. </div>
  563. <br />
  564. {block:HasTags}
  565. <div id="tag">
  566. {block:Tags}#<a href="{TagURL}">{Tag}</a>  {/block:Tags}
  567. </div>
  568. {/block:HasTags}
  569. </div>
  570. {/block:Video}
  571.  
  572.  
  573.  
  574. {block:Answer}
  575. <div id="post">
  576. <div id="info">{Question}</div>
  577.     <img src="{AskerPortraitURL-24}" style="width: 24px !important;" /> <span style="vertical-align:8px;text-transform:uppercase;">{Asker}</span>
  578. <br />
  579. {Answer}
  580. <div id="info">
  581. <a href="{Permalink}">
  582. <span style="float:left;">{block:Date}{TimeAgo}{/block:Date}</span>
  583. <span style="float:right;">{NoteCountWithLabel}</span>
  584. </a>
  585. <div style="clear:both;"></div>
  586. </div>
  587. <br />
  588. {block:HasTags}
  589. <div id="tag">
  590. {block:Tags}#<a href="{TagURL}">{Tag}</a>  {/block:Tags}
  591. </div>
  592. {/block:HasTags}
  593. </div>
  594. {/block:Answer}
  595.  
  596.  
  597.  
  598. {block:PermalinkPage}
  599. {block:PostNotes}
  600. <div id="permalink">
  601. {PostNotes}
  602. <br />
  603. </div>
  604. {/block:PostNotes}
  605. {/block:PermalinkPage}
  606.  
  607.  
  608.  
  609. {/block:Posts}
  610.  
  611.  
  612.  
  613. {block:Pagination}
  614. <div class="pagealign">
  615. {block:PreviousPage}
  616. <span style="float:left;"><div id="pagination"><a href="{PreviousPage}">◄</a></div></span>
  617. {/block:PreviousPage}
  618. {block:NextPage}
  619. <span style="float:right;"><div id="pagination"><a href="{NextPage}">►</a></div></span>
  620. {/block:NextPage}
  621. <div style="clear:both;"></div>
  622. </div>
  623. {/block:Pagination}
  624.  
  625.  
  626.  
  627. </body>
  628. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement