Advertisement
midnightsnitch

Theme 02: Rainbow Sherbet

May 26th, 2012
1,010
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.90 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. <!--
  4. THEME 02: RAINBOW SHERBET BY NUTELLAMONKEYS.TUMBLR.COM
  5.  
  6. RULES:
  7. - DO NOT REDISTRIBUTE OR REUPLOAD AND CLAIM AS YOUR OWN
  8. - LEAVE THE CREDITS AS THEY ARE, DO NOT MOVE THEM TO A DIFFERENT PAGE OR ANYWHERE ELSE.
  9. - DO NOT USE AS A BASE CODE
  10. -->
  11.  
  12. <html>
  13. <head>
  14. <link rel="shortcut icon" href="{Favicon}">
  15. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  16. {block:Description}
  17. <meta name="description" content="{MetaDescription}" />
  18. {/block:Description}
  19.  
  20. <meta name="color:Background" content ="#887f6d"/>
  21. <meta name="color:Sidebar" content ="#cac2ad"/>
  22. <meta name="color:Content" content ="#cac2ad"/>
  23. <meta name="image:Background" content=""/>
  24. <meta name="image:Sidebar" content=""/>
  25. <meta name="color:Text" content="#978d74"/>
  26. <meta name="color:Blockquote" content ="#6c6451"/>
  27. <meta name="color:Link" content="#6c6451"/>
  28. <meta name="color:Link Hover" content="#afa58c"/>
  29. <meta name="color:Navigation" content="#cac2ad"/>
  30. <meta name="color:Navigation Text" content="#978d74"/>
  31. <meta name="color:Navigation Hover" content="#e0d9c7"/>
  32. <meta name="color:Navigation Text Hover" content="#978d74"/>
  33. <meta name="color:Question" content="#f1e8d1"/>
  34. <meta name="color:Header" content="#6c6451"/>
  35.  
  36. <meta name="text:URL1" content="/" />
  37. <meta name="text:TITLE1" content="link 1" />
  38. <meta name="text:URL2" content="/" />
  39. <meta name="text:TITLE2" content="link 2" />
  40. <meta name="text:URL3" content="/" />
  41. <meta name="text:TITLE3" content="link 3" />
  42. <meta name="text:URL4" content="/" />
  43. <meta name="text:TITLE4" content="link 4" />
  44.  
  45. <link href='http://fonts.googleapis.com/css?family=Lobster+Two:400,400italic' rel='stylesheet' type='text/css'>
  46. <link href='http://fonts.googleapis.com/css?family=Comfortaa:400,700' rel='stylesheet' type='text/css'>
  47.  
  48. <style type="text/css">
  49.  
  50. body {
  51. background-color: {color:Background};
  52. background-image: url({image:Background});
  53. background-attachment:fixed;
  54. font-family: Calibri;
  55. font-size: 12px;
  56. color: {color:Text};
  57. }
  58.  
  59. a {
  60. color: {color:Link};
  61. text-decoration: none;
  62. transition: all 0.5s ease-in;
  63. -webkit-transition: all 0.5s ease-in;
  64. -moz-transition: all 0.5s ease-in;
  65. -o-transition: all 0.5s ease-in;
  66. -ms-transition: all 0.5s ease-in;
  67. }
  68.  
  69. a:hover {
  70. color: {color:Link Hover};
  71. transition: all 0.5s ease-in;
  72. -webkit-transition: all 0.5s ease-in;
  73. -moz-transition: all 0.5s ease-in;
  74. -o-transition: all 0.5s ease-in;
  75. -ms-transition: all 0.5s ease-in;
  76. }
  77.  
  78. a img {
  79. border: 0px;
  80. }
  81.  
  82. .content {
  83. position: absolute;
  84. top: 10px;
  85. left: 230px;
  86. width: 500px;
  87. padding: 10px;
  88. background-color: {color:Content};
  89. -webkit-border-radius: 15px;
  90. -moz-border-radius: 15px;
  91. }
  92.  
  93. blockquote {
  94. font-size: 12px;
  95. border-left: 5px solid {color:Blockquote};
  96. margin: 15px;
  97. padding: 0 3px 0 10px;
  98. color:{color:Blockquote};
  99. }
  100.  
  101. .sidebar {
  102. position: fixed;
  103. top: 10px;
  104. left: 780px;
  105. width: 240px;
  106. padding: 10px;
  107. background-color: {color:Sidebar};
  108. text-align: justify;
  109. -webkit-border-radius: 15px;
  110. -moz-border-radius: 15px;
  111. }
  112.  
  113. .sidebar img {
  114. max-width:100%;
  115. }
  116.  
  117. img {
  118. max-width:100%;
  119. }
  120.  
  121. #navigation {
  122. position:fixed;
  123. top:30px;
  124. left:50px;
  125. }
  126.  
  127. a.nav {
  128. width: 70px;
  129. height: 50px;
  130. font-family: 'Comfortaa';
  131. text-transform:uppercase;
  132. font-size: 11px;
  133. display:block;
  134. text-align: center;
  135. background-color: {color:Navigation};
  136. color: {color:Navigation Text};
  137. margin-bottom: 60px;
  138. padding-top: 10px;
  139. padding-bottom: 10px;
  140. line-height: 50px;
  141. -webkit-border-radius: 250px;
  142. -moz-border-radius: 250px;
  143. transition: all 0.5s ease-in-out;
  144. -webkit-transition: all 0.5s ease-in-out;
  145. -moz-transition: all 0.5s ease-in-out;
  146. -o-transition: all 0.5s ease-in-out;
  147. -ms-transition: all 0.5s ease-in-out;
  148. -webkit-backface-visibility: hidden;
  149. }
  150.  
  151.  
  152. a.nav:hover {
  153. background-color: {color:Navigation Hover};
  154. color: {color:Navigation Text Hover};
  155. transform: rotate(360deg);
  156. -moz-transform: rotate(360deg);
  157. -webkit-transform: rotate(360deg);
  158. -o-transform: rotate(360deg);
  159. -webkit-backface-visibility: hidden;
  160. }
  161.  
  162. #navigation2 {
  163. position:fixed;
  164. top:90px;
  165. left:110px;
  166. }
  167.  
  168. a.nav2 {
  169. width: 70px;
  170. height: 50px;
  171. font-family: 'Comfortaa';
  172. text-transform:uppercase;
  173. font-size: 11px;
  174. display:block;
  175. text-align: center;
  176. background-color: {color:Navigation};
  177. color: {color:Navigation Text};
  178. margin-bottom: 60px;
  179. padding-top: 10px;
  180. padding-bottom: 10px;
  181. line-height: 50px;
  182. -webkit-border-radius: 250px;
  183. -moz-border-radius: 250px;
  184. transition: all 0.5s ease-in-out;
  185. -webkit-transition: all 0.5s ease-in-out;
  186. -moz-transition: all 0.5s ease-in-out;
  187. -o-transition: all 0.5s ease-in-out;
  188. -ms-transition: all 0.5s ease-in-out;
  189. }
  190.  
  191.  
  192. a.nav2:hover {
  193. background-color: {color:Navigation Hover};
  194. color: {color:Navigation Text Hover};
  195. transform: rotate(360deg);
  196. -moz-transform: rotate(360deg);
  197. -webkit-transform: rotate(360deg);
  198. -o-transform: rotate(360deg);
  199. }
  200.  
  201. .post img {
  202. display: block;
  203. }
  204.  
  205. .notesandtags {
  206. padding: 5px;
  207. border-bottom: 1px dotted {color:Background};
  208. border-top: 1px dotted {color:Background};
  209. margin-bottom: 30px;
  210. margin-top: 5px;
  211. }
  212.  
  213. .tags {
  214. font-size: 10px;
  215. text-align: right;
  216. text-transform: lowercase;
  217. }
  218.  
  219. .tag {
  220. font-weight: normal;
  221. margin-right: 2px;
  222. font-style: italic;
  223. }
  224.  
  225. .time {
  226. font-size: 10px;
  227. color: {color:Link};
  228. text-transform: uppercase;
  229. font-weight: bold;
  230. }
  231.  
  232. h3 {
  233. font-size: 20px;
  234. margin: 0px;
  235. text-transform: none;
  236. color: {color:Header};
  237. font-family: 'Comfortaa';
  238. }
  239.  
  240. .quote {
  241. font-family: 'Lobster Two', cursive;
  242. font-style: italic;
  243. font-size: 21px;
  244. color: {color:Link};
  245. }
  246.  
  247. .source {
  248. margin-left: 25px;
  249. }
  250.  
  251. .link {
  252. color: {color:Link};
  253. font-size: 16px;
  254. font-weight: bold;
  255. font-family: 'Comfortaa';
  256. transition: all 0.5s ease-in;
  257. -webkit-transition: all 0.5s ease-in;
  258. -moz-transition: all 0.5s ease-in;
  259. -o-transition: all 0.5s ease-in;
  260. -ms-transition: all 0.5s ease-in;
  261. }
  262.  
  263. .link:hover {
  264. color:{color:Link Hover};
  265. transition: all 0.5s ease-in;
  266. -webkit-transition: all 0.5s ease-in;
  267. -moz-transition: all 0.5s ease-in;
  268. -o-transition: all 0.5s ease-in;
  269. -ms-transition: all 0.5s ease-in;
  270. }
  271.  
  272. ul.chat {
  273. margin: 0;
  274. padding: 0;
  275. }
  276.  
  277. .chat li {
  278. list-style-type: none;
  279. margin-left: 0px;
  280. padding: 3px;
  281. }
  282.  
  283. .chat li.odd {
  284. background-color: {color:Content};
  285. margin-bottom: 1px;
  286. color: {color:Background};
  287. }
  288.  
  289. .chat li.even {
  290. background-color: {color:Background};
  291. margin-bottom: 1px;
  292. color: {color:Content};
  293. }
  294.  
  295. .label {
  296. font-weight: bold;
  297. }
  298.  
  299. .title {
  300. font-size: 20px;
  301. font-family: 'Comfortaa';
  302. color: {color:Header};
  303. text-align: center;
  304. }
  305.  
  306. .current_page,
  307. .jump_page:hover {
  308. padding: 3px 7px 3px 7px;
  309. color: {color:Text};
  310. }
  311.  
  312. .jump_page {
  313. padding: 3px 7px 3px 7px;
  314. color: {color:Background};
  315. }
  316.  
  317. .ask {
  318. background-color: {color:Question};
  319. -moz-border-radius: 10px;
  320. -webkit-border-radius: 10px;
  321. -o-border-radius: 10px;
  322. padding: 10px;
  323. }
  324.  
  325. iframe#tumblr_controls{ right: 3px !important; position: fixed !important; }
  326. {CustomCSS}
  327. </style>
  328.  
  329. <title>{Title}</title>
  330.  
  331. </head>
  332.  
  333. <body>
  334.  
  335. <div class="content">
  336.  
  337. {block:Posts}
  338.  
  339.  
  340. {block:Text}
  341. <div class="post">
  342. {block:Title}
  343. <h3><a href="{Permalink}">{Title}</a></h3>
  344. {/block:Title}
  345. {Body}
  346. </div>
  347. {/block:Text}
  348.  
  349. {block:Photo}
  350. <div class="post">
  351. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}
  352. {block:Caption}
  353. <div class="caption">{Caption}</div>
  354. {/block:Caption}
  355. </div>
  356. {/block:Photo}
  357.  
  358. {block:Photoset}
  359. <div class="post">
  360. <center>{Photoset-500}</center>
  361. {block:Caption}
  362. <div class="caption">{Caption}</div>
  363. {/block:Caption}
  364. </div>
  365. {/block:Photoset}
  366.  
  367. {block:Quote}
  368. <div class="post">
  369. <span class="quote">"{Quote}"</span>
  370. {block:Source}
  371. <div class="source">- {Source}</div>
  372. {/block:Source}
  373. </div>
  374. {/block:Quote}
  375.  
  376. {block:Link}
  377. <div class="post">
  378. <center><a href="{URL}" class="link" {Target}>{Name} &#8594;</a></center>
  379. {block:Description}
  380. <div class="description">{Description}</div>
  381. {/block:Description}
  382. </div>
  383. {/block:Link}
  384.  
  385. {block:Chat}
  386. <div class="post">
  387. {block:Title}
  388. <h3><a href="{Permalink}">{Title}</a></h3>
  389. {/block:Title}
  390. <ul class="chat">
  391. {block:Lines}
  392. <li class="{Alt} user_{UserNumber}">
  393. {block:Label}
  394. <span class="label">{Label}</span>
  395. {/block:Label}
  396. {Line}
  397. </li>
  398. {/block:Lines}
  399. </ul>
  400. </div>
  401. {/block:Chat}
  402.  
  403. {block:Video}
  404. <div class="post">
  405. <center>{Video-500}</center>
  406. {block:Caption}
  407. <div class="caption">{Caption}</div>
  408. {/block:Caption}
  409. </div>
  410. {/block:Video}
  411.  
  412. {block:Answer}
  413. <div class="ask">{Asker} <b>sent:</b> {Question}</div>
  414. {Answer}
  415. {/block:Answer}
  416.  
  417. {block:Audio}
  418. <div class="post">
  419. {AudioPlayerWhite}
  420. {block:Caption}
  421. <div class="caption">{Caption}</div>
  422. {/block:Caption}
  423. </div>
  424. {/block:Audio}
  425.  
  426. <div class="notesandtags">
  427. <div class="time">
  428. {block:Date}<a href="{Permalink}">{TimeAgo}{block:NoteCount} with {NoteCount} notes {/block:NoteCount}</a>{/block:Date}{block:RebloggedFrom} • <a href="{ReblogParentURL}" title="{ReblogParentName}">Via</a> • <a href="{ReblogRootURL}" title="{ReblogRootName}">Source</a>{/block:RebloggedFrom}
  429. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagURL}" class="tag">#{Tag}</a> {block:Tags}</div>{/block:HasTags}
  430. </div>
  431. </div>
  432.  
  433. {block:PermalinkPage}
  434. {block:PostNotes}
  435. <div id="note">{PostNotes}</div>
  436. {/block:PostNotes}
  437. {/block:permalinkpage}
  438.  
  439. {block:ContentSource}
  440. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  441. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  442. {/block:SourceLogo}
  443. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  444. {/block:ContentSource}
  445.  
  446. {/block:Posts}
  447. <p align="center">
  448. {block:PreviousPage}<a href="{PreviousPage}">&larr; </a>{/block:PreviousPage}
  449.  
  450. {block:JumpPagination length="5"}
  451.  
  452. {block:CurrentPage}
  453.  
  454. <span class="current_page">{PageNumber}</span>
  455.  
  456. {/block:CurrentPage}
  457.  
  458. {block:JumpPage}
  459.  
  460. <a class="jump_page" href="{URL}">{PageNumber}</a>
  461.  
  462. {/block:JumpPage}
  463.  
  464. {/block:JumpPagination}
  465.  
  466. {block:NextPage}<a href="{NextPage}"> &rarr;</a>{/block:NextPage}
  467. </div>
  468.  
  469. <div class="sidebar">
  470.  
  471. <div class="title">{Title}</div>
  472.  
  473. <p align="center"><img src="{image:Sidebar}">
  474.  
  475. {block:Description}<p>{Description}{/block:Description}
  476.  
  477. <p align="center">
  478.  
  479.  
  480. </div>
  481.  
  482. <div id="navigation">
  483. <a href="/" class="nav">HOME</a>
  484. {block:ifTITLE1}<a href="{text:URL1}" class="nav">{text:TITLE1}</a>{/block:ifTITLE1}
  485. {block:ifTITLE3}<a href="{text:URL3}" class="nav">{text:TITLE3}</a>{/block:ifTITLE3}
  486. <a href="http://nutellamonkeys.tumblr.com/" class="nav">THEME</a>
  487. </div>
  488. <div id="navigation2">
  489. <a href="/ask" class="nav2">ASK</a>
  490. {block:ifTITLE2}<a href="{text:URL2}" class="nav2">{text:TITLE2}</a>{/block:ifTITLE2}
  491. {block:ifTITLE4}<a href="{text:URL4}" class="nav2">{text:TITLE4}</a>{/block:ifTITLE4}
  492. </div>
  493. </body>
  494. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement