farflunghopes

sun

Feb 12th, 2013
439
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.04 KB | None | 0 0
  1. <!--- Theme #18 'Sun' by Brianna @ farflunghopes.tumblr.com
  2.  
  3. Rules:
  4. 1. Do not remove the credit from the code or the theme. You may MOVE it, but leave it on the FIRST page of your blog, ie: it must be visible on the main page.
  5. 2. Do not redistribute this theme.
  6. 3. Do not steal this theme. Taking a portion of the code and adding it to your own theme/others' counts as stealing. If you want to learn how to do something, ask, and I will do my best to help you.
  7. 4. Do not use this theme as a base code.
  8. 5. If you have any problems, find glitches, or just need help, please ask me! That's not really a rule, but I'd love to help.
  9.  
  10. Help:
  11. - Theme looks best in Google Chrome.
  12. - SAVE and REFRESH the page before changing appearance options.
  13. - The background image REPEAT and POSITION can be changed under the appearance options. Select or deslect 'BackgroundImageRepeat' and enter the position in 'bgimgposition'.
  14. - There are five extra links available. Add them under the appearance options.
  15. - Hovering over the sidebar reveals the extra links. To have them always visible, deselect 'HiddenLinks' in the appearance options.
  16. - This theme has two placement options for the post info (time stamp, note count, source, and reblog button). The default is beside the post. To have the info below the post, select 'BottomInfo' under the appearance options.
  17. - The BODY font SIZE can be changed under the appearance options. DO NOT add 'px' after the number.
  18. - The 'highlight' and 'highlighttext' color options refer to the background and text color that appears when you click and drag the cursor.
  19.  
  20. Enjoy!
  21.  
  22. --->
  23.  
  24. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  25. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  26. <head><title>{Title}</title>
  27. <link rel="shortcut icon" href="{Favicon}">
  28. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  29. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  30.  
  31. <link href='http://fonts.googleapis.com/css?family=Love+Ya+Like+A+Sister' rel='stylesheet' type='text/css'>
  32.  
  33. <link href='http://fonts.googleapis.com/css?family=Tangerine' rel='stylesheet' type='text/css'>
  34.  
  35. <meta name="color:background" content="#ffffff"/>
  36. <meta name="color:sidebar" content="#CCCCCC">
  37. <meta name="color:text" content="#888888"/>
  38. <meta name="color:sidetext" content="#000000">
  39. <meta name="color:borders" content="#888888;">
  40. <meta name="color:link" content="#333333"/>
  41. <meta name="color:linkhover" content="#999999">
  42. <meta name="color:tags" content="#FFFFFF">
  43. <meta name="color:tagshover" content="#777777">
  44. <meta name="color:infolink" content="#555555">
  45. <meta name="color:infolinkhover" content="#999999">
  46. <meta name="color:mainlink" content="#555555">
  47. <meta name="color:mainlinkhover" content="#000000">
  48. <meta name="color:extralink" contenet="#888888">
  49. <meta name="color:extralinkhover" content="#222222">
  50. <meta name="color:title" content="#888888">
  51. <meta name="color:posts" content="#DDDDDD">
  52. <meta name="color:scrollbarbackground" content="#DDDDDD">
  53. <meta name="color:scrollbar" content="#999999">
  54. <meta name="color:highlight" content="#DDDDDD">
  55. <meta name="color:highlighttext" content="#111111">
  56.  
  57. <meta name="font:sidebar" content="">
  58. <meta name="font:body" content="">
  59.  
  60. <meta name="image:sidebar" content=""/>
  61. <meta name="image:background" content="">
  62.  
  63. <meta name="text:bodyfontsize" content="11">
  64. <meta name="text:bgimgposition" content="bottom right" />
  65. <meta name="text:link1" content="/">
  66. <meta name="text:link1name" content="link 1">
  67. <meta name="text:link2" content="/">
  68. <meta name="text:link2name" content="link 2">
  69. <meta name="text:link3" content="/">
  70. <meta name="text:link3name" content="link 3">
  71. <meta name="text:link4" content="/">
  72. <meta name="text:link4name" content="link 4">
  73. <meta name="text:link5" content="/">
  74. <meta name="text:link5name" content="link 5">
  75.  
  76. <meta name="if:BackgroundImageRepeat" content="" />
  77. <meta name="if:HiddenLinks" content="1">
  78. <meta name="if:BottomInfo" content="">
  79.  
  80. <style type="text/css">
  81.  
  82. iframe#tumblr_controls {right:3px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.2;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  83. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 1;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
  84.  
  85. ::-webkit-scrollbar {
  86. width: 7px;
  87. background-color:{color:scrollbarbackground};
  88. }
  89.  
  90. ::-webkit-scrollbar-thumb {
  91. width:7px;
  92. background-color:{color:scrollbar};
  93. }
  94.  
  95. ::selection {
  96. background: {color:highlight};
  97. color: {color:highlighttext};
  98. }
  99.  
  100. body {
  101. background-color:{color:background};
  102. color:{color:text};
  103. font-size:{text:bodyfontsize}px;
  104. line-height:13px;
  105. font-family:{font:body};
  106. word-spacing:2px;
  107. background-image:url('{image:background}');
  108. background-attachment:fixed;
  109. background-position:{text:bgimgposition};
  110. {block:IfBackgroundImageRepeat}
  111. background-repeat:repeat;
  112. {/block:IfBackgroundImageRepeat}
  113. {block:IfNotBackgroundImageRepeat}
  114. background-repeat:no-repeat;
  115. {/block:IfNotBackgroundImageRepeat}
  116. }
  117.  
  118. a {
  119. color:{color:link};
  120. text-decoration:none;
  121. outline:none;
  122. -moz-outline-style:none;
  123. -webkit-transition: all 0.6s ease-out;
  124. -o-transition: all 0.6s ease-out;
  125. -webkit-transition: all 0.6s ease-out;
  126. -moz-transition: all 0.6s ease-out;
  127. }
  128.  
  129. a:hover {
  130. color:{color:linkhover};
  131. -webkit-transition: all 0.6s ease-out;
  132. -o-transition: all 0.6s ease-out;
  133. -webkit-transition: all 0.6s ease-out;
  134. -moz-transition: all 0.6s ease-out;
  135. }
  136.  
  137. a:tip:title {
  138. background-color:{color:background;}
  139. }
  140.  
  141. blockquote {
  142. padding-left:3px;
  143. border-left:2px solid;
  144. }
  145.  
  146. blockquote blockquote {
  147. padding-left:3px;
  148. border-left:2px solid;
  149. }
  150.  
  151. h1 {
  152. font-size:15px;
  153. }
  154.  
  155. #theme {
  156. margin-top:20px;
  157. width:1000px;
  158. margin-left:6%;
  159. }
  160.  
  161. #entries {
  162. width:500px;
  163. margin-left:290px;
  164. padding-top:20px;
  165. }
  166.  
  167. #post {
  168. width:500px;
  169. padding:10px;
  170. background-color:{color:posts};
  171. overflow:hidden;
  172. border:1px solid {color:borders};
  173. }
  174.  
  175. {block:IfNotBottomInfo}
  176. #post:hover #info {
  177. position:absolute;
  178. border-left:1px solid {color:borders};
  179. width:170px;
  180. height:auto;
  181. opacity:0.9;
  182. -webkit-transition: all 0.6s ease-out;
  183. -o-transition: all 0.6s ease-out;
  184. -webkit-transition: all 0.6s ease-out;
  185. -moz-transition: all 0.6s ease-out;
  186. }
  187. {/block:IfNotBottomInfo}
  188.  
  189. #sidebar2 {
  190. height:100%;
  191. width:230px;
  192. position:fixed;
  193. margin-left:10px;
  194. margin-top:-20px;
  195. text-align:center;
  196. background-color:{color:sidebar};
  197. border-left: 2px solid {color:borders};
  198. border-right: 2px solid {color:borders};
  199. }
  200.  
  201. #title {
  202. font-size:19px;
  203. margin-top:135px;
  204. text-align:center;
  205. color:{color:title};
  206. letter-spacing:1px;
  207. font-family: 'Tangerine', cursive;
  208. }
  209.  
  210. #sidebarimage {
  211. margin-top:5px;
  212. }
  213.  
  214. #sidebarimage img {
  215. width:170px;
  216. padding:7px;
  217. border:3px double {color:borders};
  218. }
  219.  
  220. #link {
  221. margin-top:5px;
  222. width:165px;
  223. text-align:center;
  224. -webkit-transition: all 0.6s ease-out;
  225. -o-transition: all 0.6s ease-out;
  226. -webkit-transition: all 0.6s ease-out;
  227. -moz-transition: all 0.6s ease-out;
  228. }
  229.  
  230. #link a {
  231. display:inline-block;
  232. margin-top:3px;
  233. height:14px;
  234. font-size:8px;
  235. background-color:transparent;
  236. text-align:center;
  237. text-transform:uppercase;
  238. overflow:hidden;
  239. color:{color:mainlink};
  240. opacity:0.99;
  241. -webkit-transition: all 0.6s ease-out;
  242. -o-transition: all 0.6s ease-out;
  243. -webkit-transition: all 0.6s ease-out;
  244. -moz-transition: all 0.6s ease-out;
  245. }
  246.  
  247. #link a:hover {
  248. color:{color:mainlinkhover};
  249. -webkit-transition: all 0.6s ease-out;
  250. -o-transition: all 0.6s ease-out;
  251. -webkit-transition: all 0.6s ease-out;
  252. -moz-transition: all 0.6s ease-out;
  253. }
  254.  
  255. #link2 {
  256. width:160px;
  257. text-align:center;
  258. padding-bottom:1px;
  259. {block:IfHiddenLinks}
  260. margin-top:-10px;
  261. -webkit-transition: all 0.6s ease-out;
  262. -o-transition: all 0.6s ease-out;
  263. -webkit-transition: all 0.6s ease-out;
  264. -moz-transition: all 0.6s ease-out;
  265. {/block:IfHiddenLinks}
  266. {block:IfNotHiddenLinks}
  267. margin-top:-1px;
  268. {/block:IfNotHiddenLinks}
  269. }
  270.  
  271. #link2 a {
  272. display:inline-block;
  273. margin-top:3px;
  274. height:14px;
  275. font-size:8px;
  276. font-family:georgia;
  277. background-color:transparent;
  278. text-align:center;
  279. font-style:italic;
  280. color:{color:extralink};
  281. overflow:hidden;
  282. {block:IfHiddenLinks}
  283. opacity:0;
  284. -webkit-transition: all 0.6s ease-out;
  285. -o-transition: all 0.6s ease-out;
  286. -webkit-transition: all 0.6s ease-out;
  287. -moz-transition: all 0.6s ease-out;
  288. {/block:IfHiddenLinks}
  289. {block:IfNotHiddenLinks}
  290. opacity:1;
  291. {/block:IfNotHiddenLinks}
  292. }
  293.  
  294. #link2 a:hover {
  295. color:{color:extralinkhover};
  296. -webkit-transition: all 0.6s ease-out;
  297. -o-transition: all 0.6s ease-out;
  298. -webkit-transition: all 0.6s ease-out;
  299. -moz-transition: all 0.6s ease-out;
  300. }
  301.  
  302.  
  303. #description {
  304. width:170px;
  305. margin-top:-5px;
  306. -webkit-transition: all 0.6s ease-out;
  307. -o-transition: all 0.6s ease-out;
  308. -webkit-transition: all 0.6s ease-out;
  309. -moz-transition: all 0.6s ease-out;
  310. }
  311.  
  312. {block:IfHiddenLinks}
  313. #description:hover #link2{
  314. margin-top:-1px;
  315. -webkit-transition: all 0.6s ease-out;
  316. -o-transition: all 0.6s ease-out;
  317. -webkit-transition: all 0.6s ease-out;
  318. -moz-transition: all 0.6s ease-out
  319. }
  320.  
  321.  
  322. #description:hover #link2 a {
  323. opacity:1;
  324. }
  325. {/block:IfHiddenLinks}
  326.  
  327. #text {
  328. margin-top:-17px;
  329. width:160px;
  330. padding:5px;
  331. padding-bottom:1px;
  332. text-align:center;
  333. font-size:11px;
  334. line-height:11px;
  335. color:{color:sidetext};
  336. font-family:{font:sidebar};
  337. opacity:1;
  338. letter-spacing:0px;
  339. word-spacing:0px;
  340. }
  341.  
  342. #text a {
  343. color:{color:desclink};
  344. }
  345.  
  346. #text a:hover {
  347. color:{color:scrollbar};
  348. }
  349.  
  350. #pagination {
  351. width:150px;
  352. border-top:1px solid {color:borders};
  353. font-size:9px;
  354. text-align:center;
  355. text-transform:uppercase;
  356. font-family:geneva;
  357. padding-top:5px;
  358. color:{color:scrollbar};
  359. }
  360.  
  361. #pagination a {
  362. font-size:9px;
  363. color:{color:desclink};
  364. }
  365.  
  366. #pagination a:hover {
  367. color:{color:infolinkhover};
  368. }
  369.  
  370. #tags {
  371. font-size:9px;
  372. text-align:center;
  373. {block:IfNotBottomInfo}
  374. margin-top:7px;
  375. border-top:1px solid {color:borders};
  376. padding-top:3px;
  377. {/block:IfNotBottomInfo}
  378. {block:IfBottomInfo}
  379. margin-top:-2px;
  380. {/block:IfBottomInfo}
  381. }
  382.  
  383. #info a{
  384. color:{color:infolink};
  385. }
  386.  
  387. #info a:hover {
  388. color:{color:infolinkhover};
  389. }
  390.  
  391. #info {
  392. font-size:9px;
  393. font-style:italic;
  394. background-color:transparent;
  395. {block:IfNotBottomInfo}
  396. position:absolute;
  397. text-align:left;
  398. margin-left:515px;
  399. width:170px;
  400. margin-top:0px;
  401. padding-left:3px;
  402. border-left:1px solid {color:borders};
  403. opacity:0;
  404. -webkit-transition: all 0.6s ease-out;
  405. -o-transition: all 0.6s ease-out;
  406. -webkit-transition: all 0.6s ease-out;
  407. -moz-transition: all 0.6s ease-out;
  408. {block:IfNotBottomInfo}
  409. {block:IfBottomInfo}
  410. margin-top:5px;
  411. text-align:center;
  412. border-top:1px solid {color:borders};
  413. padding-top:3px;
  414. opacity:0.99;
  415. {/block:IfBottomInfo}
  416. }
  417.  
  418. #tags a {
  419. color:{color:tags};
  420. }
  421.  
  422. #tags a:hover {
  423. color:{color:tagshover};
  424. }
  425.  
  426. .quotation {
  427. font-family: 'Love Ya Like A Sister', cursive;
  428. font-size:38px;
  429. margin-top:10px;
  430. }
  431.  
  432. #asker {
  433. font-size:18px;
  434. margin-top:-20px;
  435. margin-left:30px;
  436. font-family: 'Tangerine', cursive;
  437. }
  438.  
  439. #question {
  440. border-bottom:1px solid {color:text};
  441. padding-bottom:7px;
  442. }
  443.  
  444. .audio{
  445. float:left;
  446. text-align: center;
  447. margin-right:5px;
  448. width: 50px;
  449. }
  450. .audio img{
  451. max-width: 50px;
  452. height: auto;
  453. }
  454.  
  455. .caption {
  456. margin-top:-3px;
  457. }
  458.  
  459. .count {
  460. padding-top:8px;
  461. }
  462.  
  463. .quote {
  464. margin-top:-15px;
  465. }
  466.  
  467. {CustomCSS}</style></head><body>
  468.  
  469. <div id="theme">
  470.  
  471. <div id="sidebar2">
  472.  
  473. <center>
  474. <div id="title">{Title}</div>
  475.  
  476. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  477.  
  478. <div id="description">
  479. <center>
  480.  
  481. <div id="link">
  482. <a href="/">home</a>&nbsp
  483. <a href="/ask">askbox</a>&nbsp
  484. <a href="/archive">index</a>&nbsp
  485. <a href="http://farflunghopes.tumblr.com">theme</a>
  486. </div>
  487. <br>
  488.  
  489. <div id="text">
  490. <p>{Description}</div>
  491.  
  492. <div id="link2">
  493. {block:IfLink1Name}
  494. <a href="{text:link1}">{text:link1name}</a>
  495. {/block:IfLink1Name}
  496. {block:IfLink2Name}
  497. &nbsp<a href="{text:link2}">{text:link2name}</a>
  498. {/block:IfLink2Name}
  499. {block:IfLink3Name}
  500. &nbsp<a href="{text:link3}">{text:link3name}</a>
  501. {/block:IfLink3Name}
  502. {block:IfLink4Name}
  503. &nbsp<a href="{text:link4}">{text:link4name}</a>
  504. {/block:IfLink4Name}
  505. {block:IfLink5Name}
  506. &nbsp<a href="{text:link5}">{text:link5name}</a>
  507. {/block:IfLink5Name}
  508. </div>
  509.  
  510.  
  511. </center>
  512. </div>
  513.  
  514. <div id="pagination">{block:PreviousPage}<a href="{PreviousPage}"><big>◀</big></a> {/block:PreviousPage}{CurrentPage} | {TotalPages}{block:NextPage} <a href="{NextPage}"><big>▶</big></a>{/block:NextPage}</div></center>
  515.  
  516.  
  517. </div>
  518.  
  519. <div id="entries">
  520.  
  521. {block:Posts}<div id="post">
  522.  
  523. {block:IfNotBottomInfo}
  524. <div id="info">
  525. {block:Date}<a href="{Permalink}">{ShortMonth} {DayOfMonth}, {ShortYear}<br>{TimeAgo}</a><br>{/block:Date}
  526. {block:RebloggedFrom}
  527. {block:ContentSource}<a title="{ReblogRootName}" href="{SourceURL}">Source</a>&nbsp&nbsp:&nbsp{/block:ContentSource}
  528. <a title="{ReblogParentName}" href="{ReblogParentURL}">Via</a><br>{/block:RebloggedFrom}
  529. <a href="{Permalink}">{NoteCountWithLabel}</a>
  530. <br><a href="{ReblogURL}">reblog</a></div>
  531. {/block:IfNotBottomInfo}
  532.  
  533. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  534.  
  535. {block:Photo}<center>{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}</center>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  536.  
  537. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  538.  
  539. {block:Quote}<div class="quotation">"</div><div class="quote">&nbsp&nbsp&nbsp&nbsp&nbsp{Quote}"</div>{block:Source}<br>&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp—{Source}{/block:Source}{/block:Quote}
  540.  
  541. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  542.  
  543. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}</h1>{block:Lines}{block:Label}<strong>{Label}&nbsp</strong>{/block:Label}{Line}<br>{/Block:Lines}{/block:Chat}
  544.  
  545. {block:Audio}
  546. {block:AlbumArt}<div class="audio"><img src="{AlbumArtURL}"><br></div>{/block:AlbumArt}{AudioPlayerGrey}<div class="count">{PlayCount} plays</div>{block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  547. {/block:Audio}
  548.  
  549. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  550.  
  551. {block:Answer}<img src="{AskerPortraitURL-24}"><div id="asker">{Asker}:</div><br><div id="question">{Question}</div><br>{Answer}{/block:Answer}
  552.  
  553. {block:IfBottomInfo}
  554. <div id="info">
  555. {block:Date}<a href="{Permalink}">{TimeAgo} ({ShortMonth} {DayOfMonth}, {ShortYear})</a> | {/block:Date}<a href="{Permalink}">{NoteCount}</a> {block:RebloggedFrom}| <a href="{ReblogParentURL}">{ReblogParentName}</a>
  556. {block:ContentSource}(© <a href="{SourceURL}">{ReblogRootName}</a>){/block:ContentSource}
  557. {/block:RebloggedFrom}| <a href="{ReblogURL}">reblog</a></div>
  558. {/block:IfBottomInfo}
  559.  
  560. {block:HasTags}<div id="tags">
  561. {block:Tags}&nbsp&nbsp<a href="{TagURL}">{Tag}</a>&nbsp&nbsp{/block:Tags}</div>{/block:HasTags}
  562.  
  563. </div>
  564.  
  565. <br><br><br><br>
  566. {block:PostNotes}{PostNotes}{/block:PostNotes}
  567. {/block:Posts}</div>
  568. </div>
  569.  
  570. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment