Advertisement
thehandyblog

Basic Theme #4

Aug 10th, 2012
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.18 KB | None | 0 0
  1. <html>
  2.  
  3. <!--
  4.  
  5. Theme by Asyrral.
  6. Please don't remove the credits :)
  7.  
  8. --->
  9.  
  10. <head>
  11.  
  12. <meta name="color:Background" content="#fff"/>
  13. <meta name="color:Text" content="#636261"/>
  14. <meta name="color:Bold Texts" content="#111">
  15. <meta name="color:Links" content="#b8b8b8"/>
  16. <meta name="color:Links Hover" content="#ccc"/>
  17. <meta name="color:Blockquote" content="#111">
  18. <meta name="color:Blockquote text" content="#636261">
  19. <meta name="color:Scrollbar" content="#111"/>
  20. <meta name="color:Scrollbar background" content="#fff"/>
  21. <meta name="color:Question Background" content="#f3fdf8"/>
  22. <meta name="color:Permalink Border" content="#ccc"/>
  23. <meta name="color:Permalink Text" content="#d1d1d1"/>
  24. <meta name="color:Permalink Hover" content="#fff"/>
  25.  
  26. <meta name="image:Background" content=""/>
  27.  
  28. <meta name="if:show caption" content="0">
  29. <meta name="if:tiny cursor" content="1">
  30. <meta name="if:fading images" content="1">
  31. <meta name="if:rainbow border" content="1">
  32. <meta name="if:round avatar" content="1">
  33. <meta name="if:show permalink" content="1">
  34. <meta name="if:Black Audio Player" content="1">
  35. <meta name="if:White Audio Player" content="0">
  36. <meta name="if:Grey Audio Player" content="0">
  37. <meta name="if:Stretch Photos" content="1">
  38.  
  39. <meta name="text:link url 1" content="/">
  40. <meta name="text:link title 1" content="Link 1">
  41. <meta name="text:link url 2" content="/">
  42. <meta name="text:link title 2" content="Link 2">
  43. <meta name="text:link url 3" content="/">
  44. <meta name="text:link title 3" content="Link 3">
  45.  
  46. <title>{Title}</title>
  47. <link rel="shortcut icon" href="{Favicon}"/>
  48. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  49. {block:Description} <meta name="description" content="{MetaDescription}"/> {/block:Description}
  50.  
  51. <link href='http://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
  52.  
  53. <style type="text/css">
  54.  
  55. body {
  56. background-color: {color:Background};
  57. background-image:url("{image:background}");
  58. background-attachment: fixed;
  59. background-repeat: repeat;
  60. font-family:lora;
  61. font-size: 11px;
  62. color: {color:text};
  63. overflow-x:hidden;
  64. text-align:center;
  65. height: 100%;
  66. {block:iftinycursor}
  67. cursor: url("http://i.imgur.com/2qleX.jpg"), auto;
  68. {/block:iftinycursor}
  69. }
  70.  
  71. a:link, a:visited, a:active {
  72. color: {color:links};
  73. text-decoration:none;
  74. transition-duration: 0.50s;
  75. -moz-transition-duration: 0.50s;
  76. -webkit-transition-duration: 0.50s;
  77. -o-transition-duration: 0.50s;
  78. }
  79.  
  80.  
  81. a:hover {
  82. color: {color:Links hover};
  83. text-decoration:bold;
  84. transition-duration: 0.50s;
  85. -moz-transition-duration: 0.50s;
  86. -webkit-transition-duration: 0.50s;
  87. -o-transition-duration: 0.50s;
  88. {block:iftinycursor}
  89. cursor: url("http://i.imgur.com/IepP2.jpg"), auto;
  90. {/block:iftinycursor}
  91. }
  92.  
  93. {block:iffadingimages}
  94. #catimg{
  95. opacity:.7;
  96. transition-duration: 0.50s;
  97. -moz-transition-duration: 0.50s;
  98. -webkit-transition-duration: 0.50s;
  99. -o-transition-duration: 0.50s;}
  100.  
  101. #catimg:hover{opacity:1;}
  102. {/block:iffadingimages}
  103.  
  104. #main{
  105. background-color: transparent;
  106. position: absolute;
  107. width: 750px;
  108. height: 100%;
  109. top: 0px;
  110. left: 50%;
  111. margin-left: -375px;
  112. }
  113.  
  114. #sidebar{
  115. position: fixed;
  116. height: auto;
  117. width: 200px;
  118. padding: 10px;
  119. left: 100px;
  120. top: 160px;
  121. }
  122.  
  123. #content{
  124. background-color: transparent;
  125. position: absolute;
  126. width: 500px;
  127. height: auto;
  128. left: 400px;
  129. top: 0px;
  130. }
  131.  
  132. .title{
  133. color:{color:Title};
  134. font-family: lora;
  135. font-size:25px;
  136. }
  137.  
  138. .title2{
  139. color:{color:Title};
  140. font-family: lora;
  141. font-size:15px;
  142. letter-spacing:4px;
  143. font-weight:bold;
  144. }
  145.  
  146. .post{
  147. text-align: left;
  148. margin: 35px 0px 0px 0px;
  149. color: {color:text};
  150. padding-top: 5px;
  151. padding-bottom: 3px;
  152. padding-left: 4px;
  153. padding-right: 5px;
  154. width:501px;
  155. }
  156.  
  157. blockquote{
  158. padding-left:5px;
  159. margin-left:5px;
  160. border-left: 1px solid {color:blockquote};
  161. }
  162.  
  163. h3{
  164. font-size: 15px;
  165. font-family: lora;
  166. font-color: {color:headers};
  167. }
  168.  
  169. strong{
  170. color:{color:bold texts};
  171. }
  172.  
  173. .quote{
  174. font-size: 15px;
  175. font-style:italic;
  176. font-family: lora;
  177. font-color: {color:headers};
  178. }
  179.  
  180. .source{
  181. text-align: right;
  182. color: {color:links};
  183. }
  184.  
  185. ul.chat {
  186. margin: 0 0 0 0;
  187. padding: 0 0 0 0;
  188. }
  189. .chat li {
  190. list-style-type: none;
  191. margin-left: 0px;
  192. padding: 3px;
  193. }
  194. .chat li.odd {
  195. }
  196. .chat li.even {
  197. background-color: transparent;
  198. }
  199. .label {
  200. font-weight: bold;
  201. }
  202.  
  203. #entry img {opacity:.8px;}
  204.  
  205. #entry img:hover {opacity:1px;}
  206.  
  207. .bubble {
  208. position: relative;
  209. background-color:{color:question background};
  210. margin: 0;
  211. padding:10px;
  212. text-align:center;
  213. width:482px;
  214. -webkit-box-shadow: 0px 0 1px rgba(0,0,0,0);
  215. -moz-box-shadow: 0px 0 1px rgba(0,0,0,0);
  216. box-shadow: 0px 0 1px rgba(0,0,0,0);
  217.  
  218. }
  219. .bubble:after {
  220. position: absolute;
  221. display: block;
  222. content: "";
  223. border-color: {color:question background} transparent transparent transparent;
  224. border-style: solid;
  225. border-width: 10px;
  226. height:0;
  227. width:0;
  228. position:absolute;
  229. bottom:-19px;
  230. left:1em;
  231. }
  232.  
  233. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  234.  
  235. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  236. .user_7 .label, .user_8 .label, .user_9 .label {color:#555555;}
  237.  
  238. .notes img{width:10px; position:relative; top:3px;}
  239.  
  240. .permalink{
  241. text-align: left;
  242. width:490px;
  243. line-height:8px;
  244. padding:5px;
  245. position:absolute;
  246. color: {color:permalink text};
  247. text-transform:uppercase;
  248. font-family:cambria;
  249. {Block:IfNotShowPermalink}
  250. opacity:0;
  251. {/Block:IfNotShowPermalink}
  252. {Block:IfShowPermalink}
  253. opacity:1;
  254. {Block:IfShowPermalink}
  255. margin-left:1px;
  256. font-size:12px;
  257. z-index:999;}
  258.  
  259. .permalink a{
  260. text-transform:uppercase;
  261. padding-right:5px;
  262. padding-left:5px;
  263. color:{color:permalink text};
  264. }
  265.  
  266. {Block:IfNotShowPermalink}
  267. .post:hover .permalink{opacity:1;}
  268. {/Block:IfNotShowPermalink}
  269.  
  270. .permalink a:hover{
  271. color: {color:permalink hover};
  272. }
  273.  
  274. #rainbow{width:500px; height:1px; background-image:url("http://media.tumblr.com/tumblr_m8jd4fOxo51ruxj87.png"); margin-left:1px; margin-top:10px;}
  275.  
  276. ::-webkit-scrollbar { width: 5px; height: 5px; }
  277. ::-webkit-scrollbar-button:start:decrement,
  278. ::-webkit-scrollbar-button:end:increment { height: 0px; display: block; background: {color:scrollbar background}; }
  279. ::-webkit-scrollbar-track-piece { background: {color:scrollbar background}; }
  280. ::-webkit-scrollbar-thumb {height: 50px; background-color: {color:scrollbar}; }
  281.  
  282. #answerr{padding-left:35px;}
  283.  
  284. .current_page{padding-right:10px; color:{color:text}; font-weight:bold;}
  285.  
  286. .jump_page{padding-right:10px;color:{color:links};}
  287.  
  288. #description{margin-left:-10px; width:135px; margin-top:-15px; text-align:center;}
  289.  
  290. #info{font-style:italic;}
  291.  
  292. .ttl{margin-left:-44px; margin-bottom:30px; font-size:17px; font-style:italic; -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. .ttl a{}
  299.  
  300. #sidebar:hover .ttl{opacity:0;}
  301.  
  302. #ava{margin-top:0px; margin-bottom:15px; margin-left:-13px; {Block:IfRoundAvatar}border-radius:100px;{/Block:IfRoundAvatar} border:1px dashed {color:sidebar borders}; padding:15px; width:130px; height:130px;-webkit-transition: all 0.5s ease-in-out;
  303. -moz-transition: all 0.5s ease-in-out;
  304. -o-transition: all 0.5s ease-in-out;
  305. -ms-transition: all 0.5s ease-in-out;
  306. transition: all 0.5s ease-in-out;}
  307.  
  308. #ava2{margin-top:-6px; margin-left:-7px; {Block:IfRoundAvatar}border-radius:100px;{/Block:IfRoundAvatar}border:1px solid {color:sidebar borders}; padding:7px; width:128px; height:128px;-webkit-transition: all 0.5s ease-in-out;
  309. -moz-transition: all 0.5s ease-in-out;
  310. -o-transition: all 0.5s ease-in-out;
  311. -ms-transition: all 0.5s ease-in-out;
  312. transition: all 0.5s ease-in-out;}
  313.  
  314. #ava a{}
  315.  
  316. #ava2 a{}
  317.  
  318. #sidebar:hover #ava{border:1px solid {color:sidebar borders};}
  319.  
  320. #sidebar:hover #ava2{border:1px dashed {color:sidebar borders};}
  321.  
  322. #sidebar:hover .menu{opacity:1;}
  323.  
  324. .menu a:hover{}
  325.  
  326. .menu a{padding-right:3px; padding-left:3px;}
  327.  
  328. #reb{text-align:right; margin-top:-8px;}
  329.  
  330. .menu{z-index:999; padding-top:0px; width:140px; margin-top:-55px; text-transform:lowercase; opacity:0; margin-bottom:45px; margin-left:-13px; -webkit-transition: all 0.5s ease-in-out;
  331. -moz-transition: all 0.5s ease-in-out;
  332. -o-transition: all 0.5s ease-in-out;
  333. -ms-transition: all 0.5s ease-in-out;
  334. transition: all 0.5s ease-in-out; position:absolute;}
  335.  
  336. #next{margin-top:-115px; position:absolute; font-size:25px; margin-left:160px;}
  337.  
  338. #back{margin-top:-115px; position:absolute; font-size:25px; margin-left:-40px;}
  339.  
  340. #wrap{margin-left:44px;}
  341.  
  342. #playerr{margin-top:-103px; margin-left:110px; position:absolute}
  343.  
  344. </style>
  345.  
  346. </head>
  347.  
  348. <body>
  349.  
  350.  
  351. <div id="main">
  352. <div id="sidebar">
  353.  
  354. <div id="wrap">
  355.  
  356. <div class="ttl">
  357. {title}
  358. </div>
  359.  
  360. <div class="menu">
  361.  
  362. <a href="/">home</a>
  363.  
  364. <a href="ask">ask</a>
  365.  
  366. {Block:IfLinkTitle1}<a href="{text:link url 1}">{text:link title 1}</a>{/Block:IfLinkTitle1}
  367.  
  368. {Block:IfLinkTitle2}<a href="{text:link url 2}">{text:link title 2}</a>{/Block:IfLinkTitle2}
  369.  
  370. {Block:IfLinkTitle3}<a href="{text:link url 3}">{text:link title 3}</a>{/Block:IfLinkTitle3}
  371.  
  372. <a href="http://asyrral.tumblr.com">theme</a>
  373.  
  374.  
  375. </div>
  376.  
  377. <div id="description">
  378.  
  379. <div id="ava">
  380. <div id="ava2">
  381.  
  382. <img src="{PortraitURL-128}" style="width:128px; height:128px; {Block:IfRoundAvatar}border-radius:100px;{/Block:IfRoundAvatar}">
  383.  
  384. </div>
  385. </div>
  386.  
  387. {Block:NextPage}
  388. <div id="next">
  389. <a href="{NextPage}">&raquo;</a>
  390. </div>
  391. {/Block:NextPage}
  392.  
  393. {Block:PreviousPage}
  394. <div id="back">
  395. <a href="{PreviousPage}">&laquo;</a>
  396. </div>
  397. {/Block:PreviousPage}
  398.  
  399. <div id="info">
  400. {description}
  401. </div>
  402. </div>
  403. </div>
  404.  
  405. </div></div>
  406.  
  407. <div id="content">
  408.  
  409. {block:Posts}
  410.  
  411. {block:Text}
  412. <div class="post">
  413. {block:Title}
  414. <h3><a href="{Permalink}">{Title}</a></h3>
  415. {/block:Title}
  416. {Body}
  417. {Block:IfRainbowBorder}
  418. <div id="rainbow"></div>
  419. {/Block:IfRainbowBorder}
  420. <div class="permalink">
  421. posted <a href="{Permalink}">{TimeAgo}</a> with
  422. <a href="{Permalink}"> {NoteCount} notes</a>
  423. <div id="reb">{block:RebloggedFrom}<a href="{ReblogParentUrl}">via</a> / {/block:RebloggedFrom}{block:ContentSource}<a href="{SourceURL}">source</a> · {/block:ContentSource}
  424. <a href="{ReblogURL}">reblog</a></div></div>
  425. </div>
  426. {/block:Text}
  427.  
  428. {block:Photo}
  429. <div class="post">
  430. <center>{LinkOpenTag}
  431. <div id="catimg">
  432. <img src="{PhotoURL-500}" alt="{PhotoAlt}" {Block:IfStretchPhotos}width="500px"{/Block:IfStretchPhotos}/>
  433. </div>
  434. {LinkCloseTag}</center>
  435. {block:IfShowCaption}
  436. {block:Caption}
  437. <div class="caption">{Caption}</div>
  438. {/block:Caption}
  439. {/block:IfShowCaption}
  440. {Block:IfRainbowBorder}
  441. <div id="rainbow"></div>
  442. {/Block:IfRainbowBorder}
  443. <div class="permalink">
  444. posted <a href="{Permalink}">{TimeAgo}</a> with
  445. <a href="{Permalink}"> {NoteCount} notes</a>
  446. <div id="reb">{block:RebloggedFrom}<a href="{ReblogParentUrl}">via</a> / {/block:RebloggedFrom}{block:ContentSource}<a href="{SourceURL}">source</a> · {/block:ContentSource}
  447. <a href="{ReblogURL}">reblog</a></div></div>
  448. </div>
  449. {/block:Photo}
  450.  
  451. {block:Photoset}
  452. <div class="post">
  453. <center>
  454. <div id="catimg">
  455. {Photoset-500}
  456. </div>
  457. </center>
  458. {block:IfShowCaption}
  459. {block:Caption}
  460. <div class="caption">{Caption}</div>
  461. {/block:Caption}
  462. {/block:IfShowCaption}
  463. {Block:IfRainbowBorder}
  464. <div id="rainbow"></div>
  465. {/Block:IfRainbowBorder}
  466. <div class="permalink">
  467. posted <a href="{Permalink}">{TimeAgo}</a> with
  468. <a href="{Permalink}"> {NoteCount} notes</a>
  469. <div id="reb">{block:RebloggedFrom}<a href="{ReblogParentUrl}">via</a> / {/block:RebloggedFrom}{block:ContentSource}<a href="{SourceURL}">source</a> · {/block:ContentSource}
  470. <a href="{ReblogURL}">reblog</a></div></div>
  471. </div>
  472. {/block:Photoset}
  473.  
  474. {block:Quote}
  475. <div class="post">
  476. <div class="quote">"{Quote}"</div>
  477. {Block:IfRainbowBorder}
  478. <div id="rainbow"></div>
  479. {/Block:IfRainbowBorder}
  480. <div class="permalink">
  481. posted <a href="{Permalink}">{TimeAgo}</a> with
  482. <a href="{Permalink}"> {NoteCount} notes</a>
  483. <div id="reb">{block:RebloggedFrom}<a href="{ReblogParentUrl}">via</a> / {/block:RebloggedFrom}{block:ContentSource}<a href="{SourceURL}">source</a> · {/block:ContentSource}
  484. <a href="{ReblogURL}">reblog</a></div></div>
  485. </div>
  486. {/block:Quote}
  487.  
  488. {block:Link}
  489. <div class="post">
  490. <center><h3><a href="{URL}" class="link" {Target}>{Name}</a></h3></center>
  491. {block:Description}
  492. <div class="description">{Description}</div>
  493. {/block:Description}
  494. {Block:IfRainbowBorder}
  495. <div id="rainbow"></div>
  496. {/Block:IfRainbowBorder}
  497. <div class="permalink">
  498. posted <a href="{Permalink}">{TimeAgo}</a> with
  499. <a href="{Permalink}"> {NoteCount} notes</a>
  500. <div id="reb">{block:RebloggedFrom}<a href="{ReblogParentUrl}">via</a> / {/block:RebloggedFrom}{block:ContentSource}<a href="{SourceURL}">source</a> · {/block:ContentSource}
  501. <a href="{ReblogURL}">reblog</a></div></div>
  502. </div>
  503. {/block:Link}
  504.  
  505. {block:Chat}
  506. <div class="post">
  507. {block:Title}
  508. <h3><a href="{Permalink}">{Title}</a></h3>
  509. {/block:Title}
  510. <ul class="chat">
  511. {block:Lines}
  512. <li class="{Alt} user_{UserNumber}">
  513. {block:Label}
  514. <span class="label">{Label}</span>
  515. {/block:Label}
  516. {Line}
  517. </li>
  518. {/block:Lines}
  519. </ul>
  520. {Block:IfRainbowBorder}
  521. <div id="rainbow"></div>
  522. {/Block:IfRainbowBorder}
  523. <div class="permalink">
  524. posted <a href="{Permalink}">{TimeAgo}</a> with
  525. <a href="{Permalink}"> {NoteCount} notes</a>
  526. <div id="reb">{block:RebloggedFrom}<a href="{ReblogParentUrl}">via</a> / {/block:RebloggedFrom}{block:ContentSource}<a href="{SourceURL}">source</a> · {/block:ContentSource}
  527. <a href="{ReblogURL}">reblog</a></div></div>
  528. </div>
  529. {/block:Chat}
  530.  
  531. {block:Video}
  532. <div class="post">
  533. <center>{Video-500}</center>
  534. {block:IfShowCaption}
  535. {block:Caption}
  536. <div class="caption">{Caption}</div>
  537. {/block:Caption}
  538. {/block:IfShowCaption}
  539. {Block:IfRainbowBorder}
  540. <div id="rainbow"></div>
  541. {/Block:IfRainbowBorder}
  542. <div class="permalink">
  543. posted <a href="{Permalink}">{TimeAgo}</a> with
  544. <a href="{Permalink}"> {NoteCount} notes</a>
  545. <div id="reb">{block:RebloggedFrom}<a href="{ReblogParentUrl}">via</a> / {/block:RebloggedFrom}{block:ContentSource}<a href="{SourceURL}">source</a> · {/block:ContentSource}
  546. <a href="{ReblogURL}">reblog</a></div></div>
  547. </div>
  548. {/block:Video}
  549.  
  550. {block:Audio}
  551. <div class="post">
  552. {Block:IfBlackAudioPlayer}
  553. {AudioPlayerBlack}<p>
  554. {/Block:IfBlackAudioPlayer}
  555. {Block:IfWhiteAudioPlayer}
  556. {AudioPlayerWhite}<p>
  557. {/Block:IfWhiteAudioPlayer}
  558. {Block:IfGreyAudioPlayer}
  559. {AudioPlayerGrey}<p>
  560. {/Block:IfGreyAudioPlayer}
  561. {block:Artist}
  562. <b>Artist:</b> {Artist}<p>
  563. {/block:Artist}
  564.  
  565. {block:Album}
  566. <b>Album:</b> {Album}<p>
  567. {/block:Album}
  568.  
  569. {block:TrackName}
  570. <b>Track:</b> {TrackName}
  571. {/block:TrackName}
  572. {block:caption}<p>{caption}{/block:caption}
  573. {Block:IfRainbowBorder}
  574. <div id="rainbow"></div>
  575. {/Block:IfRainbowBorder}
  576. <div class="permalink">
  577. posted <a href="{Permalink}">{TimeAgo}</a> with
  578. <a href="{Permalink}"> {NoteCount} notes</a>
  579. <div id="reb">{block:RebloggedFrom}<a href="{ReblogParentUrl}">via</a> / {/block:RebloggedFrom}{block:ContentSource}<a href="{SourceURL}">source</a> · {/block:ContentSource}
  580. <a href="{ReblogURL}">reblog</a></div></div>
  581. </div>
  582. {/block:Audio}
  583.  
  584. {block:Answer}
  585. <div class="post">
  586. <div class="bubble"><strong>{Asker}</strong> asked: <i>{Question}</i></div><div id="answerr">{Answer}</div>
  587. {Block:IfRainbowBorder}
  588. <div id="rainbow"></div>
  589. {/Block:IfRainbowBorder}
  590. <div class="permalink">
  591. posted <a href="{Permalink}">{TimeAgo}</a> with
  592. <a href="{Permalink}"> {NoteCount} notes</a>
  593. <div id="reb">
  594. <a href="{ReblogURL}">reblog</a></div></div>
  595. </div>
  596. {/block:Answer}
  597.  
  598. {block:PermalinkPage}
  599. <div style="width:486px; background:{color:posts}; text-align:center; padding-top: 5px;
  600. padding-bottom: 12px;
  601. padding-left: 12px;
  602. padding-right: 12px;">
  603. posted <a href="{Permalink}">{TimeAgo}</a> with
  604. <a href="{Permalink}"> {NoteCount} notes</a> <br> {block:HasTags}
  605. {block:Tags}<a href="{TagURL}"> #{Tag}</a>{/block:Tags}
  606. {/block:HasTags} <p> {block:PostNotes}{PostNotes}{/block:PostNotes}</div>{/block:PermalinkPage}
  607.  
  608. {/block:Posts}
  609.  
  610. </div>
  611.  
  612. </div>
  613.  
  614. </body>
  615.  
  616. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement