Advertisement
midnightsnitch

Theme 03: Home

Jun 13th, 2012
707
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.79 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 03: HOME 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
  9. - DO NOT USE AS A BASE CODE
  10.  
  11. If you fail to abide by these rules I will hunt you down. :)
  12. -->
  13.  
  14. <html>
  15. <head>
  16. <link rel="shortcut icon" href="{Favicon}">
  17. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  18. {block:Description}
  19. <meta name="description" content="{MetaDescription}" />
  20. {/block:Description}
  21.  
  22. <meta name="color:Background" content ="#d0feff"/>
  23. <meta name="color:Sidebar" content ="#89bebf"/>
  24. <meta name="color:Sidebar Border"content="#89bebf"/>
  25. <meta name="color:Content" content ="#89bebf"/>
  26. <meta name="image:Background" content=""/>
  27. <meta name="image:Sidebar" content=""/>
  28. <meta name="color:Text" content="#c1f5eb"/>
  29. <meta name="color:Link" content="#467273"/>
  30. <meta name="color:Link Hover" content="#d0feff"/>
  31. <meta name="color:Navigation" content="#89bebf"/>
  32. <meta name="color:Navigation Text" content="#d0feff"/>
  33. <meta name="color:Navigation Hover" content="#467273"/>
  34. <meta name="color:Navigation Text Hover" content="#89bebf"/>
  35. <meta name="color:Question" content="#467273"/>
  36. <meta name="color:Header" content="#d0feff"/>
  37.  
  38. <meta name="text:URL1" content="/" />
  39. <meta name="text:TITLE1" content="link 1" />
  40. <meta name="text:URL2" content="/" />
  41. <meta name="text:TITLE2" content="link 2" />
  42. <meta name="text:URL3" content="/" />
  43. <meta name="text:TITLE3" content="link 3" />
  44. <meta name="text:URL4" content="/" />
  45. <meta name="text:TITLE4" content="link 4" />
  46.  
  47. <link href='http://fonts.googleapis.com/css?family=Roboto:300' rel='stylesheet' type='text/css'>
  48. <link href='http://fonts.googleapis.com/css?family=Pompiere' rel='stylesheet' type='text/css'>
  49. <link href='http://fonts.googleapis.com/css?family=Lobster+Two:400,400italic' rel='stylesheet' type='text/css'>
  50.  
  51. <style type="text/css">
  52.  
  53. body {
  54. background-color: {color:Background};
  55. background-image: url({image:Background});
  56. background-attachment:fixed;
  57. font-family: 'Roboto', sans-serif;
  58. font-size: 10px;
  59. color: {color:Text};
  60. letter-spacing:1px;
  61. text-align:justify;
  62. }
  63.  
  64. a {
  65. color: {color:Link};
  66. text-decoration: none;
  67. transition: all 0.5s linear;
  68. -moz-transition:all 0.5s linear;
  69. -webkit-transition:all 0.5s linear;
  70. -o-transition:all 0.5s linear;
  71. }
  72.  
  73. a:hover {
  74. color: {color:Link Hover};
  75. transition: all 0.5s linear;
  76. -moz-transition:all 0.5s linear;
  77. -webkit-transition:all 0.5s linear;
  78. -o-transition:all 0.5s linear;
  79. }
  80.  
  81. a img {
  82. border: 0px;
  83. }
  84.  
  85. img {
  86. max-width:100%;
  87. }
  88.  
  89. .content {
  90. position: absolute;
  91. top: 100px;
  92. left: 450px;
  93. width: 500px;
  94. padding: 10px;
  95. background-color: {color:Content};
  96. }
  97.  
  98. blockquote {
  99. border-left: 5px solid {color:Link};
  100. color:{color:Link};
  101. margin: 10px;
  102. padding: 0 3px 0 10px;
  103. }
  104.  
  105. #navigation {
  106. position:absolute;
  107. top:20px;
  108. left:450px;
  109. }
  110.  
  111. a.nav {
  112. width: 70px;
  113. height: 50px;
  114. font-family: 'Pompiere', cursive;
  115. text-transform:uppercase;
  116. font-size: 12px;
  117. display:inline-block;
  118. text-align: center;
  119. background-color: {color:Navigation};
  120. color: {color:Navigation Text};
  121. margin-bottom: 60px;
  122. margin-right: 2.5px;
  123. padding-top: 10px;
  124. padding-bottom: 10px;
  125. line-height: 50px;
  126. }
  127.  
  128. a.nav:hover {
  129. background-color: {color:Navigation Hover};
  130. color: {color:Navigation Text Hover};
  131. border-bottom: 6px solid {color:Navigation};
  132. transition: all 0.5s linear;
  133. -moz-transition:all 0.5s linear;
  134. -webkit-transition:all 0.5s linear;
  135. -o-transition:all 0.5s linear;
  136. }
  137.  
  138. .post img {
  139. display: block;
  140. }
  141.  
  142. h3 {
  143. font-size: 20px;
  144. margin: 0px;
  145. text-transform: uppercase;
  146. color: {color:Header};
  147. font-family: 'Pompiere', cursive;
  148. }
  149.  
  150. .quote {
  151. font-family: 'Lobster Two', cursive;
  152. font-style: italic;
  153. font-size: 21px;
  154. color: {color:Link};
  155. }
  156.  
  157. .source {
  158. margin-left: 25px;
  159. }
  160.  
  161. .link {
  162. color: {color:Link};
  163. font-size: 20px;
  164. font-family: 'Pompiere', cursive;
  165. text-transform: uppercase;
  166. }
  167.  
  168. .link:hover {
  169. color:{color:Link Hover};
  170. }
  171.  
  172. ul.chat {
  173. margin: 0;
  174. padding: 0;
  175. }
  176.  
  177. .chat li {
  178. list-style-type: none;
  179. margin-left: 0px;
  180. padding: 3px;
  181. }
  182.  
  183. .chat li.odd {
  184. background-color: {color:Content};
  185. margin-bottom: 1px;
  186. color: {color:Background};
  187. }
  188.  
  189. .chat li.even {
  190. background-color: {color:Background};
  191. margin-bottom: 1px;
  192. color: {color:Content};
  193. }
  194.  
  195. .label {
  196. font-weight: bold;
  197. }
  198.  
  199. .title {
  200. font-size: 23px;
  201. font-family: 'Pompiere', cursive;
  202. color: {color:Header};
  203. text-align: center;
  204. }
  205.  
  206. #mumbojumbo {
  207. width:500px;
  208. left:300px!important;
  209. padding:3px 0px;
  210. margin-bottom: 30px;
  211. text-align:right;
  212. }
  213.  
  214. #date {
  215. width:500px;
  216. left:300px!important;
  217. margin-top:5px;
  218. padding-top:5px;
  219. text-transform:uppercase;
  220. color:{color:Text};
  221. border-top:{color:Background} solid 1.5px;
  222. text-align: left;
  223. }
  224.  
  225.  
  226. .ask {
  227. background-color: {color:Question};
  228. padding: 10px;
  229. color:{color:Text};
  230. }
  231.  
  232. .view {
  233. width: 250px;
  234. height: 300px;
  235. margin: 10px;
  236. left: 130px;
  237. top:130px;
  238. border: 10px solid {color:Sidebar Border};
  239. overflow: hidden;
  240. position: fixed;
  241. text-align: center;;
  242. cursor: default;
  243. background: {color:Sidebar} no-repeat center center;
  244. }
  245. .view .mask,.view .content {
  246. width: 250px;
  247. height: 300px;
  248. position: absolute;
  249. overflow: hidden;
  250. top: 0;
  251. left: 0;
  252. }
  253. .view img {
  254. display: block;
  255. position: relative;
  256. }
  257. .view h2 {
  258. text-transform: uppercase;
  259. color: #fff;
  260. text-align: center;
  261. position: relative;
  262. font-size: 17px;
  263. padding: 10px;
  264. background: rgba(0, 0, 0, 0.8);
  265. margin: 20px 0 0 0;
  266. }
  267. .view p {
  268. font-family: 'Roboto', sans-serif;
  269. font-size: 10px;
  270. color: #fff;
  271. position: relative;
  272. padding: 10px 20px 20px;
  273. text-align: center;
  274. }
  275. .view a.info {
  276. display: inline-block;
  277. text-decoration: none;
  278. padding: 7px 14px;
  279. background: #000;
  280. color: #fff;
  281. text-transform: uppercase;
  282. -webkit-box-shadow: 0 0 1px #fff;
  283. -moz-box-shadow: 0 0 1px #000;
  284. box-shadow: 0 0 1px #000;
  285. }
  286. .view a.info: hover {
  287. -webkit-box-shadow: 0 0 5px #fff;
  288. -moz-box-shadow: 0 0 5px #000;
  289. box-shadow: 0 0 5px #000;
  290. }
  291.  
  292. .view-fourth img {
  293. -webkit-transition: all 0.4s ease-in-out 0.2s;
  294. -moz-transition: all 0.4s ease-in-out 0.2s;
  295. -o-transition: all 0.4s ease-in-out 0.2s;
  296. -ms-transition: all 0.4s ease-in-out 0.2s;
  297. transition: all 0.4s ease-in-out 0.2s;
  298. -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  299. filter: alpha(opacity=100);
  300. opacity: 1;
  301. }
  302. .view-fourth .mask {
  303. background-color: rgba(0,0,0,0.8);
  304. -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  305. filter: alpha(opacity=0);
  306. opacity: 0;
  307. -webkit-transform: scale(0) rotate(-180deg);
  308. -moz-transform: scale(0) rotate(-180deg);
  309. -o-transform: scale(0) rotate(-180deg);
  310. -ms-transform: scale(0) rotate(-180deg);
  311. transform: scale(0) rotate(-180deg);
  312. -webkit-transition: all 0.4s ease-in;
  313. -moz-transition: all 0.4s ease-in;
  314. -o-transition: all 0.4s ease-in;
  315. -ms-transition: all 0.4s ease-in;
  316. transition: all 0.4s ease-in;
  317. -webkit-border-radius: 0px;
  318. -moz-border-radius: 0px;
  319. border-radius: 0px;
  320. }
  321. .view-fourth h2 {
  322. -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  323. filter: alpha(opacity=0);
  324. opacity: 0;
  325. border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  326. background: transparent;
  327. margin: 20px 40px 0px 40px;
  328. -webkit-transition: all 0.5s ease-in-out;
  329. -moz-transition: all 0.5s ease-in-out;
  330. -o-transition: all 0.5s ease-in-out;
  331. -ms-transition: all 0.5s ease-in-out;
  332. transition: all 0.5s ease-in-out;
  333. }
  334. .view-fourth p {
  335. -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  336. filter: alpha(opacity=0);
  337. opacity: 0;
  338. -webkit-transition: all 0.5s ease-in-out;
  339. -moz-transition: all 0.5s ease-in-out;
  340. -o-transition: all 0.5s ease-in-out;
  341. -ms-transition: all 0.5s ease-in-out;
  342. transition: all 0.5s ease-in-out;
  343. }
  344. .view-fourth a.info {
  345. -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  346. filter: alpha(opacity=0);
  347. opacity: 0;
  348. -webkit-transition: all 0.5s ease-in-out;
  349. -moz-transition: all 0.5s ease-in-out;
  350. -o-transition: all 0.5s ease-in-out;
  351. -ms-transition: all 0.5s ease-in-out;
  352. transition: all 0.5s ease-in-out;
  353. }
  354. .view-fourth:hover .mask {
  355. -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  356. filter: alpha(opacity=100);
  357. opacity: 1;
  358. -webkit-transform: scale(1) rotate(0deg);
  359. -moz-transform: scale(1) rotate(0deg);
  360. -o-transform: scale(1) rotate(0deg);
  361. -ms-transform: scale(1) rotate(0deg);
  362. transform: scale(1) rotate(0deg);
  363. -webkit-transition-delay: 0.2s;
  364. -moz-transition-delay: 0.2s;
  365. -o-transition-delay: 0.2s;
  366. -ms-transition-delay: 0.2s;
  367. transition-delay: 0.2s;
  368. }
  369. .view-fourth:hover img {
  370. -webkit-transform: scale(0);
  371. -moz-transform: scale(0);
  372. -o-transform: scale(0);
  373. -ms-transform: scale(0);
  374. transform: scale(0);
  375. -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
  376. filter: alpha(opacity=0);
  377. opacity: 0;
  378. -webkit-transition-delay: 0s;
  379. -moz-transition-delay: 0s;
  380. -o-transition-delay: 0s;
  381. -ms-transition-delay: 0s;
  382. transition-delay: 0s;
  383. }
  384. .view-fourth:hover h2,
  385. .view-fourth:hover p,
  386. .view-fourth:hover a.info {
  387. -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
  388. filter: alpha(opacity=100);
  389. opacity: 1;
  390. -webkit-transition-delay: 0.5s;
  391. -moz-transition-delay: 0.5s;
  392. -o-transition-delay: 0.5s;
  393. -ms-transition-delay: 0.5s;
  394. transition-delay: 0.5s;
  395. }
  396.  
  397. iframe#tumblr_controls{ right: 3px !important; position: fixed !important; }
  398.  
  399. .current_page,
  400. .jump_page:hover {
  401. padding: 3px 7px 3px 7px;
  402. color: {color:Text};
  403. }
  404.  
  405. .jump_page {
  406. padding: 3px 7px 3px 7px;
  407. color: {color:Background};
  408. }
  409.  
  410.  
  411.  
  412. {CustomCSS}
  413. </style>
  414.  
  415. <title>{Title}</title>
  416.  
  417. </head>
  418.  
  419. <body>
  420. <div class="content">
  421.  
  422. {block:Posts}
  423.  
  424. {block:Text}
  425. <div class="post">
  426. {block:Title}
  427. <h3><a href="{Permalink}">{Title}</a></h3>
  428. {/block:Title}
  429. {Body}
  430. </div>
  431. {/block:Text}
  432.  
  433. {block:Photo}
  434. <div class="post">
  435. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}
  436. {block:Caption}
  437. <div class="caption">{Caption}</div>
  438. {/block:Caption}
  439. </div>
  440. {/block:Photo}
  441.  
  442. {block:Photoset}
  443. <div class="post">
  444. <center>{Photoset-500}</center>
  445. {block:Caption}
  446. <div class="caption">{Caption}</div>
  447. {/block:Caption}
  448. </div>
  449. {/block:Photoset}
  450.  
  451. {block:Quote}
  452. <div class="post">
  453. <span class="quote">"{Quote}"</span>
  454. {block:Source}
  455. <div class="source">- {Source}</div>
  456. {/block:Source}
  457. </div>
  458. {/block:Quote}
  459.  
  460. {block:Link}
  461. <div class="post">
  462. <center><a href="{URL}" class="link" {Target}>{Name} &#8594;</a></center>
  463. {block:Description}
  464. <div class="description">{Description}</div>
  465. {/block:Description}
  466. </div>
  467. {/block:Link}
  468.  
  469. {block:Chat}
  470. <div class="post">
  471. {block:Title}
  472. <h3><a href="{Permalink}">{Title}</a></h3>
  473. {/block:Title}
  474. <ul class="chat">
  475. {block:Lines}
  476. <li class="{Alt} user_{UserNumber}">
  477. {block:Label}
  478. <span class="label">{Label}</span>
  479. {/block:Label}
  480. {Line}
  481. </li>
  482. {/block:Lines}
  483. </ul>
  484. </div>
  485. {/block:Chat}
  486.  
  487. {block:Video}
  488. <div class="post">
  489. <center>{Video-500}</center>
  490. {block:Caption}
  491. <div class="caption">{Caption}</div>
  492. {/block:Caption}
  493. </div>
  494. {/block:Video}
  495.  
  496. {block:Answer}
  497. <div class="ask">{Asker} <b>sent:</b> {Question}</div>
  498. {Answer}
  499. {/block:Answer}
  500.  
  501. {block:Audio}
  502. <div class="post">
  503. {AudioPlayerWhite}
  504. {block:Caption}
  505. <div class="caption">{Caption}</div>
  506. {/block:Caption}
  507. </div>
  508. {/block:Audio}
  509.  
  510. <div id="date">
  511. {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}
  512. </div>
  513. <div id="mumbojumbo">
  514. {block:HasTags}{block:Tags}<a href="{TagURL}"> #{Tag}</a> {/block:Tags}{/block:HasTags}
  515. </div>
  516.  
  517. {block:PermalinkPage}
  518. {block:PostNotes}
  519. <div id="note">{PostNotes}</div>
  520. {/block:PostNotes}
  521. {/block:permalinkpage}
  522.  
  523. {block:ContentSource}
  524. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  525. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  526. {/block:SourceLogo}
  527. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  528. {/block:ContentSource}
  529.  
  530. {/block:Posts}
  531.  
  532. <p align="center">
  533.  
  534. {block:PreviousPage}<a href="{PreviousPage}">&larr; </a>{/block:PreviousPage}
  535.  
  536. {block:JumpPagination length="5"}
  537.  
  538. {block:CurrentPage}
  539.  
  540. <span class="current_page">{PageNumber}</span>
  541.  
  542. {/block:CurrentPage}
  543.  
  544. {block:JumpPage}
  545.  
  546. <a class="jump_page" href="{URL}">{PageNumber}</a>
  547.  
  548. {/block:JumpPage}
  549.  
  550. {/block:JumpPagination}
  551.  
  552. {block:NextPage}<a href="{NextPage}"> &rarr;</a>{/block:NextPage}
  553.  
  554. </div>
  555.  
  556. <div id="navigation">
  557. <a href="/" class="nav">HOME</a>
  558. <a href="/ask" class="nav">ASK</a>
  559. {block:ifTITLE1}<a href="{text:URL1}" class="nav">{text:TITLE1}</a>{/block:ifTITLE1}
  560. {block:ifTITLE3}<a href="{text:URL2}" class="nav">{text:TITLE2}</a>{/block:ifTITLE3}
  561. {block:ifTITLE2}<a href="{text:URL3}" class="nav">{text:TITLE3}</a>{/block:ifTITLE2}
  562. {block:ifTITLE4}<a href="{text:URL4}" class="nav">{text:TITLE4}</a>{/block:ifTITLE4}
  563. <a href="http://nutellamonkeys.tumblr.com/" class="nav">(c)</a>
  564. </div>
  565.  
  566. <div class="view view-fourth">
  567. <img src="{image:Sidebar}" width="100%" height="100%"/>
  568. <div class="mask">
  569. <h2><div class="title">{Title}</div></h2>
  570. <p>{block:Description}{Description}{/block:Description}</p>
  571. </div>
  572. </div>
  573. </div>
  574. </body>
  575. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement