Advertisement
paulveretts

Page #01 // Network

Jul 29th, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.71 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.  
  4. <head><title>{Title}</title>
  5. <link rel="shortcut icon" href="{Favicon}">
  6. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  7.  
  8. <script type="text/javascript"
  9. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  10. <script>
  11. $(document).ready(function() {
  12. //
  13. $('a.poplight[href^=#]').click(function() {
  14. var popID = $(this).attr('rel'); //Get Popup Name
  15. var popURL = $(this).attr('href'); //Get Popup href to define size
  16. var query= popURL.split('?');
  17. var dim= query[1].split('&');
  18. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  19. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/mdbfvxz/glIn9gih3/v.png" class="btn_close" title="Close" alt="Close" /></a>');
  20. var popMargTop = ($('#' + popID).height() + 80) / 2;
  21. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  22. //Apply Margin to Popup
  23. $('#' + popID).css({
  24. 'margin-top' : -popMargTop,
  25. 'margin-left' : -popMargLeft
  26. });
  27. $('body').append('<div id="fade"></div>');
  28. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  29. return false;
  30. });
  31. $('a.close, #fade').live('click', function() {
  32. $('#fade , .popup_block').fadeOut(function() {
  33. $('#fade, a.close').remove(); //fade them both out
  34. });
  35. return false;
  36. });
  37. });
  38. </script>
  39.  
  40. <!--
  41.  
  42. THEME BY JÚLIA // @mclahei
  43. Base code by @hogwat;
  44.  
  45. YOU CAN:
  46. Tweak the code on your blog.
  47. Reblog/Like the original post.
  48. Come to me if you need any help.
  49. Take little parts of the code to get a desired effect. Keep in mind I mean /little/ parts only.
  50. Enjoy this theme :)
  51.  
  52. YOU CAN'T:
  53. Repost any of the codes.
  54. Remove credit from view.
  55. Use this as a base code, as it was made from one that does not belong to me.
  56.  
  57. -->
  58.  
  59. <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
  60.  
  61. <link href='http://fonts.googleapis.com/css?family=Permanent+Marker' rel='stylesheet' type='text/css'>
  62.  
  63. <style type="text/css">
  64. body {
  65. background:#fff;
  66. font-family:'pixel';
  67. font-size:10px;
  68. color:#8c8c8c;
  69. background-image:url('http://static.tumblr.com/c32011641306a802acd58a1b5778c2b6/mdbfvxz/wOzn9g9ie/tumblr_static_6y0e9wr2xjwgk80gskgks0kk.png');
  70. }
  71.  
  72. a {
  73. color:#8c8c8c;
  74. text-decoration:none;
  75. }
  76.  
  77. a b{
  78. color:#ff5588;
  79. }
  80.  
  81. b {
  82. font-weight:300;
  83. color:#ff5588;
  84. }
  85.  
  86. strong {
  87. font-weight:300;
  88. color:#ff5588;
  89. }
  90.  
  91. ::-webkit-scrollbar-thumb {
  92. background-color:#ff5588;
  93. height:5px;
  94. }
  95.  
  96. ::-webkit-scrollbar {
  97. margin-left:20px;
  98. height: 5px;
  99. border-left:4px solid #fff;
  100. border-right:4px solid #fff;
  101. width: 9px;
  102. background-color:#ddd;
  103. }
  104.  
  105. ::selection {color:#ff5588;}
  106. ::-moz-selection {color:#ff5588;}
  107.  
  108. blockquote {
  109. border-left:1px solid #ededed;
  110. padding-left:10px;
  111. width:220px;
  112. margin-left:6px;
  113. }
  114.  
  115. blockquote blockquote {
  116. width:200px;
  117. }
  118.  
  119. h1 {
  120. font-family:'pixel';
  121. color:#8c8c8c;
  122. background:#f5f5f5;
  123. font-size:10px;
  124. text-transform:normal;
  125. font-weight:normal;
  126. padding:30px;
  127. margin-bottom:20px;
  128. text-align:center;
  129. }
  130.  
  131. a:hover {
  132. text-decoration:none;
  133. color:#ff5588;
  134. }
  135.  
  136. #bod {
  137. overflow:auto;
  138. height:280px;
  139. width:735px;
  140. margin-left:310px;
  141. margin-top:160px;
  142. }
  143.  
  144. #text {
  145. background:#fff;
  146. width:120px;
  147. height:120px;
  148. }
  149.  
  150. #dirt {
  151. opacity:0;
  152. background-image:url('http://static.tumblr.com/c32011641306a802acd58a1b5778c2b6/mdbfvxz/wOzn9g9ie/tumblr_static_6y0e9wr2xjwgk80gskgks0kk.png');
  153. width:85px;
  154. border:1px solid #aaa;
  155. box-shadow:rgba(0,0,0,0.07) 5px 5px;
  156. font-size:8px;
  157. height:58px;
  158. text-transform:uppercase;
  159. letter-spacing:2px;
  160. text-align:center;
  161. padding:5px;
  162. padding-top:35px;
  163. margin-left:20px;
  164. margin-top:20px;
  165. position:absolute;
  166. z-index:100;
  167. -webkit-transition: all 0.4s ease-in;
  168. -moz-transition: all 0.4s ease-in;
  169. -o-transition: all 0.4s ease-in;
  170. }
  171.  
  172. #dirt a {
  173. letter-spacing:5px;
  174. padding:3px;
  175. border-bottom:1px solid #ddd;
  176. }
  177.  
  178. #dirt a:hover {
  179. background:#ff5588;
  180. color:#fff;
  181. }
  182.  
  183. #img img{
  184. position:absolute;
  185. }
  186.  
  187. #img:hover #dirt {
  188. opacity:1;
  189. }
  190.  
  191. #la {
  192. overflow:hidden;
  193. position:relative;
  194. }
  195.  
  196. #la img {
  197. width:130px;
  198. padding:3px;
  199. background:#fff;
  200. border:1px solid #ddd;
  201. margin-left:0px;
  202. position:relative;
  203. margin-left:0px;
  204. }
  205.  
  206. #lashton {
  207. z-index:100;
  208. padding-top:3px;
  209. padding-bottom:3px;
  210. padding-right:3px;
  211. border:1px solid #ddd;
  212. background:#f5f5f5;
  213. width:729px;
  214. padding-left:3px;
  215. position:fixed;
  216. margin-top:-40px;
  217. margin-left:0px;
  218. }
  219.  
  220. #lashton img {
  221. float:right;
  222. padding:3px;
  223. opacity:0.7;
  224. }
  225.  
  226. #lashton a:hover img {
  227. opacity:1;
  228. border-radius:2px;
  229. background:#ff5588;
  230. }
  231.  
  232. #misty a{
  233. border-radius:0px;
  234. display:inline-block;
  235. opacity:1;
  236. font-size:10px;
  237. border:1px solid #ddd;
  238. text-align:center;
  239. color:#8c8c8c;
  240. padding-top:3px;
  241. padding:5px;
  242. background:#f5f5f5;
  243. }
  244.  
  245. #misty a:hover {
  246. color:#fff;
  247. background:#ff5588;
  248. }
  249.  
  250. #fade {
  251. background-image:url('http://static.tumblr.com/mdbfvxz/4Jon9gi7w/u.png');
  252. display: none;
  253. position: fixed; left: 0; top: 0;
  254. width: 100%; height: 100%;
  255. opacity: .80;
  256. z-index: 9999;
  257. }
  258.  
  259. #asktit {
  260. padding:40px;
  261. margin-bottom:10px;
  262. margin-top:20px;
  263. background:#000;
  264. letter-spacing:1px;
  265. color:#fff;
  266. text-transform:uppercase;
  267. font-size:8px;
  268. }
  269. .popup_block{
  270. display: none;
  271. background-image:url('http://static.tumblr.com/c32011641306a802acd58a1b5778c2b6/mdbfvxz/wOzn9g9ie/tumblr_static_6y0e9wr2xjwgk80gskgks0kk.png');
  272. padding: 10px;
  273. border: 1px solid #ddd;
  274. float: left;
  275. font-size: 8px;
  276. font-family:'pixel';
  277. text-transform:uppercase;
  278. position: fixed;
  279. top: 50%; left: 50%;
  280. z-index: 99999;
  281. /*--CSS3 Box Shadows--*/
  282. -webkit-box-shadow: 0px 0px 20px #000;
  283. -moz-box-shadow: 0px 0px 20px #000;
  284. box-shadow: 0px 0px 20px #000;
  285. /*--CSS3 Rounded Corners--*/
  286. -webkit-border-radius: 0px;
  287. -moz-border-radius: 0px;
  288. border-radius: 0px;
  289. }
  290. img.btn_close {
  291. float: right;
  292. margin: -40 -40px 0 0;
  293. }
  294. /*--Making IE6 Understand Fixed Positioning--*/
  295. *html #fade {
  296. position: absolute;
  297. }
  298. *html .popup_block {
  299. position: absolute;
  300. }
  301.  
  302. {CustomCSS}
  303.  
  304. @font-face {font-family:"pixel"; src: url("http://static.tumblr.com/mdbfvxz/P3yn9gfnf/04b_03_.ttf")}
  305.  
  306. </style></head>
  307.  
  308. <body>
  309.  
  310. <div id="bod">
  311.  
  312. <div id="lashton">
  313. <a href="http://mclahei.tumblr.com" title="credit"><img src="http://i.imgur.com/ZicuaCg.gif"></a>
  314. <a href="#?w=500" rel="02" class="poplight" title="message"><img src="http://i.imgur.com/vlaAYTu.gif"></a>
  315. <a href="/" title="home"><img src="http://i.imgur.com/DkJrGjF.gif"></a>
  316. </div>
  317.  
  318. <span id="la">
  319. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/4lbn9gbur/hol5.png"></span>
  320. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/5fin9ge64/hol4.png"></span>
  321. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/4lbn9gbur/hol5.png"></span>
  322. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/5fin9ge64/hol4.png"></span>
  323. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/4lbn9gbur/hol5.png"></span>
  324. </span><br>
  325.  
  326. <span id="la">
  327. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/5fin9ge64/hol4.png"></span>
  328. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/4lbn9gbur/hol5.png"></span>
  329. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/5fin9ge64/hol4.png"></span>
  330. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/4lbn9gbur/hol5.png"></span>
  331. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/5fin9ge64/hol4.png"></span>
  332. </span><br>
  333.  
  334. <span id="la">
  335. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/4lbn9gbur/hol5.png"></span>
  336. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/5fin9ge64/hol4.png"></span>
  337. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/4lbn9gbur/hol5.png"></span>
  338. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/5fin9ge64/hol4.png"></span>
  339. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/4lbn9gbur/hol5.png"></span>
  340. </span><br>
  341.  
  342. <span id="la">
  343. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/5fin9ge64/hol4.png"></span>
  344. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/4lbn9gbur/hol5.png"></span>
  345. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/5fin9ge64/hol4.png"></span>
  346. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/4lbn9gbur/hol5.png"></span>
  347. <span id="img"><span id="dirt"><a href="URL">NAME<br><br></a>[optional text]</span><img src="http://static.tumblr.com/mdbfvxz/5fin9ge64/hol4.png"></span>
  348. </span>
  349.  
  350. </div>
  351.  
  352. </body>
  353.  
  354. <div id="02" class="popup_block">
  355.  
  356. <Center><div id="asktit">contact</div><iframe frameborder="0" scrolling="yes" width="100%" height="190" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form">
  357. </center></div>
  358.  
  359. </div></div></div></div></div></div></div></div></div></div>
  360.  
  361. <div id="misty"><div style="position:fixed;bottom:5px; text-transform:normal;right:5px; font-size:10px; letter-spacing:2px; font-family:'pixel';"><a href="http://mclahei.tumblr.com" title="theme by júlia">theme</a></center></div></div>
  362.  
  363. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement