Advertisement
parispier

Theme10: Paper Flowers

Mar 22nd, 2013
4,308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.94 KB | None | 0 0
  1. <!---- theme made by nialljhoren ---->
  2. <!---- do not use as base code, remove credit, or claim as your own --->
  3.  
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  6. <head><title>{Title}</title>
  7. <link rel="shortcut icon" href="{Favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  10.  
  11.  
  12. <script>
  13. window.onload = function () {
  14. document.body.insertAdjacentHTML( 'beforeEnd', '<iframe id="my-like-frame" style="display:none;"></iframe>' );
  15. document.addEventListener( 'click', function ( event ) {
  16. var myLike = event.target;
  17. if( myLike.className.indexOf( 'my-like' ) > -1 ) {
  18. var frame = document.getElementById( 'my-like-frame' ),
  19. liked = ( myLike.className == 'my-liked' ),
  20. command = liked ? 'unlike' : 'like',
  21. reblog = myLike.getAttribute( 'data-reblog' ),
  22. id = myLike.getAttribute( 'data-id' ),
  23. oauth = reblog.slice( -8 );
  24. frame.src = 'http://www.tumblr.com/' command + '/' + oauth + '?id=' + id;
  25. liked ? myLike.className = 'my-like' : myLike.className = 'my-liked';
  26. };
  27. }, false );
  28. };
  29. </script>
  30.  
  31.  
  32. <meta name="color:Background" content="#ffffff"/>
  33. <meta name="color:text" content="#a3a3a3" />
  34. <meta name="color:link" content="#b3b2b1" />
  35. <meta name="color:linkhovercolor" content="#f3f3f3" />
  36. <meta name="color:navlink" content="#d8d8d8" />
  37. <meta name="color:bold" content="#f3e6e3" />
  38. <meta name="color:sbarborder" content="#b1b1b1" />
  39. <meta name="color:scrollbar" content="#b1b1b1" />
  40.  
  41. <meta name="text:Link1" content="/" />
  42. <meta name="text:Link1 Title" content="link" />
  43. <meta name="text:Link2" content="/" />
  44. <meta name="text:Link2 Title" content="link" />
  45. <meta name="text:Link3" content="/" />
  46. <meta name="text:Link3 Title" content="link" />
  47. <meta name="text:Link4" content="/" />
  48. <meta name="text:Link4 Title" content="link" />
  49.  
  50. <meta name="image:sidebar" content=""/>
  51.  
  52.  
  53. <style type="text/css">
  54.  
  55. ::-webkit-scrollbar-thumb:vertical {background-color: {color:scrollbar}; height:100px;}
  56.  
  57. ::-webkit-scrollbar-thumb:horizontal {background-color: {color:scrollbar}; height:10px !important;}
  58.  
  59. ::-webkit-scrollbar {height:9px; width:9px; background-color: {color:Background};}
  60.  
  61.  
  62. body {
  63. background:{color:background};
  64. margin:0px;
  65. color:{color:text};
  66. font-size:10px;
  67. line-height:100%;
  68. font-family:consolas;
  69. }
  70.  
  71. img {
  72. border:none;
  73. }
  74.  
  75. blockquote {
  76. padding-left:5px;
  77. border-left:2px solid;
  78. }
  79.  
  80. blockquote blockquote {
  81. padding-left:5px;
  82. border-left:2px solid;
  83. }
  84.  
  85. h1 {
  86. font-size:10px;
  87. font-family:cambria;
  88. text-transform:uppercase;
  89. padding-bottom:5px;
  90. }
  91.  
  92. a {
  93. text-decoration:none;
  94. outline:none;
  95. -moz-outline-style:none;
  96. color:{color:link};
  97. -webkit-transition: all 0.7s ease;
  98. -moz-transition: all 0.7s ease;
  99. -o-transition: all 0.7s ease;
  100. }
  101.  
  102. a:hover {
  103. color:{color:linkhovercolor};
  104. -webkit-transition: all 0.7s ease;
  105. -moz-transition: all 0.7s ease;
  106. -o-transition: all 0.7s ease;
  107. }
  108.  
  109. #entries {
  110. padding:10px;
  111. width:500px;
  112. margin-left:435px;
  113. margin-top:70px;
  114. }
  115.  
  116. #post {
  117. width:500px;
  118. padding-bottom:20px;
  119. padding:15px;
  120. margin-top:30px;
  121. }
  122.  
  123. #sidebar {
  124. position:fixed;
  125. width:280px;
  126. position:fixed;
  127. margin-left:200px;
  128. margin-top:100px;
  129. }
  130.  
  131. #sidebarcbg {
  132. position:fixed;
  133. margin-top:-70px;
  134. margin-left:160px;
  135. height:200%;
  136. width:250px;
  137. background-color:#242425;
  138. }
  139.  
  140. #sidebarimage img {
  141. opacity:.9;
  142. position:fixed;
  143. width:100px;
  144. height:100px;
  145. padding:0px 0px 7px 7px;
  146. margin-left:35px;
  147. border-left:1px solid {color:sbarborder};
  148. border-bottom:1px solid {color:sbarborder};
  149. }
  150.  
  151. #description {
  152. font-family:consolas;
  153. position:fixed;
  154. padding:5px;
  155. width:105px;
  156. margin-top:110px;
  157. margin-left:31px;
  158. text-align:justify;
  159. font-weight:700;
  160. }
  161.  
  162. #links {
  163. z-index:10;
  164. position:fixed;
  165. width:27px;
  166. padding-right:5px;
  167. margin-left:9px;
  168. margin-top:0px;
  169. line-height:150%;
  170. font-family:consolas;
  171. font-size:9px;
  172. text-align:right;
  173. text-transform:uppercase;
  174. display:block;
  175. font-weight:700;
  176. -webkit-transition: all 0.9s ease-in;
  177. -moz-transition: all 0.9s ease-in;
  178. -o-transition: all 0.9s ease-in;
  179. -webkit-transition: all 0.5s ease-out;
  180. -moz-transition: all 0.5s ease-out;
  181. -o-transition: all 0.5s ease-out;
  182. }
  183.  
  184. #links a {
  185. display:block;
  186. padding-right:5px;
  187. border-right:1px solid {color:sbarborder};
  188. color:{color:navlink};
  189. -webkit-transition: all 0.9s ease-in;
  190. -moz-transition: all 0.9s ease-in;
  191. -o-transition: all 0.9s ease-in;
  192. -webkit-transition: all 0.5s ease-out;
  193. -moz-transition: all 0.5s ease-out;
  194. -o-transition: all 0.5s ease-out;
  195. }
  196.  
  197. #links a:hover {
  198. display:block;
  199. border-right:30px solid {color:sbarborder};
  200. margin-left:-35px;
  201. -webkit-mask-image: -webkit-gradient(linear, right top, left top, from(rgba(1,0,0,1)), color-stop(1, rgba(0,0,0,.1)), to(rgba(0,0,0,1)));
  202. -webkit-transition: all 0.9s ease-in;
  203. -moz-transition: all 0.9s ease-in;
  204. -o-transition: all 0.9s ease-in;
  205. -webkit-transition: all 0.5s ease-out;
  206. -moz-transition: all 0.5s ease-out;
  207. -o-transition: all 0.5s ease-out;
  208. }
  209.  
  210. #pagination {
  211. font-family:cambria;
  212. font-size:9px;
  213. text-align:center;
  214. margin-top:85px;
  215. margin-left:11px;
  216. width:20px;
  217. font-weight:700;
  218. -webkit-transition: all 0.9s ease-in;
  219. -moz-transition: all 0.9s ease-in;
  220. -o-transition: all 0.9s ease-in;
  221. -webkit-transition: all 0.5s ease-out;
  222. -moz-transition: all 0.5s ease-out;
  223. -o-transition: all 0.5s ease-out;
  224. }
  225.  
  226. #pagination a {
  227. color:{color:link};
  228. -webkit-transition: all 0.9s ease-in;
  229. -moz-transition: all 0.9s ease-in;
  230. -o-transition: all 0.9s ease-in;
  231. -webkit-transition: all 0.5s ease-out;
  232. -moz-transition: all 0.5s ease-out;
  233. -o-transition: all 0.5s ease-out;
  234. }
  235.  
  236. #pagination a:hover {
  237. color:{color:linkhovercolor};
  238. -webkit-transition: all 0.9s ease-in;
  239. -moz-transition: all 0.9s ease-in;
  240. -o-transition: all 0.9s ease-in;
  241. -webkit-transition: all 0.5s ease-out;
  242. -moz-transition: all 0.5s ease-out;
  243. -o-transition: all 0.5s ease-out;
  244. }
  245.  
  246. #info {
  247. font-family:cambria;
  248. text-align:left;
  249. text-transform:lowercase;
  250. font-size:8px;
  251. margin-top:10px;
  252. border-top:1px solid #e7e7e7;
  253. border-left:1px solid #e7e7e7;
  254. padding-left:3px;
  255. padding-top:3px;
  256. font-weight:700;
  257. }
  258.  
  259. #info a {
  260. color:{color:link};
  261. }
  262.  
  263. #info a:hover {
  264. color:{color:linkhovercolor};
  265. }
  266.  
  267. #tags {
  268. text-align:left;
  269. font-family:cambria;
  270. font-size:8px;
  271. font-weight:700;
  272. }
  273.  
  274. #question{
  275. color:{color:text};
  276. font-family: sans-serif;
  277. font-size:9px;
  278. background-color: #ffffff;
  279. padding: 7px;
  280. text-align:left;
  281. background-color: #fcfcfc;
  282. }
  283.  
  284. #question a:hover{
  285. color:{color:linkhovercolor};
  286. }
  287.  
  288. #heyo {
  289. font-family:cambria;
  290. position:fixed;
  291. text-align:center;
  292. bottom:10px;
  293. right:10px;
  294. font-size:7px;
  295. text-transform:uppercase;
  296. display:block;
  297. background-color:#fff;
  298. }
  299.  
  300. #heyo a{
  301. color:#b3b2b1;
  302. border: 1px solid #e4e3e2;
  303. padding: 3px 5px 3px 5px;
  304. background-color:#fff;
  305. border-radius:100px;
  306. -moz-transition-duration:0.5s;
  307. -webkit-transition-duration:0.5s;
  308. -o-transition-duration:0.5s;
  309. }
  310.  
  311. #heyo a:hover{
  312. color:#fff;
  313. background-color:#969194;
  314. border: 1px solid #7a7979;
  315. padding: 3px 5px 3px 5px;
  316. -moz-transition-duration:0.5s;
  317. -webkit-transition-duration:0.5s;
  318. -o-transition-duration:0.5s;
  319. }
  320.  
  321. i{color:{color:italic}; font-style:italic;}
  322. b{color:{color:bold}; font-style:bolder; font-weight:900;}
  323.  
  324. #albumart {
  325. position:absolute;
  326. width:125px;
  327. height:125px;}
  328. #albumart img {
  329. width:125px;
  330. height:125px;
  331. float:left;
  332. padding:5px;}
  333. #audioinfo {
  334. font-size:7px;
  335. color:text;}
  336.  
  337. {CustomCSS}</style></head><body>
  338.  
  339. <div id="sidebarcbg"></div>
  340.  
  341. <div id="sidebar">
  342.  
  343. <div id="links">
  344. <a href="{text:Link1}">{text:Link1 Title}</a> <p>
  345. <a href="{text:Link2}">{text:Link2 Title}</a> <p>
  346. <a href="{text:Link3}">{text:Link3 Title}</a> <p>
  347. <a href="{text:Link4}">{text:Link4 Title}</a>
  348. </div>
  349.  
  350. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  351.  
  352. <div id="description">{Description}</div>
  353.  
  354. <div id="pagination">
  355. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}
  356. {block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}{/block:Pagination}
  357. </div>
  358.  
  359. </div>
  360.  
  361. <div id="entries">{block:Posts}<div id="post">
  362.  
  363. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  364.  
  365. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  366.  
  367. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  368.  
  369. {block:Quote}{Quote}{block:Source} —{Source}{/block:Source}{/block:Quote}
  370.  
  371. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  372.  
  373. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  374.  
  375. {block:Audio}
  376. {block:AlbumArt}<img src="{AlbumArtURL}" width="80px" height="80px" align="left" />{/block:AlbumArt}<p>
  377. {AudioPlayerWhite}
  378. {block:TrackName}<b>Title: </b>{TrackName}{/block:TrackName}
  379. <br>
  380. {block:Artist}<b>Artist: </b>{Artist}{/block:Artist}
  381. <br>
  382. {block:Album}<b>Album:</b> {Album}{/block:Album}
  383. <br>
  384. <b>Plays:</b> {PlayCount}
  385. {/block:Audio}
  386.  
  387. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  388.  
  389. {block:Answer}
  390. <a href="{AskerURL}"<img align="left" src="{AskerPortraitUR-24}"></a> <div id="question" style="width:485px;"><i>{Asker} whispered sexily in my ear:</i> {Question}</div> <BR>
  391. {Answer}
  392. {/block:Answer}
  393.  
  394. <div id="info">
  395. {block:Date}posted {TimeAgo}{/block:Date} with <a href="{Permalink}">
  396. {NoteCountWithLabel}</a>{block:RebloggedFrom} via <a href="{ReblogParentURL}"
  397. title="{ReblogParentTitle}">{ReblogParentName}</a>{/block:RebloggedFrom}
  398. + <a href="{ReblogURL}" target="_blank">reblog</a>
  399.  
  400. {block:HasTags}<div id="tag">{block:Tags} #<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags} </div></div>
  401. {/block:Posts}
  402. {block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes}
  403. {/block:Posts} </div></div></div>
  404.  
  405. <div id="heyo"><a href="http://nialljhoren.tumblr.com/codes">N</a></div>
  406.  
  407. </div>
  408.  
  409. </div>
  410.  
  411. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement