Advertisement
Mikaela

One Way Or Another

Jul 13th, 2014
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.01 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.  
  3. <!-- THEME #35 'ONE WAY OR ANOTHER' BY HRRYS
  4. I WORKED HARD ON THIS SO IF YOU REMOVE THE CREDIT OR EDIT AND CLAIM IT AS YOUR OWN, I'LL GET HARRY TO STRANGLE YOU.
  5. OKAY ENJOY NOW
  6. -->
  7.  
  8. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  9.  
  10.  
  11. <head>
  12.  
  13.  
  14. <title>{Title}</title>
  15.  
  16. {block:Description}<meta name="description" content="{MetaDescription}"/>
  17. {/block:Description}
  18. <link rel="shortcut icon" href="{Favicon}" />
  19. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  20.  
  21. <meta name="color:bg" content="#ffffff">
  22. <meta name="color:sidebarbg" content="#000000">
  23. <meta name="color:sidebartxt" content="#fff">
  24. <meta name="color:link" content="#bbb8b8">
  25. <meta name="color:text" content="#9a9a9a">
  26. <meta name="color:ask" content="#ededed">
  27. <meta name="color:hover" content="#eeeeee">
  28. <meta name="color:border" content="#e7e7e7">
  29. <meta name="color:scrollbar" content="#d6d5d5">
  30.  
  31. <meta name="image:sidebar1" content=""/>
  32. <meta name="image:sidebar2" content=""/>
  33.  
  34. <meta name="text:link 1" content="LINK">
  35. <meta name="text:link 1 url" content="/">
  36. <meta name="text:link 2" content="LINK">
  37. <meta name="text:link 2 url" content="/">
  38. <meta name="text:link 3" content="LINK">
  39. <meta name="text:link 3 url" content="/">
  40. <meta name="text:link 4" content="LINK">
  41. <meta name="text:link 4 url" content="/">
  42.  
  43. <style type="text/css">
  44.  
  45. /*--drag thingy--*/
  46. .drag{
  47. position:relative;
  48. cursor:hand;
  49. z-index: 100;
  50. }
  51.  
  52. </style>
  53.  
  54. <script type="text/javascript">
  55.  
  56. /***********************************************
  57. * Drag and Drop Script: Β© Dynamic Drive (http://www.dynamicdrive.com)
  58. * This notice MUST stay intact for legal use
  59. * Visit http://www.dynamicdrive.com/ for this script and 100s more.
  60. ***********************************************/
  61.  
  62. var dragobject={
  63. z: 0, x: 0, y: 0, offsetx : null, offsety : null, targetobj : null, dragapproved : 0,
  64. initialize:function(){
  65. document.onmousedown=this.drag
  66. document.onmouseup=function(){this.dragapproved=0}
  67. },
  68. drag:function(e){
  69. var evtobj=window.event? window.event : e
  70. this.targetobj=window.event? event.srcElement : e.target
  71. if (this.targetobj.className=="drag"){
  72. this.dragapproved=1
  73. if (isNaN(parseInt(this.targetobj.style.left))){this.targetobj.style.left=0}
  74. if (isNaN(parseInt(this.targetobj.style.top))){this.targetobj.style.top=0}
  75. this.offsetx=parseInt(this.targetobj.style.left)
  76. this.offsety=parseInt(this.targetobj.style.top)
  77. this.x=evtobj.clientX
  78. this.y=evtobj.clientY
  79. if (evtobj.preventDefault)
  80. evtobj.preventDefault()
  81. document.onmousemove=dragobject.moveit
  82. }
  83. },
  84. moveit:function(e){
  85. var evtobj=window.event? window.event : e
  86. if (this.dragapproved==1){
  87. this.targetobj.style.left=this.offsetx+evtobj.clientX-this.x+"px"
  88. this.targetobj.style.top=this.offsety+evtobj.clientY-this.y+"px"
  89. return false
  90. }
  91. }
  92. }
  93.  
  94. dragobject.initialize()
  95.  
  96. </script>
  97.  
  98. <style type="text/css">
  99.  
  100.  
  101. /*--scrollbar--*/
  102.  
  103. ::-webkit-scrollbar-thumb:vertical {border:3px solid #fff;height:12px; background-color:{color:scrollbar};}
  104. ::-webkit-scrollbar-thumb:horizontal {background-color:#fff;}
  105. ::-webkit-scrollbar {background-color:{color:scrollbar};height:7px;width:12px;border:5px solid #fff;}
  106. ::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment{background-color:{color:scrollbar};display:block;height:8px;border-right:2px solid #fff;border-left:2px solid #fff;
  107. }
  108. /*--body--*/
  109.  
  110.  
  111. body {
  112. font-style:none;
  113. background-color:{color:bg};
  114. font-family:calibri;
  115. color:{color:text};
  116. font-size:9px;
  117. }
  118.  
  119.  
  120. a {
  121. color:{color:link};
  122. text-decoration:none;
  123. -webkit-transition: all 0.5s ease-out;
  124. -moz-transition: all 0.5s ease-out;
  125. transition: all 0.5s ease-out;
  126. }
  127.  
  128. a:hover {
  129. color:{color:hover};
  130. text-decoration:none;
  131. -webkit-transition: all 0.8s ease-out;
  132. -moz-transition: all 0.8s ease-out;
  133. transition: all 0.8s ease-out;
  134. }
  135.  
  136. img {
  137. border:none;
  138. }
  139.  
  140. blockquote {
  141. padding-left:5px;
  142. border-left:2px solid {color:border};
  143. }
  144.  
  145. h1 {
  146. font-size:10px;
  147. }
  148.  
  149.  
  150. /*--sidebar--*/
  151.  
  152. #sidebar {
  153. position:fixed;
  154. width:140px;
  155. margin-left:130px;
  156. margin-top:200px;
  157. }
  158.  
  159. /*--lil nose--*/
  160.  
  161. #nose{
  162. font-size:9px;
  163. text-align:center;
  164. text-transform:uppercase;
  165. }
  166.  
  167. #nose img {
  168. margin-top:-3px;
  169. width:29px;
  170. height:24px;
  171. padding:3px;
  172. }
  173.  
  174. /*--sidebar images--*/
  175.  
  176. #sb1 img{
  177. width:120px;
  178. position:fixed;
  179. height:120px;
  180. margin-top:-115px;
  181. margin-left:-100px;
  182. }
  183. #sb2 img{
  184. width:120px;
  185. position:fixed;
  186. height:120px;
  187. margin-top:-115px;
  188. margin-left:120px;
  189. }
  190.  
  191.  
  192. /*--links--*/
  193.  
  194. #links {
  195. margin-top:50px;
  196. width:340px;
  197. background-color:{color:sidebarbg};
  198. margin-left:-100px;
  199. font-family:'calibri';
  200. color:{color:sidebartxt};
  201. text-transform:uppercase;
  202. text-align:center;
  203. letter-spacing:5px;
  204. }
  205.  
  206. #links a {
  207. padding:5px;
  208. font-size:15px;
  209. color:{color:sidebartxt};
  210. }
  211.  
  212. #links a:hover {
  213. color:{color:hover};
  214. letter-spacing:0px;
  215. }
  216.  
  217. /*--description--*/
  218.  
  219. #description {
  220. margin-top:-115px;
  221. background-color:{color:sidebarbg};
  222. margin-left:20px;
  223. color:{color:sidebartxt};
  224. height:60px;
  225. width:90px;
  226. padding:5px;
  227. font-family:'calibri';
  228. font-size:10px;
  229. text-align:center;
  230. }
  231.  
  232. /*--pagination--*/
  233.  
  234. #pagination {
  235. margin-top:2px;
  236. margin-left:0px;
  237. text-align:center;
  238. font-size:10px;
  239. font-family:calibri;
  240. color:{color:sidebartxt};
  241. }
  242.  
  243. #pagination a{
  244. color:{color:sidebartxt};
  245. }
  246.  
  247. #pagination a:hover {
  248. color:{color:hover};
  249. }
  250.  
  251. /*--posts--*/
  252.  
  253. #posts {
  254. width:500px;
  255. margin-bottom:10px;
  256. padding:1px;
  257. font-size:11px;
  258. color:{color:text};
  259. line-height:90%;
  260. text-align:justify;
  261. }
  262.  
  263. #postscontainer {
  264. margin-bottom:20px;
  265. padding:1px;
  266. margin-left:430px;
  267. margin-top:55px;
  268. }
  269.  
  270.  
  271. /*--info--*/
  272.  
  273. #notes {
  274. font-family:anaheim;
  275. text-transform:lowercase;
  276. font-size:10px; }
  277.  
  278. #info {
  279. text-align:right;
  280. padding:5px;
  281. margin-top:5px;
  282. margin-bottom:10px;
  283. text-transform: uppercase;
  284. font-family:calibri;
  285. font-size:9px;
  286. margin-left:-5px;
  287. border-top: 1px solid;
  288. border-color: {color:border}; }
  289.  
  290. #info #tags {
  291. opacity:0;
  292. -webkit-transition:all 0.5s ease-in-out;
  293. -moz-transition:all 0.5s ease-in-out;
  294. -o-transition:all 0.5s ease-in-out;
  295. -ms-transition:all 0.5s ease-in-out;
  296. transition:all 0.5s ease-in-out; }
  297.  
  298. #info:hover #tags {
  299. opacity:1;
  300. margin-top:4px;
  301. -webkit-transition:all 0.5s ease-in-out;
  302. -moz-transition:all 0.5s ease-in-out;
  303. -o-transition:all 0.5s ease-in-out;
  304. -ms-transition:all 0.5s ease-in-out;
  305. transition:all 0.5s ease-in-out; }
  306.  
  307. #tags {
  308. font-family:calibri;
  309. letter-spacing:1px;
  310. text-transform:uppercase;
  311. font-size:8px;
  312. margin-left:0px;
  313. margin-top:-2px; }
  314.  
  315. #tags a:hover {
  316. text-decoration:line-through;
  317. opacity:0.5;}
  318.  
  319. /*--asks--*/
  320.  
  321. .speech {
  322. align:right;
  323. background-color:{color:ask} ;
  324. margin:10px 0px 0px 50px;
  325. padding:10px;
  326. line-height:105%;
  327. font-size: 11px;
  328. font-family:'cambria';
  329. letter-spacing:1px;
  330. position:relative;}
  331.  
  332. .speech p {margin:1px 0px;}
  333.  
  334. .speech span {
  335. display:block;
  336. position:absolute;
  337. width:1px;
  338. height:1px;
  339. font-size:0;
  340. line-height:1px;
  341. left:-10px;
  342. top:10px;
  343. border-top:7px solid transparent;
  344. border-bottom:7px solid transparent;
  345. border-right:10px solid {color:ask};}
  346.  
  347. .askbg {
  348. float:left;
  349. margin:10px 4px 0px 0;
  350.  
  351. padding:2px;
  352. background-color:{color:ask};}
  353.  
  354. /*--credit--*/
  355.  
  356. #cred {
  357. right:0px;
  358. bottom:-2px;
  359. color:{color:text};
  360. position:fixed;
  361. -webkit-transition: all 0.5s ease-out;
  362. -moz-transition: all 0.5s ease-out;
  363. transition: all 0.5s ease-out;
  364. }
  365.  
  366.  
  367. {CustomCSS}
  368.  
  369. </style></head>
  370.  
  371.  
  372. <body>
  373.  
  374. <div id="sidebar">
  375. <div id="nose">
  376. <img src="http://i.imgur.com/tso9984.gif?1"class="drag"><br>Drag Me</div>
  377. <div id="sb1">
  378. <img src="{image:sidebar1}"></div>
  379. <div id="sb2">
  380. <img src="{image:sidebar2}"></div>
  381.  
  382. <div id="description">{description}<br>
  383. {block:Pagination}
  384. <div id="pagination">
  385. {block:NextPage}<a href="{NextPage}">>></a>{/block:NextPage}<br>
  386. {block:PreviousPage}<a href="{PreviousPage}"><<</a>{/block:PreviousPage}
  387. </div>{/block:Pagination}
  388. </div>
  389. <div id="links">
  390. <a href="{text:link 1 url}">{text:link 1}</a>
  391. <a href="{text:link 2 url}">{text:link 2}</a>&nbsp;
  392. <a href="{text:link 3 url}">{text:link 3}</a>
  393. <a href="{text:link 4 url}">{text:link 4}</a>
  394. </div>
  395.  
  396. </div></div>
  397.  
  398.  
  399. <div id="postscontainer">
  400.  
  401. {block:Posts}
  402.  
  403. <div id="posts">
  404.  
  405.  
  406. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  407.  
  408.  
  409. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  410.  
  411. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  412.  
  413. {block:Quote}{Quote}{block:Source} &#8212;{Source}{/block:Source}{/block:Quote}
  414.  
  415. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  416.  
  417. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  418.  
  419. {block:Audio}{AudioPlayerWhite}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  420.  
  421. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  422.  
  423. {block:Answer}
  424. <img src="{AskerPortraitURL-30}" align="left" class="askbg"><div class="speech"><span></span>{Asker}:<<br>{Question}&nbsp;</div><br>{Answer}
  425. {/block:Answer}
  426.  
  427. <div id="info"> <a href="{Permalink}">{block:Date}<a href="{Permalink}">{TimeAgo}</a>{/block:Date} <font color="gray">β™₯</font> <a href="{Permalink}">{NoteCount}</a> {block:RebloggedFrom} <a href="{ReblogParentURL}">via</a> {/block:RebloggedFrom} {block:ContentSource}/ <a href="{SourceURL}">src</a></a>{/block:ContentSource}{/block:RebloggedFrom}
  428. {block:HasTags}<div id="tags"><b>#</b>:{block:Tags} <a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}</div></div>
  429. {/block:Posts}<div id="tags" st>
  430. {block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes}
  431. {/block:Posts}</div></div></div>
  432. </div>
  433.  
  434.  
  435. <div id="cred"><a href="http://hrrys.tumblr.com"><img src="http://i.imgur.com/o7oww2G.png"></a></div>
  436. </body>
  437. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement