Jyuubi

[Theme] → #16 Watermelon

Jul 22nd, 2012
13,180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.59 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3.  
  4. <!--
  5. PLEASE DO NOT REMOVE THIS.
  6. THE REMOVAL OF THIS PART WILL CONSIDER YOU A THIEF.
  7. IF YOU REMOVE CREDIT, MAKE SURE IT'S ON A CREDITS PAGE.
  8.  
  9. THEME: #16 WATERMELON
  10. jyuubi.org | manatopia.org
  11.  
  12. --RULES--
  13. 1) DO NOT REMOVE CREDIT.
  14. 2) DO NOT USE TO MAKE YOUR OWN THEME TO RESDISTRIBUTE.
  15. 3) DO NOT USE TO MAKE YOUR OWN THEME AND REMOVE CREDIT.
  16. 4) IF YOU USE ANYTHING FROM MY THEMES, ALWAYS CREDIT.
  17. 5) DO USE ANY GRAPHICS MADE FOR A PREVIEW.
  18. -->
  19.  
  20. <meta name="color:BackgroundM" content="#F4F8E6">
  21. <meta name="color:Regular Text" content="#4A3D3D">
  22. <meta name="color:Bold Text" content="#e05757">
  23. <meta name="color:Italic Text" content="#806c6c">
  24. <meta name="color:Link Text" content="#858977">
  25.  
  26. <meta name="color:Titles" content="#e05757">
  27. <meta name="color:Titles Border" content="#F2E9E6">
  28.  
  29. <meta name="color:Left Background" content="#FF6161">
  30. <meta name="color:Nav Background" content="#4A3D3D">
  31. <meta name="color:Nav Link" content="#D8DEC3">
  32. <meta name="color:Nav Link Hover" content="#F2E9E6">
  33.  
  34. <meta name="color:Right Background" content="#D8DEC3">
  35.  
  36. <meta name="color:Stats Border" content="#FF6161">
  37. <meta name="color:Stats Text" content="#858977">
  38. <meta name="color:Stats Link" content="#806c6c">
  39.  
  40. <meta name="color:Pagination Background" content="#FF6161">
  41. <meta name="color:Pagination Arrow" content="#4A3D3D">
  42.  
  43. <meta name="image:BackgroundM" content="http://static.tumblr.com/pdgxkke/emVm1pxdm/watermelon.png">
  44.  
  45. <meta name="if:Infinite Scroll" content="0">
  46. <meta name="if:Show Icon" content="1">
  47. <meta name="if:Submit Link" content="0">
  48. <meta name="if:Smaller Posts" content="1">
  49. <meta name="if:Show Captions" content="0">
  50. <meta name="if:High Res Link" content="0">
  51. <meta name="if:Show Tags" content="1">
  52.  
  53. <meta name="text:Description Position" content="110">
  54. <meta name="text:Sidebar Title" content="watermelon">
  55. <meta name="text:Name 1" content="">
  56. <meta name="text:URL 1" content="http://">
  57. <meta name="text:Name 2" content="">
  58. <meta name="text:URL 2" content="http://">
  59. <meta name="text:Name 3" content="">
  60. <meta name="text:URL 3" content="http://">
  61. <meta name="text:Name 4" content="">
  62. <meta name="text:URL 4" content="http://">
  63. <meta name="text:Name 5" content="">
  64. <meta name="text:URL 5" content="http://">
  65. <meta name="text:Name 6" content="">
  66. <meta name="text:URL 6" content="http://">
  67.  
  68. <head>
  69. <link href='http://fonts.googleapis.com/css?family=Tulpen+One' rel='stylesheet' type='text/css'>
  70. <meta http-equiv="content-type" content="text/html; charset=utf-8">
  71. <title>{Title}</title>
  72. <link rel="shortcut icon" href="{Favicon}">
  73. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  74. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  75.  
  76. <style type="text/css">
  77. /* BODY */
  78. body {
  79. background-image: url('{image:BackgroundM}');
  80. background-attachment: fixed;
  81. background-color: {color:BackgroundM};
  82. margin: 0;
  83. }
  84.  
  85. ::-webkit-scrollbar-thumb:vertical {
  86. background-color: {color:Bold Text};
  87. height: 50px;
  88. }
  89.  
  90. ::-webkit-scrollbar {
  91. height: 10px;
  92. width: 3px;
  93. background-color: {color:Right Background};
  94. }
  95.  
  96. /* NAVIGATION */
  97. #nav {
  98. background-color: {color:Left Background};
  99. width: 70px;
  100. height: 100%;
  101. top: 0;
  102. position: fixed;
  103. }
  104.  
  105. #links {
  106. position: fixed;
  107. z-index: 999;
  108. left: 10px;
  109. top: 150px;
  110. }
  111.  
  112. #links a {
  113. background-color: {color:Nav Background};
  114. display: block;
  115. width: 50px;
  116. height: 30px;
  117. margin-bottom: 10px;
  118. font-family: consolas;
  119. font-size: 9px;
  120. color: {color:Nav Link};
  121. text-decoration: none;
  122. text-transform: uppercase;
  123. text-align: center;
  124. line-height: 30px;
  125. -webkit-transition: all 0.5s ease-in-out;
  126. -moz-transition: all 0.5s ease-in-out;
  127. -o-transition: all 0.5s ease-in-out;
  128. -ms-transition: all 0.5s ease-in-out;
  129. transition: all 0.5s ease-in-out;
  130. }
  131.  
  132. #links a:hover {
  133. color: {color:Nav Link Hover};
  134. }
  135.  
  136. /* SIDEBAR */
  137. #sidebar {
  138. background-color: {color:Right Background};
  139. width: 150px;
  140. height: 100%;
  141. top: 0;
  142. margin-left: 70px;
  143. position: fixed;
  144. }
  145.  
  146. #side {
  147. width: 150px;
  148. position: fixed;
  149. z-index: 999;
  150. top: {text:Description Position}px;
  151. left: 70px;
  152. }
  153.  
  154. #desc {
  155. width: 140px;
  156. padding: 5px;
  157. font-family: tahoma, sans-serif;
  158. font-size: 10px;
  159. color: {color:Regular Text};
  160. text-align: justify;
  161. line-height: 14px;
  162. }
  163.  
  164. #desc b, strong {
  165. color: {color:Bold Text};
  166. }
  167.  
  168. #desc i, em {
  169. color: {color:Italic Text};
  170. }
  171.  
  172. #desc a {
  173. color: {color:Link Text};
  174. text-decoration: none;
  175. }
  176.  
  177. #desc img {
  178. margin-bottom: 5px;
  179. -moz-border-radius: 96px;
  180. -webkit-border-radius: 96px;
  181. border-radius: 96px;
  182. }
  183.  
  184. #desc h1 {
  185. font-family: 'Tulpen One', cursive;
  186. font-size: 24px;
  187. color: {color:Titles};
  188. font-weight: normal;
  189. text-transform: uppercase;
  190. letter-spacing: 1px;
  191. text-align: center;
  192. border-bottom: 3px solid {color:Titles Border};
  193. margin: 0;
  194. padding-bottom: 3px;
  195. }
  196.  
  197. /* CUSTOM LINKS */
  198. #custom {
  199. margin-top: 15px;
  200. }
  201.  
  202. #custom a {
  203. display: block;
  204. border-left: 15px solid {color:Left Background};
  205. padding-left: 8px;
  206. margin-bottom: 3px;
  207. font-family: consolas;
  208. font-size: 9px;
  209. color: {color:Italic Text};
  210. text-decoration: none;
  211. text-transform: uppercase;
  212. -webkit-transition: all 0.5s ease-in-out;
  213. -moz-transition: all 0.5s ease-in-out;
  214. -o-transition: all 0.5s ease-in-out;
  215. -ms-transition: all 0.5s ease-in-out;
  216. transition: all 0.5s ease-in-out;
  217. }
  218.  
  219. #custom a:hover {
  220. border-left: 35px solid {color:Nav Background};
  221. }
  222.  
  223. /* PAGINATION */
  224. #page {
  225. position: fixed;
  226. bottom: 10px;
  227. right: 10px;
  228. }
  229.  
  230. #page a {
  231. background-color: {color:Pagination Background};
  232. display: inline-block;
  233. height: 50px;
  234. width: 65px;
  235. font-family: tahoma, sans-serif;
  236. font-size: 38px;
  237. color: {color:Pagination Arrow};
  238. text-decoration: none;
  239. line-height: 40px;
  240. text-align: center;
  241. }
  242.  
  243. /* ENTRIES */
  244. #posts {
  245. margin-left: 280px;
  246. margin-top: 10px;
  247. }
  248.  
  249. .post {
  250. {block:IfSmallerPosts}width: 430px;{/block:IfSmallerPosts}
  251. {block:IfNotSmallerPosts}width: 580px;{/block:IfNotSmallerPosts}
  252. }
  253.  
  254. .entry {
  255. background-color: {color:Right Background};
  256. {block:IfSmallerPosts}width: 250px;{/block:IfSmallerPosts}
  257. {block:IfNotSmallerPosts}width: 400px;{/block:IfNotSmallerPosts}
  258. border: 3px solid {color:Right Background};
  259. overflow: hidden;
  260. margin-bottom: 10px;
  261. position: relative;
  262. z-index: 888;
  263. float: left;
  264. font-family: tahoma, sans-serif;
  265. font-size: 10px;
  266. color: {color:Regular Text};
  267. letter-spacing: 1px;
  268. text-align: justify;
  269. }
  270.  
  271. .entry b, strong {
  272. color: {color:Bold Text};
  273. }
  274.  
  275. .entry i, em {
  276. color: {color:Italic Text};
  277. }
  278.  
  279. .entry a {
  280. color: {color:Link Text};
  281. text-decoration: none;
  282. }
  283.  
  284. .entry h1 {
  285. font-family: 'Tulpen One', cursive;
  286. font-size: 28px;
  287. color: {color:Titles};
  288. font-weight: normal;
  289. text-transform: uppercase;
  290. letter-spacing: 1px;
  291. text-align: center;
  292. border-bottom: 3px solid {color:Titles Border};
  293. margin: 0;
  294. }
  295.  
  296. .entry h1 a {
  297. color: {color:Titles};
  298. }
  299.  
  300. .entry img {
  301. {block:IfSmallerPosts}max-width: 250px;{/block:IfSmallerPosts}
  302. {block:IfNotSmallerPosts}max-width: 400px;{/block:IfNotSmallerPosts}
  303. opacity: .8;
  304. }
  305.  
  306. .entry blockquote {
  307. border-left: 3px solid {color:Bold Text};
  308. padding-left: 4px;
  309. margin-left: 5px;
  310. }
  311.  
  312. .photo {
  313. opacity: .8;
  314. }
  315.  
  316. /* AUDIO */
  317. .audio {
  318. background-color: #fff;
  319. {block:IfSmallerPosts}width: 250px;{/block:IfSmallerPosts}
  320. {block:IfNotSmallerPosts}width: 400px;{/block:IfNotSmallerPosts}
  321. height: 27px;
  322. }
  323.  
  324. /* ASK POST */
  325. .ask {
  326. border-bottom: 3px solid {color:Titles Border};
  327. }
  328.  
  329. /* QUOTE POST */
  330. .entry h2 {
  331. font-family: tahoma, sans-serif;
  332. font-size: 10px;
  333. color: {color:Titles};
  334. font-weight: normal;
  335. text-transform: lowercase;
  336. letter-spacing: 2px;
  337. text-align: left;
  338. }
  339.  
  340. .quote {
  341. background-color: {color:Header Background};
  342. font-family: georgia;
  343. font-size: 24px;
  344. color: {color:Bold Text};
  345. float: left;
  346. margin-top: -1px;
  347. margin-right: 5px;
  348. }
  349.  
  350. /* STATISTICS */
  351. .stats {
  352. font-family: consolas;
  353. font-size: 8px;
  354. color: {color:Stats Text};
  355. text-transform: uppercase;
  356. line-height: 10px;
  357. width: 150px;
  358. float: right;
  359. opacity: 0;
  360. filter: alpha(opacity=0);
  361. -moz-opacity: 0;
  362. -khtml-opacity: 0;
  363. -webkit-transition: all 1s ease;
  364. -moz-transition: all 1s ease;
  365. -o-transition: all 1s ease;
  366. border-left: 5px solid {color:Stats Border};
  367. padding-left: 5px;
  368. }
  369.  
  370. .stats a {
  371. color: {color:Stats Link};
  372. text-decoration: none;
  373. }
  374.  
  375. /* HOVER */
  376. .post:hover .stats {
  377. opacity: 1;
  378. -moz-opacity: 1;
  379. -khtml-opacity: 1;
  380. }
  381.  
  382. /* PERMALINK PAGE */
  383. .permalink {
  384. font-family: tahoma, sans-serif;
  385. font-size: 8px;
  386. color: {color:Regular Text};
  387. text-transform: uppercase;
  388. text-align: center;
  389. {block:IfSmallerPosts}width: 256px;{/block:IfSmallerPosts}
  390. {block:IfNotSmallerPosts}width: 406px;{/block:IfNotSmallerPosts}
  391. }
  392.  
  393. .permalink b {
  394. color: {color:Bold Text};
  395. font-weight: normal;
  396. }
  397.  
  398. #date {
  399. color: {color:Italic Text};
  400. }
  401.  
  402. .permalink a {
  403. color: {color:Link Text};
  404. text-decoration: none;
  405. }
  406.  
  407. ol.notes {
  408. padding: 0px;
  409. margin: 15px 0px;
  410. list-style-type: none;
  411. background: transparent;
  412. border: 0px;
  413. letter-spacing: 0px;
  414. }
  415.  
  416. ol.notes li.note {
  417. padding: 1px;
  418. text-align: left;
  419. letter-spacing: 0px;
  420. }
  421.  
  422. .notes img{
  423. width: 10px;
  424. position: relative;
  425. top: 1px;
  426. opacity: .5;
  427. }
  428.  
  429. /* FOLLOW CODE */
  430. iframe#tumblr_controls {
  431. right:3px !important;
  432. position: fixed !important;
  433. -webkit-transition: opacity 0.7s linear;
  434. opacity: 0.2;
  435. -webkit-transition: all 0.8s ease-out;
  436. -moz-transition: all 0.8s ease-out;
  437. transition: all 0.8s ease-out;
  438. }
  439.  
  440. iframe#tumblr_controls:hover {
  441. -webkit-transition: opacity 0.7s linear;
  442. opacity: 1;
  443. -webkit-transition: all 0.4s ease-out;
  444. -moz-transition: all 0.4s ease-out;
  445. transition: all 0.4s ease-out;
  446. }
  447.  
  448. {CustomCSS}
  449. </style>
  450. {block:IfInfiniteScroll}
  451. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  452. {/block:IfInfiniteScroll}
  453. </head>
  454. <body>
  455.  
  456. {block:IfNotInfiniteScroll}{block:Pagination}<div id="page">
  457. {block:PreviousPage}<a href="{PreviousPage}">&larr;</a>{/block:PreviousPage}
  458. {block:NextPage}<a href="{NextPage}">&rarr;</a>{/block:NextPage}
  459. </div>{/block:Pagination}{/block:IfNotInfiniteScroll}
  460.  
  461. <div id="nav"></div>
  462. <div id="links">
  463. <a href="/">return?</a>
  464. <a href="/archive">archive</a>
  465. <a href="/random">random</a>
  466. <a href="/ask">ask me</a>
  467. {block:IfSubmitLink}<a href="/submit">submit</a>{/block:IfSubmitLink}
  468. <a href="http://jyuubi.org">theme</a>
  469. </div>
  470. <div id="sidebar"></div>
  471. <div id="side">
  472. <div id="desc">
  473. {block:IfShowIcon}<center><img src="{PortraitURL-96}" alt=""></center>{/block:IfShowIcon}
  474. {block:IfSidebarTitle}<h1>{text:Sidebar Title}</h1>{/block:IfSidebarTitle}
  475. {Description}
  476. </div>
  477. <div id="custom">
  478. {block:IfName1}<a href="{text:URL 1}">{text:Name 1}</a>{/block:IfName1}
  479. {block:IfName2}<a href="{text:URL 2}">{text:Name 2}</a>{/block:IfName2}
  480. {block:IfName3}<a href="{text:URL 3}">{text:Name 3}</a>{/block:IfName3}
  481. {block:IfName4}<a href="{text:URL 4}">{text:Name 4}</a>{/block:IfName4}
  482. {block:IfName5}<a href="{text:URL 5}">{text:Name 5}</a>{/block:IfName5}
  483. {block:IfName6}<a href="{text:URL 6}">{text:Name 6}</a>{/block:IfName6}
  484. </div>
  485. </div>
  486.  
  487. <div class="autopagerize_page_element">
  488. <div id="posts">
  489. {block:Posts}
  490.  
  491. <div class="post">
  492. <div class="entry">
  493.  
  494. {block:Text}
  495. {block:Title}<h1>{Title}</h1>{/block:Title}
  496. {Body}
  497. {/block:Text}
  498.  
  499. {block:Photo}
  500. <center>{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}">{LinkCloseTag}</center>
  501. {block:IfHighResLink}{block:HighRes}<font size="1px"><a href="{PhotoURL-HighRes}">high resolution &rarr;</a></font>{/block:HighRes}{/block:IfHighResLink}
  502. {block:IfShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:IfShowCaptions}
  503. {block:IfNotShowCaptions}{block:PermalinkPage}{block:Caption}
  504. {Caption}
  505. {/block:Caption}{/block:PermalinkPage}{/block:IfNotShowCaptions}
  506. {/block:Photo}
  507.  
  508. {block:Photoset}
  509. <div class="photo">{block:IfNotSmallerPosts}{Photoset-400}{/block:IfNotSmallerPosts}
  510. {block:IfSmallerPosts}{Photoset-250}{/block:IfSmallerPosts}</div>
  511. {block:IfShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:IfShowCaptions}
  512. {block:IfNotShowCaptions}{block:PermalinkPage}{block:Caption}
  513. {Caption}
  514. {/block:Caption}{/block:PermalinkPage}{/block:IfNotShowCaptions}
  515. {/block:Photoset}
  516.  
  517. {block:Quote}
  518. <div class="quote">&#10077;</div>
  519. <h2>{Quote}</h2>
  520. {block:Source}<p align="right">{Source} <b>&mdash;</b></p>{/block:Source}
  521. {/block:Quote}
  522.  
  523. {block:Link}
  524. <h1><a href="{URL}" target="{Target}">{Name}</a></h1>
  525. {block:Description}{Description}{/block:Description}
  526. {/block:Link}
  527.  
  528. {block:Chat}
  529. {block:Title}<h1>{Title}</h1>{/block:Title}
  530. {block:Lines}
  531. {block:Label}
  532. <b>{Label}</b>
  533. {/block:Label}
  534. {Line}<br />
  535. {/block:Lines}
  536. {/block:Chat}
  537.  
  538. {block:Audio}
  539. <div class="audio">{AudioPlayer}</div>
  540. <center><b>{FormattedPlayCount}</b> plays</center>
  541. {block:IfShowCaptions}{block:Caption}<br />{Caption}{/block:Caption}{/block:IfShowCaptions}
  542. {block:IfNotShowCaptions}{block:PermalinkPage}{block:Caption}<br />
  543. {Caption}
  544. {/block:Caption}{/block:PermalinkPage}{/block:IfNotShowCaptions}
  545. {/block:Audio}
  546.  
  547. {block:Video}
  548. {block:IfNotSmallerPosts}{Video-400}{/block:IfNotSmallerPosts}
  549. {block:IfSmallerPosts}{Video-250}{/block:IfSmallerPosts}
  550. <center><i>{FormattedPlayCount}</i> plays</center><br />
  551. {block:IfShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:IfShowCaptions}
  552. {block:IfNotShowCaptions}{block:PermalinkPage}{block:Caption}
  553. {Caption}
  554. {/block:Caption}{/block:PermalinkPage}{/block:IfNotShowCaptions}
  555. {/block:Video}
  556.  
  557. {block:Answer}
  558. <div class="ask">{Asker} <b>sent:</b> {Question}</div>
  559. {Answer}
  560. {/block:Answer}
  561.  
  562. </div>
  563. {block:IndexPage}<div class="stats">
  564. <a href="{Permalink}">{TimeAgo}{block:NoteCount} | {NoteCountWithLabel}{/block:NoteCount}</a>
  565. {block:RebloggedFrom}<br />Source: <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}</a>{block:IfShowTags}{block:HasTags}<br />
  566. Tagged:&nbsp;{block:Tags}#<a class="tag" href="{TagURL}">{Tag}</a>&nbsp;{/block:Tags}{/block:HasTags}{/block:IfShowTags}
  567. </div>{/block:IndexPage}
  568. </div>
  569.  
  570. {block:PermalinkPage}
  571. <div class="permalink">
  572. <center><div id="date">{block:Date}posted {12Hour}:{Minutes} {AmPm} on {DayOfWeek}, {Month} {DayOfMonth}, {Year}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}{/block:NoteCount}</div>{block:RebloggedFrom}<b>origin:</b> <a href="{ReblogRootURL}">{ReblogRootName}</a> &nbsp;|&nbsp; <b>via:</b> <a href="{ReblogParentURL}">{ReblogParentName}</a><br />{/block:RebloggedFrom}
  573. {block:HasTags}<b>tags &raquo;</b> {block:Tags}<a href="{TagURL}">#{Tag}</a>&nbsp;{/block:Tags}{/block:HasTags}</center>
  574. {block:PostNotes}
  575. {PostNotes}
  576. {/block:PostNotes}
  577. </div>
  578. {/block:PermalinkPage}
  579.  
  580. {/block:Posts}
  581. </div>
  582. </div>
  583.  
  584. </body>
  585. </html>
Advertisement
Add Comment
Please, Sign In to add comment