Advertisement
Guest User

theme1

a guest
Jan 26th, 2014
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.41 KB | None | 0 0
  1. <!-- THEME 1 by CRUIZAYN
  2. YOU MAY NOT REMOVE THIS CREDIT OR THE CREDIT EMBEDDED IN THE THEME.
  3. follow the rules or i'll find out & not be happy ok ily
  4. go to kinziesthemes.tumblr.com for more themes!
  5.  
  6. IMPORTANT THEME TIPS:
  7. sidebar pic is 100x100
  8.  
  9. for your popup askbox:
  10. - WHERE IS SAYS USERNAME (at the very bottom of theme code), CHANGE IT TO YOUR USERNAME OR YOUR ASKBOX WILL NOT WORK!
  11. - WHERE IT SAYS WRITE YOUR FAQ, TYPE YOUR FAQ THERE!-->
  12.  
  13.  
  14. <head>
  15.  
  16.  
  17.  
  18. <meta name="color:blogtitle" content="#ddd"/>
  19. <meta name="text:blogtitle size" content="43" />
  20. <meta name="text:blogtitle" content="example" />
  21.  
  22.  
  23.  
  24. <html lang="en">
  25. <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  26. <html xmlns="http://www.w3.org/1999/xhtml">
  27. <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# blog: http://ogp.me/ns/blog#">
  28.  
  29. <script type="text/javascript"
  30. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  31.  
  32. <script>
  33. $(document).ready(function() {
  34. //
  35. $('a.poplight[href^=#]').click(function() {
  36. var popID = $(this).attr('rel'); //Get Popup Name
  37. var popURL = $(this).attr('href'); //Get Popup href to define size
  38. var query= popURL.split('?');
  39. var dim= query[1].split('&');
  40. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  41. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" class="btn_close" title="Close" alt="Close" /></a>');
  42. var popMargTop = ($('#' + popID).height() + 80) / 2;
  43. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  44. //Apply Margin to Popup
  45. $('#' + popID).css({
  46. 'margin-top' : -popMargTop,
  47. 'margin-left' : -popMargLeft
  48. });
  49. $('body').append('<div id="fade"></div>');
  50. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  51. return false;
  52. });
  53. $('a.close, #fade').live('click', function() {
  54. $('#fade , .popup_block').fadeOut(function() {
  55. $('#fade, a.close').remove(); //fade them both out
  56. });
  57. return false;
  58. });
  59. });
  60. </script>
  61.  
  62.  
  63. <title>{Title}</title>
  64. <link rel="shortcut icon" href="{Favicon}">
  65. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  66. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  67.  
  68.  
  69. <meta name="color:Background" content="#ffffff"/>
  70. <meta name="color:Sidebar" content="#ffffff"/>
  71. <meta name="color:Text" content="#a8a8a8"/>
  72. <meta name="color:Link" content="#b8b8b8"/>
  73. <meta name="color:Tags" content="f0f0f0"/>
  74. <meta name="color:Hover" content="#f2f2f2"/>
  75. <meta name="color:Line" content="#f2f2f2"/>
  76. <meta name="color:Border" content="#e4e4e4"/>
  77. <meta name="color:Post" content="#ffffff"/>
  78. <meta name="color:Answer" content="#f8f8f8"/>
  79. <meta name="image:sidebar" content=""/>
  80. <meta name="image:bg" content=""/>
  81. <meta name="text:Link 1" content="" />
  82. <meta name="text:Link 1 Text" content="" />
  83. <meta name="text:Link 2" content="" />
  84. <meta name="text:Link 2 Text" content="" />
  85. <meta name="if:Show Link 1" content="1" />
  86. <meta name="if:Show Link 2" content="1" />
  87. <meta name="color:scrollbarbg" content="ffffff"/>
  88.  
  89.  
  90. <style type="text/css">
  91.  
  92.  
  93.  
  94. #fade { /*--Transparent background layer--*/
  95. display: none; /*--hidden by default--*/
  96. background:#000;
  97. position: fixed; left: 0; top: 0;
  98. width: 100%; height: 100%;
  99. opacity: .5;
  100. z-index: 9999;
  101. }
  102.  
  103. .popup_block{
  104. display: none; /*--hidden by default--*/
  105. background: #ffffff;
  106. background-image: url();
  107. padding: 20px;
  108. font-family: ronda;
  109. float: left;
  110. font-size: 10px;
  111. position: fixed;
  112. top: 50%; left: 50%;
  113. border: 2px solid #aaaaaa;
  114. z-index: 99999;
  115. /*--CSS3 Box Shadows--*/
  116. -webkit-box-shadow: 0px 0px 20px #000;
  117. -moz-box-shadow: 0px 0px 20px #000;
  118. box-shadow: 1px 1px 20px #000;
  119. -webkit-transition: all .7s ease;
  120. -moz-transition: all .7s ease;
  121. -o-transition: all .7s ease;
  122. transition: all .7s ease;
  123. }
  124. .popup_block:hover{
  125. opacity:1;
  126. -webkit-transition: all .7s ease;
  127. -moz-transition: all .7s ease;
  128. -o-transition: all .7s ease;
  129. transition: all .7s ease;
  130. }
  131. img.btn_close {
  132. float: right;
  133. margin: -15px -15px 0 0;
  134. }
  135. *html .popup_block {
  136. position: absolute;
  137. }
  138.  
  139.  
  140.  
  141. ::-webkit-scrollbar {
  142. width: 5px;height: 5px;}
  143. ::-webkit-scrollbar-button:start:decrement,
  144. ::-webkit-scrollbar-button:end:increment {
  145. height: 6px;display: block;background-color: {color:white};}
  146. ::-webkit-scrollbar-track-piece {
  147. background-color: {color:scrollbarbg};}
  148. ::-webkit-scrollbar-thumb:vertical {
  149. height: 9px;background-color: {color:scrollbarbg};border-top:1px solid {color:scrollbarbg};border-bottom:1px solid {color:scrollbarbg};}
  150.  
  151.  
  152.  
  153. body {
  154. background:{color:background};
  155. margin:0px;
  156. color:{color:text};
  157. font-family:Calibri;
  158. font-size:9px;
  159. line-height:100%;
  160. }
  161.  
  162. a {
  163. text-decoration:none;
  164. outline:none;
  165. -moz-outline-style:none;
  166. color:{color:link};
  167. }
  168.  
  169. img {
  170. border:none;
  171. }
  172.  
  173. blockquote {
  174. padding-left:5px;
  175. border-left:2px solid;
  176. }
  177.  
  178. blockquote blockquote {
  179. padding-left:5px;
  180. border-left:2px solid;
  181. }
  182.  
  183. h1 {
  184. font-size:9px;
  185. text-transform:uppercase;
  186. }
  187.  
  188. a:hover {
  189. opacity:10;
  190. color:{color:hover};
  191. -webkit-transition: all 0.7s ease;
  192. -moz-transition: all 0.7s ease;
  193. -o-transition: all 0.7s ease
  194. }
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201. #entries {
  202. padding:10px;
  203. width:400px;
  204. font-family: times;
  205. text-transform:lowercase;
  206. margin-left:525px;
  207. margin-top:40px;
  208. font-size:9px;
  209. }
  210.  
  211.  
  212.  
  213. #post {
  214. width:400px;
  215. padding-bottom:20px;
  216. padding:10px;
  217. margin-top:15px;
  218. background-color:{color:Post};
  219. }
  220.  
  221.  
  222.  
  223. #sidebar {
  224. width:1px;
  225. height:700px;
  226. position:fixed;
  227. margin-left:520px;
  228. margin-top:-75px;
  229. opacity:.80;
  230. background-color:{color:Sidebar};
  231. }
  232.  
  233.  
  234.  
  235. #blogtitle{
  236. position:fixed !important;
  237. font-family: georgia;
  238. font-size:14px;
  239. width:160px;
  240. margin-top:200px;
  241. margin-left:-220px;
  242. color:{color:blogtitle};
  243. }
  244.  
  245.  
  246.  
  247.  
  248.  
  249. #sidebarimage {
  250. width 100px;
  251. }
  252.  
  253. #sidebarimage img {
  254. margin-left:-178px;
  255. margin-top:255px;
  256. width:100px;
  257. height:100px;
  258. }
  259.  
  260.  
  261. .links {
  262. width:165px;
  263. height:9px;
  264. padding: 9px;
  265. font-size:10px;
  266. font-family:georgia;
  267. text-align:center;
  268. margin-top:-135px;
  269. margin-left:-255px;
  270. text-align:center;
  271. text-transform:uppercase;
  272. word-spacing:7px;
  273. position:fixed;
  274. padding-bottom:7px;
  275. border-top:solid 1px;
  276. padding:6px;
  277. border-color: {color:border};;
  278. border-bottom:solid 1px;
  279. padding:6px;
  280. border-color: {color:border};;
  281.  
  282. }
  283.  
  284. .links a {
  285. font-size: 9px;
  286. }
  287.  
  288. .links a:hover {
  289. color:{color:Hover}
  290. text-transform: uppercase;
  291. letter-spacing: 1px;
  292. }
  293.  
  294.  
  295.  
  296. #description {
  297. position:fixed;
  298. font-family:cambria;
  299. line-height:90%;
  300. font-size:9px;
  301. font-style:normal;
  302. width:65px;
  303. margin-top:-110px;
  304. padding:8px;
  305. margin-left:-260px;
  306. text-align:right;
  307. color:{color:text};
  308. }
  309.  
  310. #description a {color:{color:text}; -moz-transition-duration:0.4s;
  311. -webkit-transition-duration:0.4s; -o-transition-duration:0.4s;}
  312.  
  313.  
  314.  
  315.  
  316. #pagination {
  317. width:100px;
  318. font-size:8px;
  319. text-align:right;
  320. text-transform:uppercase;
  321. margin-left:-149px;
  322. margin-top:12px;
  323. position:fixed;
  324. font-family:calibri;
  325. letter-spacing:1px;
  326. word-spacing:5px;
  327. }
  328.  
  329.  
  330.  
  331.  
  332. #info {
  333. text-align:left;
  334. margin-top:7px;
  335. font-family: times;
  336. text-transform:uppercase;
  337. font-size:8px;
  338. font-style:none;
  339. border-top:1px solid {color:Line}
  340. }
  341.  
  342.  
  343.  
  344.  
  345. #tags {
  346. font-family:times;
  347. letter-spacing:0px;
  348. text-transform:lowercase;
  349. font-size:8px;
  350. font-style:italic;
  351. margin-top:4px;
  352. text-align:left;
  353. }
  354.  
  355. #tags
  356. a {display:inline;background-color:{color:Tags};padding:-3px;text-align:left;
  357. -webkit-transition: all 0.6s ease-in-out;
  358. -moz-transition: all 0.6s ease-in-out;
  359. -o-transition: all 0.6s ease-in-out;
  360. -ms-transition: all 0.6s ease-in-out; transition: all 0.6s ease-in-out;}
  361.  
  362.  
  363. #asker {
  364. padding:5px;
  365. font-family:cambria;
  366. letter-spacing:1px;
  367. text-align:left;
  368. font-style:italic;
  369. margin-left:10px;
  370. border-left:3px #eee solid;
  371. background-color:{color:background}
  372. }
  373.  
  374.  
  375. {CustomCSS}
  376.  
  377. iframe#tumblr_controls { white-space:nowrap; -webkit-filter: invert(100%); -moz-filter: invert(100%); -o-filter: invert(100%); -ms-filter: invert(100%); filter: invert(100%); opacity:.2;transition: .8s ease-in-out; -webkit-transition: .8s ease-in-out;-moz-transition: .8s ease-in-out;-o-transition: .8s ease-in-out; }
  378.  
  379.  
  380.  
  381. #noticeboard {
  382. text-align: center;
  383. font-size: 9px;
  384. position:fixed;
  385. left:15px;
  386. top:-111px;
  387. -webkit-transition: all .5s ease-in-out;
  388. -moz-transition: all .5s ease-in-out;
  389. -o-transition: all .5s ease-in-out;
  390. z-index:999;
  391. }
  392.  
  393. #noticeboard:hover {top:0px;}
  394.  
  395. #notices {
  396. border-right-style:solid;
  397. border-bottom-style:solid;
  398. border-left-style:solid;
  399. border-width:1px;
  400. border-color:#e0e0e0;
  401. padding:5px;
  402. background: #ffffff;
  403. width:90px;
  404. height:100px;
  405. z-index: 9999;
  406. -moz-border-radius-bottomright: 4px;
  407. -webkit-border-bottom-right-radius: 4px;
  408. }
  409.  
  410. #noticeboardtab {
  411. border-right-style:solid;
  412. border-bottom-style:solid;
  413. border-left-style:solid;
  414. border-width:1px;
  415. border-color:#e0e0e0;
  416. height:6px;
  417. text-transform:uppercase;
  418. padding: 2px 0 8px 0;
  419. background:#fff;
  420. border-bottom-left-radius: 4px;
  421. -moz-border-radius-bottomleft: 4px;
  422. -webkit-border-bottom-left-radius: 4px;
  423. border-bottom-right-radius: 4px;
  424. -moz-border-radius-bottomright: 4px;
  425. -webkit-border-bottom-right-radius: 4px;
  426. width: 100px;
  427. }
  428.  
  429.  
  430.  
  431.  
  432.  
  433. </style></head><body>
  434.  
  435.  
  436.  
  437.  
  438.  
  439. <div id="sidebar">
  440.  
  441.  
  442. <div id="blogtitle">{text:blogtitle}</div>
  443.  
  444.  
  445. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  446.  
  447.  
  448. <div id="description">
  449. {Description}
  450. </div>
  451.  
  452.  
  453. <div class="links">
  454. <a href="/">home</a>
  455. <a href="/ask"><a href='#?w=500' rel='02' class='poplight'>message</a></a>
  456. {block:IfShowLink1}<a href="{text:Link 1}">{text:Link 1 Text}</a>{/block:IfShowLink1}
  457. {block:IfShowLink2}<a href="{text:Link 2}">{text:Link 2 Text}</a>{/block:IfShowLink2}
  458. </div>
  459.  
  460.  
  461. <div id="pagination">
  462. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">back //</a>{/block:PreviousPage} {block:NextPage}<a href="{NextPage}">// forth</a><br />{/block:NextPage}{/block:Pagination}</div></center></div>
  463. </div></div></div>
  464.  
  465. </div>
  466.  
  467. <div id="entries">{block:Posts}<div id="post">
  468.  
  469. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  470.  
  471. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  472.  
  473. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  474.  
  475. {block:Quote}{Quote}{/block:Quote}
  476.  
  477. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  478.  
  479. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  480.  
  481. {block:Audio}<left>{block:AlbumArt}<img src="{AlbumArtURL}" width="80px" height="80px" align="left" style="margin-right:10px" />{/block:AlbumArt}<span class="audio">{AudioPlayerWhite}</left></span>
  482. <br>{block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}
  483. <br>{block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  484. {/block:ExternalAudio}<br><b>Played:</b> {PlayCount} times
  485. {/block:Audio}
  486.  
  487. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  488.  
  489. {block:Answer}<div id="asker"><span style="font-family:cambria;font-size:8px;font-style:italic;">✎ {Asker}: </span>{Question}</div><left><font face="cambria">{Answer}</font>{/block:Answer}
  490.  
  491. <div id="info">
  492. <br> <a href="{Permalink}">{TimeAgo}</a> {block:RebloggedFrom} from <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom} / {block:ContentSource}<a href="{SourceURL}"> origin</a>{/block:ContentSource}{block:RebloggedFrom} <a href="{ReblogParentURL}" target="_blank"></a>{/block:RebloggedFrom} ; <a href="{Permalink}">{NoteCountWithLabel}</a>
  493. {block:HasTags}<div id="tags">{block:Tags} #<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div></div>
  494. {/block:Posts}
  495. {block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes}
  496. {/block:Posts}</div></div></div>
  497.  
  498.  
  499.  
  500.  
  501. <div style="position:fixed;bottom:3px; right:3px; font-size:9px;border:1px solid #e0e0e0;;padding:0px; padding-left:3px; padding-right:3px; font-family:cambria;"><a href="http://stylez.co.vu">▽△</a></center></div>
  502.  
  503.  
  504. </div>
  505. </body>
  506.  
  507. <div id="noticeboard">
  508. <div id="notices"<br>
  509.  
  510. PUT YOUR TEXT HERE
  511. this can be updates
  512. or announcements or
  513. a cool song you just
  514. heard or whatever you
  515. want it to be ok k
  516.  
  517. </div>
  518. <div id="noticeboardtab">noticeboard</div>
  519. </div>
  520.  
  521.  
  522.  
  523. <div id="02" class="popup_block">
  524.  
  525. <center>
  526. <b>WRITE YOUR FAQ HERE</b><br>
  527. (you don't have to write here if you don't want to or don't have an faq)<br>
  528. <br>
  529. <p></font><iframe frameborder="0" scrolling="yes" width="100%" height="190" src="http://www.tumblr.com/ask_form/USERNAME.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form">
  530. </center></div>
  531.  
  532. </div></div></div></div></div></div></div></div></div></div>
  533.  
  534. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement