Advertisement
lojsan7

claudiatheme

May 2nd, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.40 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <script type="text/javascript"
  5. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  6. <script>
  7. $(document).ready(function() {
  8. //
  9. $('a.poplight[href^=#]').click(function() {
  10. var popID = $(this).attr('rel'); //Get Popup Name
  11. var popURL = $(this).attr('href'); //Get Popup href to define size
  12. var query= popURL.split('?');
  13. var dim= query[1].split('&');
  14. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  15. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  16. var popMargTop = ($('#' + popID).height() + 80) / 2;
  17. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  18. //Apply Margin to Popup
  19. $('#' + popID).css({
  20. 'margin-top' : -popMargTop,
  21. 'margin-left' : -popMargLeft
  22. });
  23. $('body').append('<div id="fade"></div>');
  24. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  25. return false;
  26. });
  27. $('a.close, #fade').live('click', function() {
  28. $('#fade , .popup_block').fadeOut(function() {
  29. $('#fade, a.close').remove(); //fade them both out
  30. });
  31. return false;
  32. });
  33. });
  34. </script>
  35. <title>{Title}</title>
  36. <link rel="shortcut icon" href="{Favicon}">
  37. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  38. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  39.  
  40. <!---- this is theme 44 by Hollywhood
  41. please don't remove the credit
  42. thank you
  43. --->
  44.  
  45. <meta name="color:Background" content="#ffffff"/>
  46. <meta name="color:Text" content="#9B9B9B"/>
  47. <meta name="color:Link" content="#b8b8b8"/>
  48. <meta name="color:scrollbar" content="#999999">
  49. <meta name="color:title" content="#999999">
  50. <meta name="color:Link Hover" content="#eeeeee"/>
  51.  
  52. <meta name="image:sidebar" content=""/>
  53. <meta name="text:sidebartitle" content="">
  54.  
  55. <meta name="text:link1" content="" />
  56. <meta name="text:link1 url" content="/">
  57. <meta name="text:link2" content="" />
  58. <meta name="text:link2 url" content="/">
  59. <meta name="text:link3" content="" />
  60. <meta name="text:link3 url" content="/">
  61. <meta name="text:link4" content="" />
  62. <meta name="text:link4 url" content="/">
  63. <meta name="text:link5" content="" />
  64. <meta name="text:link5 url" content="/">
  65.  
  66.  
  67. <style type="text/css">
  68.  
  69. .popup_block{
  70. display:none;
  71. background:#0e1027;
  72. padding:20px;
  73. border:1px solid #29313c; /* if you want a solid white pop-up, delete this */
  74. float:left;
  75. position:fixed;
  76. top:50%;left:50%;
  77. z-index: 99999;
  78. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  79. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  80. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  81. }
  82.  
  83. *html #fade {position: absolute;}
  84. *html .popup_block {position: absolute;}
  85. #fade {
  86. display:none;
  87. position:fixed;
  88. left:0px;
  89. top:0px;
  90. width:100%;
  91. height:100%;
  92. z-index:9999;
  93. background:#000; /* change to #fff for solid white */
  94. opacity:0.5; /* change to opacity:1; */
  95. }
  96.  
  97. ::-webkit-scrollbar-thumb{
  98. background-color: {color:scrollbar};
  99. border: 2px solid {color:background};
  100. height:auto;
  101. }
  102.  
  103. ::-webkit-scrollbar {
  104. height:auto;
  105. width:11px;
  106. background-color: {color:scrollbar};
  107. border:0px solid {color:background};
  108. }
  109.  
  110.  
  111. iframe#tumblr_controls {
  112. white-space:nowrap;
  113. -webkit-filter: invert(100%);
  114. -moz-filter: invert(100%);
  115. -o-filter: invert(100%);
  116. -ms-filter: invert(100%);
  117. filter: invert(100%);
  118. opacity:.2;transition: .8s ease-in-out;
  119. -webkit-transition: .8s ease-in-out;
  120. -moz-transition: .8s ease-in-out;
  121. -o-transition: .8s ease-in-out;
  122. }
  123.  
  124. h1 {
  125. font-weight:normal;
  126. font-size:14px;
  127. text-align:center;
  128. font-style:normal;
  129. line-height:100%;
  130. letter-spacing:1px;
  131. text-transform:normal;
  132. color:{color:text};
  133. }
  134.  
  135. h2 {
  136. font-size:22px;
  137. text-align:center;
  138. line-height:100%;
  139. letter-spacing:-0.5px;
  140. color:#f8d0808;
  141. text-shadow:1px 1px 15px #d9b8b8;
  142. font-weight:bold;
  143. text-transform:uppercase;
  144. padding:5px;
  145. padding-bottom:2px;
  146. }
  147.  
  148.  
  149. blockquote {
  150. border-left:1px solid #ccc;
  151. padding:17px;
  152. margin:10px 2px 0px 10px
  153. background-color:#fafafa;
  154. }
  155.  
  156. body {
  157. background:{color:background};
  158. background-image: url('http://i.imgur.com/BB6iZDa.png');
  159. background-repeat: no-repeat;
  160. background-size: center;
  161. background-attachment: fixed;
  162. position: absolute;
  163. margin-left:720px;
  164. color:{color:text};
  165. font-family:iskoola pota;
  166. font-size:12px;
  167. line-height:100%;
  168. }
  169.  
  170. b,bold,strong {
  171. color:#000000;
  172. font-family:times;
  173. font-size:13px;
  174. text-shadow: 1px 1px 15px #cddae6;
  175. }
  176.  
  177. i,em,italic {
  178. color:#7c7878;
  179. font-family:times;
  180. font-size:12px;
  181. text-shadow: 1px 1px 15px #ffffff;}
  182.  
  183. a {
  184. text-decoration:none;
  185. outline:none;
  186. -moz-outline-style:none;
  187. color:{color:link};
  188. -moz-transition-duration:0.5s;
  189. -webkit-transition-duration:0.5s;
  190. -o-transition-duration:0.5s;
  191. }
  192.  
  193. a:hover {
  194. text-decoration:none;
  195. outline:none;
  196. -moz-outline-style:none;
  197. color:{color:link hover};
  198. }
  199.  
  200. img {
  201. border:none;
  202. }
  203.  
  204.  
  205. #post {
  206. width:400px;
  207. margin-top:50px;
  208. margin-bottom:5px;
  209. }
  210.  
  211. #container {margin: auto;
  212. position:fixed;
  213. width: 900px;}
  214.  
  215. #entries {
  216. padding:10px;
  217. left:580px;
  218. top:80px;
  219. position:fixed;
  220. background-color:transparent;
  221. width:500px;
  222. height:400px;
  223. top:220px;
  224. padding: 20px;
  225. overflow-x:scroll;
  226. scroll:left;
  227. overflow-x:hidden;
  228. }
  229.  
  230.  
  231. #theme {
  232. width:500px;
  233. margin:0 auto -12px auto;
  234. }
  235.  
  236. #sidebar {
  237. color:{color:text};
  238. width:100px;
  239. height:auto;
  240. margin-top:90px;
  241. margin-left:165px;
  242. text-align:left;
  243. }
  244.  
  245. #sidebarimage img {
  246. width:100px;
  247. opacity:.9;
  248. margin-top:-10px;
  249. margin-bottom:0px;
  250. margin-left:43px;
  251. }
  252.  
  253. #links {
  254. font-family:'Iskoola Pota';
  255. width:220px;
  256. margin-top:30px;
  257. margin-left:225px;
  258. font-size:28px;
  259. text-transform:uppercase;
  260. text-align:center;
  261. line-height:280%;
  262. }
  263.  
  264. #links a{
  265. line-height:280%;
  266. border-bottom:0px solid #fff;
  267. margin-top:4px;
  268. margin-left:13px;
  269. color: #201c1d;
  270. text-shadow:1px 1px 15px #a4a6ab;
  271. -moz-transition-duration:.2s;
  272. -webkit-transition-duration:.2s;
  273. -o-transition-duration:.2s;
  274. }
  275.  
  276. #links a:hover {
  277. color: {color:link hover};
  278. width:60px;
  279. -moz-transition-duration:0.2s;
  280. -webkit-transition-duration:0.2s;
  281. -o-transition-duration:0.2s;
  282. }
  283.  
  284. #description {
  285. width:300px;
  286. font-family:times;
  287. margin-top:-2px;
  288. margin-left:-58px;
  289. text-align:center;
  290. font-size:9px;
  291. color: {color:text};
  292. letter-spacing:0px;
  293. line-height:170%;
  294. -moz-transition-duration:1s;
  295. -webkit-transition-duration:1s;
  296. -o-transition-duration:1s;
  297. }
  298.  
  299. #description a {
  300. color:{color:link};
  301. }
  302.  
  303. #description a:hover {
  304. color:{color:link hover};
  305. }
  306.  
  307. .sidebartitle {
  308. width:300px;
  309. text-align:center;
  310. font-family:'californian fb';
  311. line-height:120%;
  312. margin-left:-58px;
  313. word-spacing:2px;
  314. font-style:italic;
  315. font-size:16px;
  316. margin-top:10px;
  317. color:{color:title};
  318. }
  319.  
  320. #pagination {
  321. font-family:corbel;
  322. width:500px;
  323. font-size:9px;
  324. margin-top:25px;
  325. margin-left:-8px;
  326. padding-left:5px;
  327. letter-spacing:1px;
  328. text-align:center;
  329. text-transform:uppercase;
  330. }
  331.  
  332. #pagination a {
  333. color:{color:link};
  334. }
  335.  
  336. #info {
  337. font-family:times;
  338. width:500px;
  339. margin-top:8px;
  340. padding-top:4px;
  341. font-size:7px;
  342. border-top:1px solid #ddd;
  343. opacity:0;
  344. color:{color:text};
  345. text-transform:uppercase;
  346. font-style:normal;
  347. text-align:left;
  348. -moz-transition-duration:0.5s;
  349. -webkit-transition-duration:0.5s;
  350. -o-transition-duration:0.5s;
  351. }
  352.  
  353. #info a {
  354. color:{color:link};
  355. }
  356.  
  357. #info a:hover {
  358. color:{color:link hover};
  359. }
  360.  
  361. .tags {
  362. font-family:times;
  363. font-style:normal;
  364. width:500px;
  365. margin-top:4px;
  366. text-transform:normal;
  367. font-style:normal;
  368. line-height:120%;
  369. padding-top:0px;
  370. font-size:8px;
  371. opacity:0;
  372. letter-spacing:1px;
  373. text-align:left;
  374. -moz-transition-duration:0.5s;
  375. -webkit-transition-duration:0.5s;
  376. -o-transition-duration:0.5s;
  377. }
  378. .tags a{
  379. color:{color:link};
  380. -moz-transition-duration:0.2s;
  381. -webkit-transition-duration:0.2s;
  382. -o-transition-duration:0.2s;
  383. }
  384. .tags a:hover{
  385. color:{color:link hover};
  386. -moz-transition-duration:0.2s;
  387. -webkit-transition-duration:0.2s;
  388. -o-transition-duration:0.2s;
  389. }
  390.  
  391. #post:hover #info{
  392. opacity:1;
  393. -moz-transition-duration:1s;
  394. -webkit-transition-duration:1s;
  395. -o-transition-duration:1s;
  396. }
  397. #post:hover .tags{
  398. opacity:1;
  399. -moz-transition-duration:1s;
  400. -webkit-transition-duration:1s;
  401. -o-transition-duration:1s;
  402. }
  403.  
  404. .audio{
  405. background-color:#0c0e21;
  406. height:65px;
  407. overflow:hidden;
  408. }
  409.  
  410. #ask {
  411. float:left;
  412. color:{color:text};
  413. }
  414.  
  415. #credit {
  416. font-size:9px;
  417. font-family:cambria;
  418. font-style:italic;
  419. letter-spacing:1px;
  420. -moz-transition-duration:0.5s;
  421. -webkit-transition-duration:0.5s;
  422. -o-transition-duration:0.5s;
  423. }
  424.  
  425. #credit a {
  426. background-color:#fff;
  427. padding:5px;
  428. border:1px solid #e9e9e9;
  429. position:fixed;
  430. right:15px;
  431. bottom:10px
  432. }
  433.  
  434. #credit a:hover {
  435. color:#fff;
  436. background-color:#191919;
  437. }
  438.  
  439. {CustomCSS}</style></head><body>
  440.  
  441. <div id="theme">
  442.  
  443. <div id=“container”>
  444.  
  445. <div id="sidebar">
  446.  
  447. <div id="sidebarimage">
  448. <a href="/"><img src="{image:sidebar}"></a></div>
  449.  
  450. <div class="sidebartitle">{text:sidebartitle}</div>
  451.  
  452. <div id="links">
  453. <a href="{text:link1 url}" title="{text:link1}">I.</a><br>
  454. <a href="#?w=500" rel="box1" class="poplight">II.</a><br>
  455. <a href="{text:link3 url}" title="{text:link3}">III.</a><br>
  456. <a href="{text:link4 url}" title="{text:link4}">IV.</a><br>
  457. <a href="{text:link5 url}" title="{text:link5}">V.</a><br>
  458. </a>
  459.  
  460. </div>
  461.  
  462. <div id="description">{description}</div>
  463.  
  464. </div>
  465.  
  466. <div id="entries">{block:Posts}<div id="post">
  467.  
  468. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  469.  
  470. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  471.  
  472. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  473.  
  474. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  475.  
  476. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  477.  
  478. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  479.  
  480. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}<br>{block:TrackName}&nbsp;&nbsp;&nbsp;&nbsp; {TrackName}{/block:TrackName}
  481. {block:Artist} &nbsp;—&nbsp; {Artist} {/block:Artist}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  482.  
  483. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  484.  
  485. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}" style="margin-left:7px;margin-right:13px;border:1px solid #e3e3e3;padding:2px;"></div> <em>{Asker}:</em><br> "{Question}"<br><br>{Answer}{/block:Answer}
  486.  
  487. {block:Date}<div id="info"> <a title="{TimeAgo}" href="{Permalink}">{Month} &nbsp;{DayOfMonth}</a>
  488. {/block:Date} {block:NoteCount}&nbsp; ( <font color=#d588a6>♥</font> <a href="{Permalink}">{NoteCount}</a> ) {/block:NoteCount}
  489.  
  490. {block:RebloggedFrom}&nbsp; <a title="{ReblogParentName}" href="{ReblogParentURL}">via</a> {/block:RebloggedFrom}{block:ContentSource} &nbsp; / &nbsp; <a title="{SourceTitle}" href="{SourceURL}">source</a>{/block:ContentSource} {/block:RebloggedFrom} &nbsp; <a href="{ReblogURL}"target="_blank" title="reblog this post"><big>+</big> </a>
  491. </div>
  492.  
  493.  
  494. {block:HasTags}
  495. <div class="tags">
  496. {block:Tags} <a href="{TagURL}"> {Tag}, &nbsp; </a> {/block:Tags}</div>
  497. {/block:HasTags}
  498. <div class="postnote">
  499. {block:PostNotes}{PostNotes}{/block:PostNotes}
  500. </div>
  501. </div>
  502. {/block:Posts}
  503.  
  504. <div id="pagination">
  505. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">←&nbsp;&nbsp;&nbsp; future</a>{/block:PreviousPage} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {block:NextPage}<a href="{NextPage}">past&nbsp;&nbsp;&nbsp; →</a><br />{/block:NextPage}{/block:Pagination}</div></center></div>
  506.  
  507. </div>
  508. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</div> </div>
  509.  
  510. </body>
  511.  
  512. <div id="box1" class="popup_block">
  513. <h2>questions.</h2><iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" width="100%"></iframe>
  514. </div>
  515.  
  516. </div></div></div></div></div></div></div></div></div></div>
  517.  
  518. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement