Advertisement
lennonthemes

Ebby

Apr 28th, 2013
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.99 KB | None | 0 0
  1. <!---Theme by bonivur, keep all credit or you will be reported :)--->
  2.  
  3. <html>
  4. <head>
  5.  
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  8. <head><title>{Title}</title>
  9. <link rel="shortcut icon" href="{Favicon}">
  10. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  11. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  12. <link href='http://fonts.googleapis.com/css?family=Port+Lligat+Slab' rel='stylesheet' type='text/css'>
  13.  
  14. <!--Default Variables-->
  15. <!--Colors-->
  16.  
  17. <meta name="color:Background" content="#ffffff"/>
  18. <meta name="color:Text" content="#333333"/>
  19. <meta name="color:Link" content="#717581"/>
  20. <meta name="color:Hover" content="#333333"/>
  21. <meta name="color:Border" content="#969696"/>
  22.  
  23. <!--Images-->
  24.  
  25. <meta name="image:Background" content=""/>
  26. <meta name="image:Sidebar" content="http://25.media.tumblr.com/d00ca8b0061a4510f2e67fee4aea8755/tumblr_ml0tvygva51r8j1j3o3_250.gif"/>
  27.  
  28. <!--Links-->
  29.  
  30. <meta name="text:Link1" content="/" />
  31. <meta name="text:Link1 Title" content="" />
  32. <meta name="text:Link2" content="/" />
  33. <meta name="text:Link2 Title" content="" />
  34.  
  35.  
  36. <style type="text/css"> #candywrapper {
  37. /*this is where you control what the whole updates tab looks like*/
  38.  
  39. /*how far apart the letters are spaced*/
  40. letter-spacing:1px;
  41.  
  42. /*how the text is aligned; it could be center, left, right, or justify*/
  43. text-align: center;
  44.  
  45. /*font size*/
  46. font-size: 9px;
  47.  
  48. /*dont touch*/
  49. position:fixed;
  50.  
  51. /*how far from the left the updates tab is*/
  52. left:0px;
  53.  
  54. /*how far from the top the updates tab is*/
  55. top:-142px;
  56.  
  57. /*dont touch the three lines below ok*/
  58. -webkit-transition: all .5s ease-in-out;
  59. -moz-transition: all .5s ease-in-out;
  60. -o-transition: all .5s ease-in-out;
  61. z-index:99;
  62. }
  63.  
  64. #candywrapper:hover {
  65. /*this is where you control what the whole tab looks like when you hover*/
  66.  
  67. /*how far from the top the updates tab will be when you hover*/
  68. top:-30px;
  69.  
  70. /*dont touch the three lines below ok*/
  71. -webkit-transition: all .5s ease-in-out;
  72. -moz-transition: all .5s ease-in-out;
  73. -o-transition: all .5s ease-in-out;}
  74.  
  75. #in {
  76. color:#999; /*this is the color of the text within the tab; pick one from colorpicker.com*/
  77.  
  78. /*this is the font of the text*/
  79. font-family:georgia;
  80.  
  81. /*title tab border style. it can be dotted or dashed; just remember to change it on all four lines!*/
  82. border-style:solid;
  83.  
  84. /*border width*/
  85. border-width:1px;
  86.  
  87. /*border color*/
  88. border-color:#999;
  89.  
  90. /*dont touch*/
  91. padding: 40px 10px 10px 10px;
  92.  
  93. /*background color*/
  94. background:#fff;
  95.  
  96. /*text alignment; could be right, left, center, justify*/
  97. text-align:center;
  98.  
  99. /*font size of the updates box*/
  100. font-size:7px;
  101.  
  102. /*width of the updates box*/
  103. width:90px;
  104.  
  105. /*height of the updates box*/
  106. height:90px;
  107.  
  108. /*dont touch*/
  109. z-index: 9999;
  110. }
  111.  
  112.  
  113. #titletab {
  114. /* the title tab where it says "updates"; if you want to change the text "updates" then command+f (control+f if on pc) and look for the word "updates"*/
  115.  
  116. /*background color of the title tab*/
  117. background:#fff;
  118.  
  119. /*color of title tab text*/
  120. color:#999;
  121.  
  122. /*title tab text letter spacing*/
  123. letter-spacing:0px;
  124.  
  125. /*dont touch*/
  126. border-top-style:none;
  127.  
  128. /*title tab border style. it can be dotted or dashed; just remember to change it on all four lines!*/
  129. border-right-style:solid;
  130. border-bottom-style:solid;
  131. border-left-style:solid;
  132.  
  133. /*font of the title tab*/
  134. font-family:georgia;
  135.  
  136. /*font size of title tab*/
  137. font-size:8px;
  138.  
  139. /*border color of title tab*/
  140. border-color:#999;
  141.  
  142. /*border width of title tab*/
  143. border-width:1px;
  144.  
  145. /*how the text is aligned; could be right, left, justify, or center*/
  146. text-align: center;
  147.  
  148. /*height of title tab*/
  149. height:5px;
  150.  
  151. /*dont touch*/
  152. padding: 3px 0 7px 0;
  153.  
  154. /*change the border radius on all of these lines if you want the tab to be rounded!*/
  155. border-bottom-right-radius: 0px;
  156. -moz-border-bottom-right-radius: 0px;
  157. -webkit-border-bottom-right-radius: 0px;
  158.  
  159. /*dont touch the three lines below ok*/
  160. -webkit-transition: all .5s ease-in-out;
  161. -moz-transition: all .5s ease-in-out;
  162. -o-transition: all .5s ease-in-out;
  163. }
  164.  
  165. ::-webkit-scrollbar {height: auto;width: 6px;}
  166. ::-webkit-scrollbar-thumb {background-color:{color:scrollbar};}
  167. ::-webkit-scrollbar-track{background-color:{color:scrollbg};}
  168.  
  169. body {
  170. background:{color:background};
  171. background-image: url('{image:background}') no-repeat fixed center;;
  172. margin:0px;
  173. color:{color:text};
  174. font-family:consolas;
  175. font-size:10px;
  176. line-height:100%;
  177. }
  178.  
  179. a {
  180. text-decoration:none;
  181. outline:none;
  182. -moz-outline-style:none;
  183. color:{color:link};
  184. -webkit-transition: all 0.5s ease;
  185. -moz-transition: all 0.5s ease;
  186. -o-transition: all 0.5s ease
  187. }
  188.  
  189. img {
  190. border:none;
  191. }
  192.  
  193. blockquote blockquote {
  194. padding-left:5px;
  195. border-left:1px solid;
  196. }
  197.  
  198. h1 {
  199. font-size:12px;
  200. font-family:consolas;
  201. text-transform:uppercase;
  202. }
  203.  
  204. a:hover {
  205. opacity:10;
  206. color:{color:hover};
  207. -webkit-transition: all 0.7s ease;
  208. -moz-transition: all 0.7s ease;
  209. -o-transition: all 0.7s ease
  210. }
  211.  
  212. small{
  213. font-size:9px;
  214. line-height:110%
  215. }
  216.  
  217. big {
  218. font-size:12px;
  219. line-height:110%
  220. }
  221.  
  222. b, strong{
  223. color:{color:text}
  224. }
  225. i, em {
  226. color:{color:text}
  227. }
  228. p{
  229. margin-top:5px;
  230. margin-bottom:5px
  231. }
  232. blockquote {
  233. padding:0px;
  234. padding-left:5px;
  235. margin:5px;
  236. border-left:1px dotted {color:text}
  237. }
  238.  
  239. blockquote img {
  240. max-width:300px
  241. }
  242.  
  243. ul, li img {
  244. max-with:250px
  245. }
  246.  
  247. .audio {width:500px;height:160px;}
  248. .albumart {width:150px;height:150px;position:absolute; border:1px dotted {color:text}; padding:2px;}
  249. .albumart img {width:150px;height:150px;float:left;}
  250. .playercontainer {display:block;width:150px;height:150px;background-color:#ffffff;position:absolute;}
  251. .player {margin-left:36px;margin-top:36px;width:25px;height:25px;
  252. overflow:hidden;background-color:white;}
  253. .audioinfo {margin-left:160px;float:left;width:200px;padding:2px;margin-top:2px;}
  254.  
  255. #entries {
  256. padding:10px;
  257. width:500px;
  258. margin-left:600px;
  259. margin-top:85px;
  260. }
  261.  
  262.  
  263. #post {
  264. width:500px;
  265. padding-bottom:3px;
  266. font-family:consolas;
  267. opacity:1;
  268. }
  269.  
  270. #sidebar {
  271. width:120px;
  272. position:fixed;
  273. margin-left:320px;
  274. margin-top:150px;
  275. opacity:1;
  276. }
  277.  
  278. #sidebarimage img{
  279. width:120px;
  280. padding:3px;
  281. border:0.5px solid;
  282. border-color: {color:Border};
  283. -webkit-transition: all 0.5s ease;
  284. -moz-transition: all 0.5s ease;
  285. -o-transition: all 0.5s ease
  286. }
  287.  
  288. #links {
  289. font-family:consolas;
  290. font-size:11px;
  291. opacity:1;
  292. text-align:center;
  293. padding-top:54px;
  294. letter-spacing:1px;
  295. text-transform:uppercase;
  296. padding-bottom:5px;
  297. margin-top:-50px;
  298. margin-left:8px;
  299. }
  300.  
  301. #description {
  302. padding:5px;
  303. font-size:10px;
  304. font-style:italic;
  305. opacity: 0.8;
  306. text-align:center;
  307. margin-top:-2px;
  308. margin-left:6px;
  309. }
  310.  
  311. #pagination {
  312. font-size:16px;
  313. text-align:center;
  314. color:{color:link};
  315. font-family:consolas;
  316. letter-spacing:2px;
  317. margin-left:11px;
  318. }
  319.  
  320. #info {
  321. text-align:center;padding:5px;
  322. margin-top:5px;
  323. margin-bottom:10px;
  324. text-transform: uppercase;
  325. font-family:consolas;
  326. font-size:9px;
  327. }
  328.  
  329. #tags {
  330. font-family:consolas;
  331. letter-spacing:1px;
  332. text-transform:italic;
  333. font-size:9px;
  334. margin-top:4px;
  335. a {display:inline; background-color:{color:linkb};
  336. padding:-4px;
  337. text-align:left;
  338. -webkit-transition: all 0.6s ease-in-out;
  339. -moz-transition: all 0.6s ease-in-out;
  340. -o-transition: all 0.6s ease-in-out;
  341. -ms-transition: all 0.6s ease-in-out; transition: all 0.6s ease-in-out;}
  342.  
  343. #asker {
  344. float:left;
  345. margin-right:5px;
  346. }
  347.  
  348. #asked {
  349. font-family:consolas;
  350. text-transform:lowercase;
  351. letter-spacing:1px;
  352. padding-bottom:3px;
  353. }
  354.  
  355. #notes {
  356. font-family:consolas;
  357. text-transform:lowercase;
  358. font-size:9px;
  359. }
  360.  
  361. #question {
  362. font-family:consolas;
  363. font-style:italic;
  364. font-size:10px;
  365. }
  366.  
  367. #answer {
  368. font-family:consolas;
  369. text-transform:uppercase;
  370. font-size:10px;
  371. }
  372.  
  373. {CustomCSS}</style></head><body>
  374. <div id="candywrapper">
  375. <div id="in">
  376. TYPE STUFF HERE!!!!!!!!!!
  377. </div>
  378. <div id="titletab">box title here</div>
  379. </div>
  380.  
  381. <div id="sidebar">
  382. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  383. <div id="links">
  384. <a href="/">home</a>
  385. <a href="/ask">mail</a>
  386. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  387. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}
  388. <a href="http://bonivur.tumblr.com/">©</a> <!---think about it...It's not right so leave it!--->
  389. </div>
  390.  
  391. <div id="description">{Description}</div>
  392.  
  393. {block:Pagination}<div align="center" id="pagination">{block:PreviousPage}<a href="{PreviousPage}">←<>/a>{/block:PreviousPage} {block:NextPage}<a href="{NextPage}">→</a>{/block:NextPage}</div>{/block:Pagination}
  394. </div>
  395.  
  396. <div id="entries">{block:Posts}<div id="post">
  397.  
  398. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  399.  
  400. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  401.  
  402. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  403.  
  404. {block:Quote}{Quote}{block:Source} —{Source}{/block:Source}{/block:Quote}
  405.  
  406. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  407.  
  408. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  409.  
  410. {block:Audio}<left>{block:AlbumArt}<img src="{AlbumArtURL}" width="80px" height="80px" align="left" style="margin-right:10px" />{/block:AlbumArt}<span class="audio">{AudioPlayerBlack}</left></span>
  411. <br>{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}
  412. <br>{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  413. {/block:ExternalAudio}<br><b>Played:</b> {PlayCount} times
  414. {/block:Audio}
  415.  
  416. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  417.  
  418. {block:Answer}<div id="asker"></div><div id="asked">{Asker} asked: {Question} {Answer}{/block:Answer}
  419.  
  420. <div id="info"> posted <a href="{Perimalink}">{block:Date}<a href="{Permalink}">{TimeAgo}</a>{/block:Date} with <a href="{Permalink}">{NoteCountWithLabel}</a> {block:RebloggedFrom} <a href="{ReblogParentURL}">VIA</a> {/block:RebloggedFrom}
  421. {block:ContentSource}<a href="{SourceURL}">(<a href="{SourceURL}">© <a href="{SourceURL}">{SourceLink}</a>)</a>{/block:ContentSource}{/block:RebloggedFrom}<div id="tags" st>
  422. {block:HasTags}<div id="tags">{block:Tags} #<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div></div>
  423. {/block:Posts}
  424. {block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes}
  425. {/block:Posts}</div></div></div>
  426.  
  427.  
  428.  
  429. </body>
  430. <!--- dont remove! --->
  431. <div style="position:fixed; top:35px; right:5px;font-size:12px;">
  432. <a href="http://bonivur.tumblr.com">bonivur © </a></div>
  433. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement