Advertisement
Guest User

Citrus theme

a guest
Aug 26th, 2016
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.88 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <!--
  5.  
  6. citrus theme by howlcastles
  7.  
  8. if you have any questions about the theme, please don't hesitate to contact me at howlcastles.tumblr.com/ask!
  9.  
  10. Rules:
  11. 1.do not remove theme credit
  12. 2.do not use as base code
  13. 3.don’t repost/claim as your own
  14. 4.light editing of code is allowed, just dont remove credit
  15. 5.if you use parts of this theme in your own code, please credit me!
  16.  
  17. -->
  18. <title>{TITLE}</title>
  19. <link rel="shortcut icon" href="{Favicon}" />
  20. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  21. <!--images-->
  22. <meta name="image:Avatar" content="" />
  23. <meta name="image:Background" content="" />
  24. <meta name="image:SidebarPixel" content="" />
  25. <meta name="image:LeftImage" content="" />
  26. <meta name="image:RightImage" content="" />
  27. <meta name="image:Cursor" content="" />
  28. <meta name="image:CursorHover" content="" />
  29. <!--colors-->
  30. <meta name="color:Background" content="#FFFFFF"/>
  31. <meta name="color:FontColor" content="#000000" />
  32. <meta name="color:SidebarBG" content="#ffffff" />
  33. <meta name="color:SidelinksBG" content="#FFFFFF" />
  34. <meta name="color:ContentBG" content="#FFFFFF" />
  35. <meta name="color:InfoBG" content="#ffff99" />
  36. <meta name="color:ScrollbarSlider" content="#000000" />
  37. <meta name="color:Scrollbar" content="#ffffff" />
  38. <meta name="color:UpdatesTitleTextColor" content="#000000" />
  39. <meta name="color:UpdatesBoxTextColor" content="#000000" />
  40. <meta name="color:UpdatesBG" content="ffffff" />
  41. <meta name="color:Links" content="#ff9966" />
  42. <meta name="color:LinkHover" content="#ffcc66" />
  43. <meta name="color:BlockquoteColor" content="#ffcc66" />
  44. <meta name="color:BorderColor" content="#000000" />
  45. <!--if-->
  46. <meta name="if:ShowBlogTitle" content="1" />
  47. <meta name="if:BGCover" content="0"/>
  48. <meta name="if:LinkUnderline" content="1" />
  49. <meta name="if:RoundedBorder" content="1" />
  50. <meta name="if:RoundedImages" content="1" />
  51. <meta name="if:BoxShadow" content="1" />
  52. <meta name="if:UpdatesBox" content="1" />
  53. <meta name="if:ShowTags" content="1" />
  54. <meta name="if:Dropdown" content="1" />
  55. <meta name="if:Link2" content="1" />
  56. <meta name="if:Link3" content="1" />
  57. <!--select-->
  58. <meta name="select:font" content="ms gothic" title="ms gothic"/>
  59. <meta name="select:font" content="consolas" title="consolas"/>
  60. <meta name="select:font" content="Courier New" title="courier new" />
  61. <meta name="select:BorderStyle" content="solid" title="solid" />
  62. <meta name="select:BorderStyle" content="dotted" title="dotted" />
  63. <meta name="select:BorderStyle" content="dashed" title="dashed" />
  64. <meta name="select:BorderStyle" content="none" title="none" />
  65. <!--text-->
  66. <meta name="text:FontSize" content="15" />
  67. <meta name="text:BackPaginationText" content="←" />
  68. <meta name="text:ForwardPaginationText" content="β†’" />
  69. <meta name="text:NoteSymbol" content="β™‘" />
  70. <meta name="text:UpdatesBoxTitle" content="updates" />
  71. <meta name="text:UpdatesBox" content="<p>here are your updates!</p><p>
  72. you can type whatever you want in here and it will show up in your updates box!</p><p>make sure to type < br > after a paragraph to put your text on a new line!</p>" />
  73. <meta name="text:DropdownTitle" content="navigation" />
  74. <meta name="text:Link1URL" content="" />
  75. <meta name="text:Link1Title" content="" />
  76. <meta name="text:Link2URL" content="" />
  77. <meta name="text:Link2Title" content="" />
  78. <meta name="text:Link3URL" content="" />
  79. <meta name="text:Link3Title" content="" />
  80. <style>
  81. *{
  82. margin: 0;
  83. padding: 0;
  84. }
  85. body{
  86. background:{color:Background} url('{image:background}') fixed {block:ifnotBGCover}repeat{/block:ifnotBGCover};
  87. {block:ifBGCover}background-size:cover;{/block:ifBGCover}
  88. color: {color:FontColor};
  89. font-family: '{select:font}';
  90. font-size: {text:FontSize}px;
  91. word-wrap:break-word;
  92. margin:0px;
  93. cursor: url('{image:Cursor}'), auto;
  94.  
  95. }
  96. p {
  97. margin: 10px 0;
  98. word-spacing: -1px;
  99. }
  100. p.icon{
  101. margin: 0px;
  102. }
  103. a{
  104. color: {color:Links};
  105. {block:ifLinkUnderline}
  106. text-decoration: underline;
  107. {/block:ifLinkUnderline}
  108. {block:ifnotLinkUnderline}
  109. text-decoration: none;
  110. {/block:ifnotLinkUnderline}
  111. }
  112. a:hover{
  113. color: {color:LinkHover};
  114. transition: 0.5s;
  115. -moz-transition: 0.5s;
  116. -webkit-transition: 0.5s;
  117. -o-transition: 0.5s;
  118. cursor: url('{image:CursorHover}'), auto;
  119. }
  120. {block:ifRoundedImages}
  121. img{
  122. border-radius:5px;
  123. }
  124. {/block:ifRoundedImages}
  125. ul{
  126. padding-top: 8px;
  127. padding-left:30px;
  128. }
  129. ol{
  130. padding-top: 8px;
  131. padding-left:30px;
  132. }
  133. ul.tags{
  134. list-style-type: none;
  135. padding:0;
  136. margin:0;
  137. }
  138. li.text{
  139. list-style-type: none;
  140. padding:0;
  141. margin:0;
  142. }
  143. li.photo{
  144. list-style-type: none;
  145. padding:0;
  146. margin:0;
  147. }
  148. li.panorama{
  149. list-style-type: none;
  150. padding:0;
  151. margin:0;
  152. }
  153. li.photoset{
  154. list-style-type: none;
  155. padding:0;
  156. margin:0;
  157. }
  158. li.quote{
  159. list-style-type: none;
  160. padding:0;
  161. margin:0;
  162. }
  163. li.audio{
  164. list-style-type: none;
  165. padding:0;
  166. margin:0;
  167. }
  168. li.video{
  169. list-style-type: none;
  170. padding:0;
  171. margin:0;
  172. }
  173. li.chat{
  174. list-style-type: none;
  175. padding:0;
  176. margin:0;
  177. }
  178. li.link{
  179. list-style-type: none;
  180. padding:0;
  181. margin:0;
  182. }
  183. blockquote {
  184. border-left: 3px solid;
  185. margin-left: 3%;
  186. padding-left: 10px;
  187. padding-top: 2px;
  188. padding-bottom: 2px;
  189. }
  190. ::-webkit-scrollbar-thumb:vertical {
  191. background-color: {color:ScrollbarSlider}; /*color of main scrollbar*/
  192. height: 50px; /*height of scrollbar*/
  193. }
  194. ::-webkit-scrollbar {
  195. height: 0px;
  196. width: 10px; /*width of the slider*/
  197. background-color: {color:Scrollbar}; /*color of the slider*/
  198. }
  199. {block:ifUpdatesBox}
  200. #updatesbox {
  201. height:30px;
  202. width:70px;
  203. {block:ifRoundedBorder}
  204. border-radius: 20px;
  205. {/block:ifRoundedBorder}
  206. border-style: {select:BorderStyle};
  207. border-width: 1px;
  208. border-color:{color:BorderColor};
  209. padding:0px 5px 5px 5px;
  210. z-index:0;
  211. overflow:hidden;
  212. text-align:center;
  213. font-weight: bold;
  214. top:25px;
  215. left:35px;
  216. color:{color:UpdatesTitleTextColor};
  217. position:fixed;
  218. background:{color:UpdatesBG};
  219. -moz-transition-duration:0.8s;
  220. -webkit-transition-duration:0.8s;
  221. -o-transition-duration:0.8s;
  222. }
  223.  
  224. #updatesbox:hover {
  225. min-height:60px;
  226. height: auto;
  227. width:100px;
  228. -moz-transition-duration:1s;
  229. -webkit-transition-duration:1s;
  230. -o-transition-duration:1s;
  231. }
  232. #updates {
  233. width:100px;
  234. line-height:10px;
  235. font-size:12px;
  236. font-family:{select:font};
  237. font-weight: normal;
  238. color: {color:UpdatesBoxTextColor};
  239. -moz-transition-duration:1s;
  240. -webkit-transition-duration:1s;
  241. -o-transition-duration:1s;
  242. }
  243. {/block:ifUpdatesBox}
  244. #wrap{
  245. position: relative;
  246. margin: 50px auto;
  247. width: 400px;
  248. left: 1%;
  249. }
  250. #content{
  251. width: 400px;
  252. padding: 10px;
  253. background:{color:ContentBG};
  254. {block:ifBoxShadow}
  255. box-shadow:6px 6px 0 rgba(0,0,0,0.2);
  256. {/block:ifBoxShadow}
  257. margin: 15px;
  258. border-style: {select:BorderStyle};
  259. border-width: 1px;
  260. {block:ifRoundedBorder}
  261. border-radius: 10px;
  262. {/block:ifRoundedBorder}
  263. border-color: {color:BorderColor};
  264.  
  265. }
  266. .info{
  267. background:{color:InfoBG};
  268. padding:5px;
  269. {block:ifRoundedBorder}
  270. border-radius:6px;
  271. {/block:ifRoundedBorder}
  272. border:{select:BorderStyle} {color:BorderColor};
  273. border-width: 1px;
  274. text-align:left;
  275. }
  276. #rightimage{
  277. position: fixed;
  278. bottom: 0px;
  279. right: 0px;
  280. }
  281. #leftimage{
  282. position: fixed;
  283. bottom: 0px;
  284. left: 0px;
  285. }
  286. #sidebar{
  287. position:fixed;
  288. width:160px;
  289. padding:10px;
  290. margin-top:0px;
  291. margin-left:-90px;
  292. background: {color:SidebarBG};
  293. left: 27%;
  294. top: 100px;
  295. min-height: 200px;
  296. height: auto;
  297. border-style: {select:BorderStyle};
  298. border-width: 1px;
  299. {block:ifRoundedBorder}
  300. border-radius: 10px;
  301. {/block:ifRoundedBorder}
  302. border-color: {color:BorderColor};
  303. {block:ifBoxShadow}
  304. box-shadow:6px 6px 0 rgba(0,0,0,0.2);
  305. {/block:ifBoxShadow}
  306. }
  307. #sidebar .wrap{
  308. padding: 3px 7px;
  309. width: auto;
  310. height: auto;
  311. text-align: center;
  312. font-size: {text:FontSize}px;
  313.  
  314. }
  315. #sidebar.wrap h2{
  316. text-align: center;
  317. font-size: 22px;
  318. font-weight: bold;
  319. }
  320. #pagination {
  321. padding-top: 5px;
  322. padding-bottom:5px;
  323. text-align:center;
  324. font-weight:bold;
  325. }
  326.  
  327. #pagination a {
  328. padding:0 15px;
  329. }
  330.  
  331. .ask{
  332. position: fixed;
  333. width: 35px;
  334. height: 35px;
  335. top: 120px;
  336. padding: 1px;
  337. margin-left:-63px;
  338. background: {color:SideLinksBG};
  339. {block:ifBoxShadow}
  340. box-shadow:5px 5px 0 rgba(0,0,0,0.2);
  341. {/block:ifBoxShadow}
  342. border-style: {select:BorderStyle};
  343. border-width: 1px;
  344. {block:ifRoundedBorder}
  345. border-radius: 10px;
  346. {/block:ifRoundedBorder}
  347. border-color: {color:BorderColor};
  348. font-size: 23px;
  349.  
  350. }
  351. .submit{
  352. position: fixed;
  353. width: 35px;
  354. height: 35px;
  355. top: 165px;
  356. padding: 1px;
  357. margin-left:-1px;
  358. background: {color:SideLinksBG};
  359. {block:ifBoxShadow}
  360. box-shadow:5px 5px 0 rgba(0,0,0,0.2);
  361. {/block:ifBoxShadow}
  362. border-style: {select:BorderStyle};
  363. border-width: 1px;
  364. {block:ifRoundedBorder}
  365. border-radius: 10px;
  366. {/block:ifRoundedBorder}
  367. border-color: {color:BorderColor};
  368. font-size: 23px;
  369.  
  370. }
  371. .archive{
  372. position: fixed;
  373. width: 35px;
  374. height: 35px;
  375. top: 210px;
  376. padding: 1px;
  377. margin-left:1px;
  378. background: {color:SideLinksBG};
  379. {block:ifBoxShadow}
  380. box-shadow:5px 5px 0 rgba(0,0,0,0.2);
  381. {/block:ifBoxShadow}
  382. border-style: {select:BorderStyle};
  383. border-width: 1px;
  384. margin-left: -2px;
  385. {block:ifRoundedBorder}
  386. border-radius: 10px;
  387. {/block:ifRoundedBorder}
  388. border-color: {color:BorderColor};
  389. font-size: 23px;
  390.  
  391. }
  392. .theme{
  393. position: fixed;
  394. width: 35px;
  395. height: 35px;
  396. top: 255px;
  397. padding: 1px;
  398. margin-left:0px;
  399. background: {color:SideLinksBG};
  400. {block:ifBoxShadow}
  401. box-shadow:5px 5px 0 rgba(0,0,0,0.2);
  402. {/block:ifBoxShadow}
  403. border-style: {select:BorderStyle};
  404. border-width: 1px;
  405. margin-left: -2px;
  406. {block:ifRoundedBorder}
  407. border-radius: 10px;
  408. {/block:ifRoundedBorder}
  409. border-color: {color:BorderColor};
  410. font-size: 23px;
  411.  
  412. }
  413. .pagi{
  414. position: fixed;
  415. bottom: 5px;
  416.  
  417. }
  418. .sidebarpixel{
  419. position: fixed;
  420. top: 80px;
  421. }
  422.  
  423. </style>
  424.  
  425. </head>
  426. <body>
  427. <div id="updatesbox">
  428. <p><center>{text:UpdatesBoxTitle}</center></p>
  429. <div id="updates">
  430. <p><center>{text:UpdatesBox}</center></p>
  431. </div>
  432. </div>
  433. <div id="rightimage">
  434. <img src="{image:RightImage}">
  435. </div>
  436. <div id="leftimage">
  437. <img src="{image:LeftImage}">
  438. </div>
  439. <div id="sidebar">
  440. <div class="wrap">
  441. <center><a href"{BlogURL}"><img src="{image:avatar}" width="150px" alt="Avatar"></a></center>
  442. {block:ifShowBlogTitle}
  443. <h2>{TITLE}</h2>
  444. {/block:ifShowBlogTitle}
  445. <p>{Description}</p>
  446. {block:ifDropdown}
  447. <select style="width: 100px auto; border: 1px solid;{block:ifRoundedBorder}border-radius: 5px;{/block:ifRoundedBorder} padding: 2px; color: {color:FontColor}; background-color: #fff; font-family: {select:font}; letter-spacing: 1px;" onChange="location.href=this.options[this.selectedIndex].value;">
  448. <option value="/">{text:DropdownTitle}</option>
  449. <option value="{text:Link1URL}">{text:Link1Title}</option>
  450. {block:ifLink2}
  451. <option value="{text:Link2URL}">{text:Link2Title}</option>
  452. {/block:ifLink2}
  453. {block:ifLink3}
  454. <option value="{text:Link3URL}">{text:Link3Title}</option>
  455. {/block:ifLink3}
  456. </select>
  457. {/block:ifDropdown}
  458. <div id="pagination">
  459. {block:Pagination}
  460. {block:PreviousPage}
  461. <a href="{PreviousPage}">{text:BackPaginationText} </a>
  462. {/block:PreviousPage}
  463.  
  464.  
  465. {block:NextPage}
  466. <a href="{NextPage}"> {text:ForwardPaginationText}</a>
  467. {/block:NextPage}
  468. {/block:Pagination}
  469. </div>
  470. <div class="ask">
  471. <p class="icon"><center><a href"/ask" title="{AskLabel}">πŸ–‚</a></center></p>
  472. <div class="submit">
  473. <p class="icon"><center><a href"/submit" title="{SubmitLabel}">πŸ—</a></center></p>
  474. <div class="archive">
  475. <p class="icon"><center><a href"/archive" title="Archive">πŸ”™</a></center></p>
  476. <div class="theme">
  477. <p class="icon"><center><a href"http://howl.skytaxi.jp" title="Theme">πŸ–³</a></center></p>
  478. </div>
  479. </div>
  480. </div>
  481.  
  482. </div>
  483. <div class="sidebarpixel">
  484. <img src="{image:SidebarPixel}">
  485. <div class="pagi">
  486.  
  487. </div>
  488. </div>
  489. </div>
  490. </div>
  491. </div>
  492. <div id="wrap">
  493. {block:Posts}
  494. <div id="content">
  495.  
  496. {block:Text}
  497. <li class="text">
  498. {block:Title}
  499. <h3><a href"{Permalink}">{Title}</a></h3>
  500. {/block:Title}{Body}
  501. </li>
  502. {/block:Text}{block:Photo}
  503. <li class="photo">
  504. <img src="{PhotoURL-400}" alt="{PhotoAlt}"/>
  505.  
  506. {block:Caption}
  507. <div class="caption">{Caption}</div>
  508. {/block:Caption}
  509. </li>
  510. {/block:Photo}{block:Panorama}
  511. <li class="panorama">
  512. {LinkOpenTag}
  513. <img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>
  514. {LinkCloseTag}{block:Caption}
  515. <div class="caption">{Caption}</div>
  516. {/block:Caption}
  517. </li>
  518. {/block:Panorama}{block:Photoset}
  519. <li class="photoset">
  520. {Photoset-400}{block:Caption}
  521. <div class="caption">{Caption}</div>
  522. {/block:Caption}
  523. </li>
  524. {/block:Photoset}{block:Quote}
  525. <li class="quote">
  526. "{Quote}"
  527.  
  528. {block:Source}
  529. <div class="source">{Source}</div>
  530. {/block:Source}
  531. </li>
  532. {/block:Quote}{block:Link}
  533. <li class="link">
  534. <a href"{URL}" class="link" {Target}>{Name}</a>
  535.  
  536. {block:Description}
  537. <div class="description">{Description}</div>
  538. {/block:Description}
  539. </li>
  540. {/block:Link}{block:Chat}
  541. <li class="chat">
  542. {block:Title}
  543. <h3><a href"{Permalink}">{Title}</a></h3>
  544. {/block:Title}
  545.  
  546. <ul class="chat">
  547. {block:Lines}
  548. <li class="{Alt} user_{UserNumber}">
  549. {block:Label}
  550. <span class="label">{Label}</span>
  551. {/block:Label}{Line}
  552. </li>
  553. {/block:Lines}
  554. </ul>
  555. </li>
  556. {/block:Chat}{block:Video}
  557. <li class="video">
  558. {Video-400}{block:Caption}
  559. <div class="caption">{Caption}</div>
  560. {/block:Caption}
  561. </li>
  562. {/block:Video}{block:Audio}
  563. <li class="audio">
  564. {AudioEmbed}{block:Caption}
  565. <div class="caption">{Caption}</div>
  566. {/block:Caption}
  567. </li>
  568. {/block:Audio}
  569. <p></p>
  570. {block:Date}
  571. <div class="info">
  572. {block:IndexPage}
  573. πŸ•’ {TimeAgo} (<a href"{Permalink}" title="{NoteCountWithLabel}">{NoteCount}{text:NoteSymbol}</a>){block:RebloggedFrom} - <a href"{ReblogParentURL}" title="{ReblogParentName}">via</a> ; <a href"{ReblogRootURL}" title="{ReblogRootName}">src</a>{/block:RebloggedFrom}
  574. {/block:IndexPage}
  575. {block:PermalinkPage}
  576. {12Hour}:{Minutes} - {MonthNumber}/{DayOfMonth}/{Year} (<a href"{Permalink}" title="{NoteCountWithLabel}">{NoteCount}{text:NoteSymbol}</a>)
  577. {block:RebloggedFrom}<br><a href"{ReblogParentURL}" title="{ReblogParentName}">via</a> + <a href"{ReblogRootURL}" title="{ReblogRootName}">src</a>{/block:RebloggedFrom}
  578. {/block:PermalinkPage}
  579. {block:ifshowtags}
  580. {block:HasTags}
  581. <br>
  582. {block:Tags}
  583. #<a href"{TagURL}">{Tag}</a>&nbsp;
  584. {/block:Tags}
  585. {/block:HasTags}
  586. {/block:ifshowtags}
  587. </div>
  588.  
  589. {block:PostNotes}
  590. {PostNotes}
  591. {/block:PostNotes}
  592.  
  593. {/block:Date}
  594. {/block:HasTags}
  595. </div>
  596. {/block:Posts}
  597. </div>
  598. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
  599. <script type="text/javascript">function blockquote_colors(){
  600. var colors = ["{color:BlockquoteColor}"];
  601. $('body').find('blockquote').each( function (i) {
  602. $(this).css("border-left-color", colors[i % colors.length]);
  603. });
  604. }
  605.  
  606. blockquote_colors();
  607.  
  608. $( document ).ajaxComplete(function() {
  609. blockquote_colors();
  610. });
  611. </script>
  612. </body>
  613. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement