danceforyous

Theme Five

Nov 17th, 2012
4,167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.52 KB | None | 0 0
  1. <head>
  2. <title>{Title}</title>
  3. <link rel="shortcut icon" href="{Favicon}">
  4. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  5. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  6.  
  7. <!--
  8.  
  9. Theme five by anne @ danceforyous.
  10.  
  11. --->
  12.  
  13. <!-- DEFAULT SETTINGS --->
  14. <meta name="color:Background" content="#ffffff"/>
  15. <meta name="color:Text" content="#838282"/>
  16. <meta name="color:Link" content="#b8b8b8"/>
  17. <meta name="color:Link Hover" content="#b8b8b8"/>
  18. <meta name="color:Scrollbar" content="#b8b8b8"/>
  19.  
  20. <meta name="image:sidebar" content=""/>
  21.  
  22. <meta name="text:link 1" content="">
  23. <meta name="text:link 1 url" content="/">
  24. <meta name="text:link 2" content="">
  25. <meta name="text:link 2 url" content="/">
  26. <meta name="text:link 3" content="">
  27. <meta name="text:link 3 url" content="/">
  28.  
  29. <style type="text/css">
  30.  
  31.  
  32. /** SCROLLBAR **/
  33.  
  34. ::-webkit-scrollbar{height: 10px; width: 10px; -webkit-border-radius:; background-color:{color:background};}
  35.  
  36. ::-webkit-scrollbar-thumb{background-color:{color:scrollbar};}
  37.  
  38. ::-webkit-scrollbar-track{background-color:{color:background};}
  39.  
  40.  
  41. /** ASKBOX SETTING **/
  42.  
  43. .bubble {
  44. align:right;
  45. background: #eee;
  46. margin:7px 0px 5px 66px;
  47. padding:10px;
  48. position:relative;
  49. -moz-border-radius:0px;
  50. -webkit-border-radius:0px;
  51. border-radius:0px;
  52. }
  53.  
  54. .bubble p {
  55. margin:1px 0px;
  56. }
  57.  
  58. .bubble span {
  59. display:block;
  60. position:absolute;
  61. width:1px;
  62. height:1px;
  63. font-size:0;
  64. line-height:1px;
  65. left:-10px;
  66. top:10px;
  67. border-top:7px solid transparent;
  68. border-bottom:7px solid transparent;
  69. border-right:10px solid #eee;
  70. }
  71.  
  72. .askborder {
  73. float:left;
  74. margin: 1px 4px 0 0;
  75. padding: 2px;
  76. background: #eee;
  77. }
  78.  
  79.  
  80. /** IMPORTANT SETTINGS [DON'T EDIT] **/
  81.  
  82. body {
  83. background:{color:background};
  84. margin:0px;
  85. color:{color:text};
  86. font-family:Cambria;
  87. font-size:10px;
  88. line-height:100%;
  89. }
  90.  
  91. a {
  92. text-decoration:none;
  93. outline:none;
  94. -moz-outline-style:none;
  95. color:{color:link};
  96. -webkit-transition: opacity 0.8s linear;
  97. opacity: 1;
  98. -webkit-transition: all 0.5s ease-out;
  99. -moz-transition: all 0.5s ease-out;
  100. transition: all 0.5s ease-out;
  101. }
  102.  
  103. a:hover {
  104. text-decoration:none;
  105. color:{color:Link Hover};
  106. -webkit-transition: opacity 0.8s linear;
  107. opacity: 1;
  108. -webkit-transition: all 0.5s ease-out;
  109. -moz-transition: all 0.5s ease-out;
  110. transition: all 0.5s ease-out;
  111. }
  112.  
  113. blockquote {
  114. padding-left:5px;
  115. border-left:2px solid;
  116. }
  117.  
  118. blockquote blockquote {
  119. padding-left:5px;
  120. border-left:2px solid;
  121. }
  122.  
  123. h1 {
  124. font-size:19px;
  125. }
  126.  
  127. h2 {
  128. font-size:15px;
  129. text-transform:uppercase;
  130. line-height:90%;
  131. }
  132.  
  133. img {
  134. border:none;
  135. }
  136.  
  137.  
  138. /** ENTRY AND SIDEBAR SETTINGS **/
  139.  
  140. #entries {
  141. padding:10px;
  142. width:500px;
  143. margin-left:500px;
  144. margin-top:40px;
  145. }
  146.  
  147. #sidebar {
  148. width:250px;
  149. position:fixed;
  150. margin-left:220px;
  151. margin-top:90px;
  152. }
  153.  
  154. #sidebarimage {
  155. width: 180px;
  156. opacity:1;
  157. -moz-transition-duration:0.8s;
  158. -webkit-transition-duration:0.8s;
  159. -o-transition-duration:0.8s;
  160. }
  161.  
  162. #sidebarimage img {
  163. width:180px;
  164. border:double #eee;
  165. padding:5px;
  166. }
  167.  
  168. #sidebarimage img:hover {
  169. opacity:0.50;
  170. -moz-transition-duration:0.8s;
  171. -webkit-transition-duration:0.8s;
  172. -o-transition-duration:0.8s;
  173. }
  174.  
  175. #desc {
  176. padding:5px;
  177. text-align:center;
  178. margin-left:15px;
  179. margin-top:10px;
  180. width:150px;
  181. border-bottom:1px #eee solid;
  182. border-top:1px #eee solid;
  183. font-size:8.5px;
  184. }
  185.  
  186. #pagination {
  187. font-size:9px;
  188. text-align:right;
  189. margin-right:10px;
  190. font-style:italic;
  191. }
  192.  
  193.  
  194. /** LINKS SETTINGS **/
  195.  
  196. .links {
  197. font-family:calibri;
  198. font-size:10px;
  199. letter-spacing:0px;
  200. text-transform:uppercase;
  201. text-align:center;
  202. margin-left:-30px;
  203. margin-top:5px;
  204. width:250px;
  205. }
  206.  
  207. .links a:hover {
  208. padding-left:8px;
  209. padding-right:10px;
  210. background-color:#eee;
  211. }
  212.  
  213.  
  214. /** POST SETTINGS **/
  215.  
  216. #post {
  217. width:500px;
  218. padding-bottom:20px;
  219. }
  220.  
  221. #info {
  222. text-align:right;
  223. margin-top:10px;
  224. font-size:9px;
  225. font-family:calibri;
  226. text-transform:uppercase;
  227. border-top:1px solid #eee;
  228. background-color:#fcfafa;
  229. padding:5px;
  230. }
  231.  
  232. #postnotes {
  233. font-family:calibri;
  234. font-size:8px;
  235. text-transform:uppercase;
  236. }
  237.  
  238. /** ASK AND AUDIO SETTINGS **/
  239.  
  240. #asker {
  241. float:left;
  242. margin-right:5px;
  243. border:3px solid #e8e8e8;
  244. padding:5px;
  245. }
  246.  
  247. .audio {
  248. height:55px;
  249. overflow:hidden;
  250. }
  251.  
  252. /** CREDITS. DO.NOT.REMOVE. **/
  253.  
  254. #crdt {
  255. font-size:8px;
  256. font-family:calibri;
  257. letter-spacing:1px;
  258. bottom:10px;
  259. right:10px;
  260. position:fixed;
  261. border:1px solid #eee;
  262. background-color:#fcfafa;
  263. padding:5px;
  264.  
  265. /** IMP. SETTINGS **/
  266.  
  267. {CustomCSS}</style></head><body>
  268.  
  269. <div id="sidebar">
  270.  
  271. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  272.  
  273. <div id="desc">{Description}</div>
  274.  
  275. <div class="links">
  276. <a href="/">home</a> &nbsp;
  277. <a href="/ask">inbox</a> &nbsp;
  278. <a href="{text:link 1 url}">{text:link 1}</a> &nbsp;
  279. <a href="{text:link 2 url}">{text:link 2}</a> &nbsp;
  280. <a href="{text:link 3 url}">{text:link 3}</a></div>
  281.  
  282. <div id="pagination">
  283. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}"<big><big>«</big></big></a>{/block:PreviousPage}
  284. {CurrentPage} / {TotalPages}
  285. {block:NextPage}<a href="{NextPage}"><big><big>»</big></big></a>{/block:NextPage}{/block:Pagination} </div>
  286. </div>
  287.  
  288. <div id="crdt"><a href="http://www.danceforyous.tumblr.com/themage" target="_blank">DANCEFORYOUS</a> </div>
  289.  
  290. <div id="entries">{block:Posts}<div id="post">
  291.  
  292. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  293.  
  294. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  295.  
  296. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  297.  
  298. {block:Quote}<h2>
  299. {Quote}</h2>{block:Source} —{Source}{/block:Source}{/block:Quote}
  300.  
  301. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  302.  
  303. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  304.  
  305. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="80px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerBlack}{block:Caption}{Caption}</div>{/block:Caption}{/block:Audio}<br><br>
  306.  
  307. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  308.  
  309. {block:Answer}<img src="{AskerPortraitURL-48}" align="left" class="askborder"><div class="bubble"><span></span><big>❝</big> <i>{Asker}</i>: {Question}&nbsp;</div><br>{Answer}{/block:Answer}
  310.  
  311. <div id="info">
  312. {block:Date}{TimeAgo}{/block:Date} /<a href="{Permalink}">
  313.  
  314. {NoteCountWithLabel}</a>{block:RebloggedFrom}<br> <a href="{ReblogParentURL}" title="{ReblogParentTitle}">via</a> -
  315.  
  316. {block:ContentSource}<a href="{SourceURL}"><a href="{SourceURL}">© <a href="{SourceURL}"></a></a>{/block:ContentSource}{/block:RebloggedFrom} - <a href="{ReblogURL}" target="_blank">reblog</a>
  317. {/block:RebloggedFrom}<br>
  318.  
  319. {block:HasTags}{block:Tags} ✖<a href="{TagURL}">{Tag}</a>{/block:Tags}{/block:HasTags}</div>
  320.  
  321. </div>
  322.  
  323. <div id="postnotes">
  324. {block:PostNotes}{PostNotes}{/block:PostNotes}
  325. {/block:Posts}</div>
  326.  
  327. </body>
  328. </html>
Advertisement
Add Comment
Please, Sign In to add comment