Advertisement
SeoulChan

Tea

Feb 16th, 2015
703
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 15.75 KB | None | 0 0
  1. <!--
  2.  _         _             _    
  3. | |       (_)           | |  
  4. | | ____ _ _  __ _ _   _| | __
  5. | |/ / _` | |/ _` | | | | |/ /
  6. |   < (_| | | (_| | |_| |   <
  7. |_|\_\__,_|_|\__, |\__,_|_|\_\
  8.               __/ |          
  9.              |___/
  10. Tea theme by Kaiguk (http://kaiguk.tumblr.com/)
  11.  
  12. Okay look, you should understand to follow the rules by not claiming this theme as yours, using as a base, moving the credit , combining shit from others and mine to make your own, or editing to make it look like I didn't make the shit, but I did.
  13.  
  14. Making themes is hard work, so I don't need you or anyone else fucking up my ideas because you don't have a brain of your own. Are you that lazy to use actual base codes and learn to make themes? Damn, that's a shame.
  15.  
  16. Anyways, to everyone that is actually going to put good use of this theme, happy using.
  17.  
  18. If you have any questions, please ask me ^^
  19.  
  20. -->
  21.  
  22. <!DOCTYPE html>
  23.  
  24. <head>
  25.  
  26. <title>{Title}</title>
  27.  
  28. <link rel="shortcut icon" href="{Favicon}">
  29.  
  30. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  31.  
  32. {block:Description}
  33. <meta name="description" content="{MetaDescription}" />
  34. {/block:Description}
  35.  
  36.     <meta name="if:ShowCaptions" content="0"/>
  37.     <meta name="if:ShowTags" content="0"/>
  38.     <meta name="if:InfiniteScroll" content="0"/>
  39.     <meta name="if:ImageOpacity" content="0"/>
  40.     <meta name="color:bold" content="#ff7d7d"/>
  41.     <meta name="color:italic" content="#c3d847"/>
  42.     <meta name="color:underline" content="#4dbce9"/>
  43.     <meta name="color:bg" content="#ffffff"/>
  44.     <meta name="color:text" content="#000000"/>
  45.     <meta name="color:link" content="#000000"/>
  46.     <meta name="color:links bg" content="#000000"/>
  47.     <meta name="color:hover" content="#ddd"/>
  48.     <meta name="color:desc bg" content ="#000000"/>
  49.     <meta name="color:desc text" content ="#ffffff"/>
  50.     <meta name="color:border" content="#000000"/>
  51.     <meta name="color:blockquote color" content="#000000"/>
  52.     <meta name="color:caption bg" content="#fbfbfb"/>
  53.     <meta name="color:caption border" content="#f6f6f6"/>
  54.     <meta name="color:caption" content="#cccccc"/>
  55.     <meta name="color:scrollbar" content="#6b6d6d"/>
  56.     <meta name="color:linktitlebg" content="#eeeeee"/>
  57.     <meta name="color:linktitletext" content="#888888"/>
  58.     <meta name="color:selection bg" content="#888888"/>
  59.     <meta name="color:selection text" content="#888888"/>
  60.  
  61.    
  62.    
  63.     <meta name="image:bg" content=""/>
  64.     <meta name="image:sidebar" content=""/>
  65.     <meta name="image:totop" content=""/>
  66.  
  67.     <meta name="text:Link 1 URL" content="" />
  68.     <meta name="text:Link 1" content="link 1" />
  69.     <meta name="text:Link 2 URL" content="" />
  70.     <meta name="text:Link 2" content="link 2" />
  71.     <meta name="text:Link 3 URL" content="" />
  72.     <meta name="text:Link 3" content="link 3" />
  73.     <meta name="text:Link 4 URL" content="" />
  74.     <meta name="text:Link 4" content="link 4" />
  75.     <meta name="text:Link 5 URL" content="" />
  76.     <meta name="text:Link 5" content="link 5" />
  77.     <meta name="text:Link 6 URL" content="" />
  78.     <meta name="text:Link 6" content="link 6" />
  79.     <meta name="text:Link 7 URL" content="" />
  80.     <meta name="text:Link 7" content="link 7" />
  81.    
  82.    
  83.    
  84.    
  85. <style type="text/css">
  86.  
  87. ::-webkit-scrollbar-thumb {
  88.     height:auto;
  89.     background-color:{color:scrollbar};
  90. }
  91.  
  92. ::-webkit-scrollbar {
  93.     height:4px;
  94.     width:8px;
  95.     padding-right:2px;
  96.     background-color:{color:background};
  97. }
  98.  
  99.  
  100. body {
  101.     color:{color:text};
  102.     font-family:courier;
  103.     font-size:11px;
  104.     line-height:200%;
  105.     background-color: {color:bg};
  106.     background-image:url('{image:bg}');
  107.     background-attachment:fixed;
  108. }
  109.    
  110. a {
  111.     text-decoration:none;
  112.     outline:none;
  113.     -moz-outline-style:none;
  114.     color:{color:link};
  115.     -moz-transition-duration:0.8s;
  116.     -webkit-transition-duration:0.8s;
  117.     -o-transition-duration:0.8s;
  118. }
  119.  
  120. a:hover {
  121.     color:{color:hover};
  122.     outline:none;
  123.     -moz-outline-style:none;
  124.     text-decoration:none;
  125. }
  126.  
  127. b,strong{
  128.     color:{color:bold};
  129. }
  130.  
  131. i,em{
  132.     color:{color:italic};
  133. }
  134.  
  135. u{
  136.     color:{color:underline};
  137. }
  138.  
  139.  
  140. {block:IfImageOpacity}
  141.   img{  
  142.     opacity:0.8;
  143.     -moz-outline-style:none;
  144.     -moz-transition-duration:0.8s;
  145.     -webkit-transition-duration:0.8s;
  146.     -o-transition-duration:0.8s;
  147. }
  148.  
  149. img:hover{
  150.     opacity:1;
  151.      -moz-outline-style:none;
  152.     -moz-transition-duration:0.8s;
  153.     -webkit-transition-duration:0.8s;
  154.     -o-transition-duration:0.8s;
  155. }
  156. {block:IfImageOpacity}
  157.  
  158.  
  159. blockquote {
  160.     padding-left:5px;
  161.     border-left:2px solid {color:blockquote color};
  162. }
  163.  
  164. blockquote blockquote {
  165.     padding-left:5px;
  166.     border-left:2px solid;
  167. }
  168.  
  169. h1 {
  170.     font-size:20px;
  171.     text-align:center;
  172.     font-family:courier;
  173.     letter-spacing:1px;
  174.     color:{color:text};
  175. }
  176.  
  177.  
  178. #head {
  179.     top:0px;
  180.     left:350px;
  181.     width:100px;
  182.     height:1000%;
  183.     background:{color:links bg};
  184.     position:fixed;
  185. }
  186.    
  187. #sidebar {
  188.     top:0px;
  189.     left:0px;
  190.     position:fixed;
  191.     width:350px;
  192.     height:100%;
  193. }
  194.  
  195. #sidebarimage {
  196.     position:fixed;
  197.     margin-top:200px;
  198.     margin-left:100px;
  199.     width:200px;
  200. }
  201.  
  202.  
  203. #sidebarimage img {
  204.     width:200px;
  205.     margin-left:-11px;
  206.     margin-top:0px;
  207.     border-radius: 100px 0 0 0;
  208.     -moz-border-radius: 100px 0 0 0;
  209.     -webkit-border-radius: 100px 0 0 100;
  210. }
  211.  
  212. #links {
  213.     width:100px;
  214.     margin-top:90px;
  215.     margin-left:-17px;
  216.     padding:5px;
  217.     text-align:left;
  218.     word-spacing:1px;
  219.     font-size:9px;
  220.     font-weight:bold;
  221.     color:{color:link};
  222. }
  223.  
  224. #links a {
  225.     width:90px;
  226.     font-size:30px;
  227.     font-style:italic;
  228.     font-family:cambria;
  229.     margin-bottom:60px;
  230.     margin-left:40px;
  231.     letter-spacing: 1px;
  232.     padding:3px;
  233.     display:inline-block;
  234.  
  235. }
  236.  
  237. #links a:hover {
  238.     color:{color:hover};
  239. }
  240.  
  241. #description {
  242.     width:200px;
  243.     font-size:9.5px;
  244.     text-transform:uppercase;
  245.     text-align:justify;
  246.     line-height:120%;
  247.     letter-spacing:1px;
  248.     word-spacing:1px;
  249.     margin-left:-14px;
  250.     margin-top:5%;
  251.     padding:5px;
  252. }
  253.  
  254. .desc{
  255.    line-height:180%;
  256.    background:{color:desc BG};
  257.    color:{color:desc text};
  258. }
  259.  
  260. #s-m-t-tooltip {
  261.     z-index: 9999;
  262.     background: {color:LinkTitleBG};
  263.     font-size: 11px;
  264.     line-height: 11px;
  265.     font-family:courier;
  266.     letter-spacing: 1px;
  267.     text-transform: uppercase;
  268.     color: {color:LinkTitleText};
  269.     max-width: 150px;
  270.     word-wrap: break-word;
  271.     padding: 6px;
  272.     display: block;
  273.     margin: 24px 14px 7px 12px;
  274.     -webkit-box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.10);
  275.     -moz-box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.10);
  276.     box-shadow: 2px 2px 2px rgba(50, 50, 50, 0.10);
  277. }
  278.  
  279. {block:IfNotInfiniteScroll}
  280. #pagination {
  281.     width:200px;
  282.     float:right;
  283.     margin-left: 10px;
  284.     margin-top: 20px;
  285.     position: relative;
  286.     text-align: center;
  287.     letter-spacing:1px;
  288.     text-transform: lowercase;
  289.     font-weight:bold;
  290.     font-family: courier;
  291.     font-size: 11px;
  292.     position:fixed;
  293. }
  294.  
  295. #pagination a {
  296.    padding:5px;
  297. }
  298. {/block:IfNotInfiniteScroll}
  299.  
  300. #entries {
  301.     padding:30px;
  302.     width:500px;
  303.     margin-left:435px;
  304.     margin-bottom: -20px;
  305. }
  306.  
  307. #post {
  308.     width:500px;
  309.     margin-top:20px;
  310.     margin-bottom:50px;
  311.     background:#fff;
  312.     border:1px solid #eee;
  313.     padding:30px;
  314. }
  315.  
  316. #post img{
  317.     max-width:500px;
  318. }
  319.  
  320. {block:IfShowCaptions}
  321. #captions {
  322.    margin-top: 10px;
  323.    padding:5px;
  324.    text-align:left;
  325.    background: {color:Caption bg};
  326.    border: 1px solid {color:Caption border};
  327.    color:{color:Caption};
  328. }
  329. {/block:IfShowCaptions}
  330.  
  331. {block:IfNotShowCaptions}
  332. #captions {
  333.    display:none;
  334. }
  335. {/block:IfNotShowCaptions}
  336.  
  337. .postinfo {
  338.     width:500px;
  339.     text-align:center;
  340.     font-family:courier;
  341.     font-size:9.5px;
  342.     text-transform:uppercase;
  343.     margin-top:20px;
  344.     margin-bottom:1px;
  345.     margin-left:-12px;
  346.     padding-bottom:4px;
  347.     }
  348.  
  349. .postinfo a {
  350.     color:{color:link};
  351.     }
  352.    
  353. .postinfo a:hover {
  354.     color:{color:hover};
  355.     }
  356.    
  357. {block:IfShowTags}
  358. .tags {
  359.     font-size:9.5px;
  360.     font-family:courier;
  361.     text-transform:uppercase;
  362.     letter-spacing:1px;
  363.     text-align:left;  
  364. }
  365.    
  366. {/block:IfShowTags}
  367.    
  368. #permacon {
  369.    padding:10px;
  370.    text-align:justify;
  371.    line-height:15px;
  372.    margin-top:10px;
  373.    height:auto;
  374. }
  375.  
  376. .pagenotes {
  377.    {block:IndexPage}
  378.    display: none!important;
  379.    {/block:IndexPage}
  380.    width:500px;
  381.    text-align:left;
  382. }
  383.  
  384. .pagenotes img {
  385.    display:none!important;
  386. }
  387.  
  388. .note li {
  389.    list-style-type:none;
  390.    padding:10px 25px 10px 25px;
  391.    text-align:left;
  392.    margin:0px;
  393.    border-bottom:1px solid {color:border};
  394.    line-height:140%;
  395.    -moz-transition-duration:0.5s;
  396.    -webkit-transition-duration:0.5s;
  397.    -o-transition-duration:0.5s;
  398. }
  399.  
  400. .notes img {
  401.    display:none!important;
  402. }
  403.  
  404. ::selection {
  405.    background:{color:selection bg};
  406.    color:{color:selection text};
  407. }
  408.  
  409. #question {
  410.    width:500px;
  411.    padding-bottom:5px;
  412.    font-style:italic;
  413.    border-bottom:1px solid {color:border};
  414.    }
  415.  
  416. #asker {
  417.    width:500px;
  418.    letter-spacing:1px;
  419.    }
  420.  
  421. #scrollToTop:link, #scrollToTop:visited {
  422.    display:none;
  423.    position:fixed;
  424.    bottom: 10px;
  425.    right:10px;
  426. }
  427.  
  428. #other {
  429.    position:fixed;
  430.    background:{color:links bg};
  431.    color:{color:link};
  432.    left:10px;
  433.    bottom:10px;
  434.    text-transform:uppercase;
  435.    font-size:10px;
  436.    letter-spacing:1px;
  437.    padding:5px;
  438.    -webkit-transition: all 0.3s ease;
  439.    -moz-transition: all 0.3s ease;
  440.    -ms-transition: all 0.3s ease;
  441.    -o-transition: all 0.3s ease;
  442.    transition: all 0.3s ease;
  443. }
  444.  
  445. {CustomCSS}
  446.    
  447. </style>
  448.  
  449. {block:IfInfiniteScroll}
  450.  
  451. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  452.  
  453. {/block:IfInfiniteScroll}
  454.  
  455. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  456. <script src="http://static.tumblr.com/ikeq9mi/DfYl6o46t/scrolltotop.min.js"></script>
  457. <a href="javascript:;" id="scrollToTop"  title="top"><img src="{image:ToTop}"></a></a>    
  458.  
  459. </head>
  460.  
  461. <body>
  462.  
  463. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  464.  
  465. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  466.  
  467. <script>
  468.  
  469. (function($){
  470.  
  471. $(document).ready(function(){
  472.  
  473. $("a[title]").style_my_tooltips({
  474.  
  475. tip_follows_cursor:true,
  476.  
  477. tip_delay_time:50,
  478.  
  479. tip_fade_speed:600,
  480.  
  481. attribute:"title"
  482.  
  483. });
  484.  
  485. });
  486.  
  487. })(jQuery);
  488.  
  489. </script>  
  490.  
  491. <div id="head">
  492.  
  493. <div id="links">
  494.  
  495. {block:ifLink1}<a href="{text:link 1 URL}" title="{text:link 1}">01.</a>{/block:ifLink1}
  496. {block:ifLink2}<a href="{text:link 2 URL}" title="{text:link 2}">02.</a>{/block:ifLink2}
  497. {block:ifLink3}<a href="{text:link 3 URL}" title="{text:link 3}">03.</a>{/block:ifLink3}
  498. {block:ifLink4}<a href="{text:link 4 URL}" title="{text:link 4}">04.</a>{/block:ifLink4}
  499. {block:ifLink5}<a href="{text:link 4 URL}" title="{text:link 5}">05.</a>{/block:ifLink5}
  500. {block:ifLink6}<a href="{text:link 6 URL}" title="{text:link 6}">06.</a>{/block:ifLink6}
  501. {block:ifLink7}<a href="{text:link 7 URL}" title="{text:link 7}">07.</a>{/block:ifLink7}
  502.  
  503. </div>  
  504.  
  505. </div>
  506.  
  507. <div id="sidebar">
  508.  
  509. <div id="sidebarimage"><img src="{image:sidebar}">
  510.  
  511. <div id="description"><span class="desc">{Description}</span></div>
  512.  
  513. {block:IfNotInfiniteScroll}
  514.  
  515. <div id="pagination">
  516.  
  517. {block:Pagination}{block:PreviousPage}
  518. <a href="{PreviousPage}">«</a>
  519. {/block:PreviousPage}{block:JumpPagination length="5"}{block:CurrentPage}
  520. <span class="current_page">{PageNumber}</span>
  521. {/block:CurrentPage}{block:JumpPage}
  522. <a class="jump_page" href="{URL}">{PageNumber}</a>
  523. {/block:JumpPage}{/block:JumpPagination}{block:NextPage}
  524. <a href="{NextPage}">»</a>
  525. {/block:NextPage}{/block:Pagination}
  526.  
  527. </div>
  528.  
  529. {/block:IfNotInfiniteScroll}
  530.  
  531. </div>
  532.  
  533. </div>
  534.  
  535. <div id="entries">
  536.  
  537. <div class="autopagerize_page_element">
  538.  
  539. {block:Posts}
  540.  
  541. <div id="post">
  542.  
  543. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  544.  
  545. {block:Quote}<div style="color: {color:link}; font-size: 50px; line-height: 30px; float: left;"></div> <big><b>"{Quote}"</b></big><p></p>{Source}
  546. {/block:Quote}
  547.  
  548. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  549.  
  550. {block:Video}{Video-500}{block:IndexPage}{block:Caption}<div id="captions">{Caption}</div>{/block:Caption}{/block:IndexPage}{/block:Video}
  551.  
  552. {block:Photo}<img src="{PhotoURL-500}">
  553. {block:IndexPage}{block:Caption}<div id="captions">{Caption}</div>{/block:Caption}{/block:IndexPage}{/block:Photo}
  554.  
  555. {block:Photoset}{Photoset-500}{block:IndexPage}{block:Caption}<div id="captions">{Caption}</div>{/block:Caption}{/block:IndexPage}{/block:Photoset}
  556.  
  557. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  558.  
  559. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="150px" align="left" style="margin-right:10px;float:left;" />{/block:AlbumArt}<span class="audio">{AudioPlayerWhite}</span>
  560. {block:TrackName}<p><b><img src="http://static.tumblr.com/3yblkz0/9mQn46s61/untitled-2.png"> Title:</b> {TrackName}{/block:TrackName}
  561. {block:Artist}<p><b><img src="http://static.tumblr.com/3yblkz0/Eifn2c23d/w2.png"> Artist:</b> {Artist}{/block:Artist}
  562. <p><b><img src="http://static.tumblr.com/3yblkz0/1vDn46s6h/untitled-3.png"> Played:</b> {PlayCount} times
  563. {/block:Audio}
  564.  
  565. {block:Answer}<div id="question"><img style="float:left; background:#fff; padding:5px; margin-left:-3px; margin-top:-10px;" src="{AskerPortraitURL-48}      ">
  566. <span id="asker">{Asker} asked:<br></span>{Question}</div><div style=" width:500px; color{color:text}; font-size:11px;">{Answer}</div>{/block:Answer}
  567.  
  568. {block:Indexpage}
  569. <div class="postinfo"><a href="{Permalink}">{TimeAgo}</a>  <a href="{Permalink}">{NoteCountWithLabel}</a>      <a href="{ReblogURL}">Reblog</a>
  570.  </div>
  571. {/block:Indexpage}
  572.  
  573. {block:IfShowTags}
  574. {block:HasTags}
  575. <div class="tags">
  576. <img src="http://static.tumblr.com/3yblkz0/wfTn2c29g/tag.png"> {block:Tags}<a href="{TagURL}">#{Tag}</a> {/block:Tags}</div>
  577. {/block:HasTags}
  578. {/block:IfShowTags}
  579. {/block:Indexpage}
  580.  
  581. {block:PermalinkPage}
  582. {block:Date}
  583. <div id="permacon">
  584. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}<br>
  585. <img src="http://static.tumblr.com/3yblkz0/bWKn2c3l1/plan.png">
  586. <b>Date:</b> {ShortMonth} {DayOfMonthWithZero}, {Year}<br>
  587. {block:NoteCount}
  588. <img src="http://media.tumblr.com/9395b2e212e1433fceeb8f2fe727e88e/tumblr_inline_n2ajerV2ro1r7v6wt.png">
  589. <b>Notes:</b> {NoteCount}<br>
  590. {/block:NoteCount}
  591. {block:RebloggedFrom}
  592. <img src="http://static.tumblr.com/3yblkz0/Eifn2c23d/w2.png">
  593. <b>Via:</b> <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  594. {/block:RebloggedFrom}
  595. {block:ContentSource}
  596. <img src="http://static.tumblr.com/3yblkz0/Eifn2c23d/w2.png">
  597. <b>Source:</b> <a href="{SourceURL}">{SourceTitle}</a><br>
  598. {/block:ContentSource}
  599. {block:HasTags}
  600. <img src="http://static.tumblr.com/3yblkz0/wfTn2c29g/tag.png">
  601. <b>Tagged:</b>
  602. {block:Tags}
  603. <a href="{TagURL}">#{Tag}</a>
  604. {/block:Tags}
  605. {/block:HasTags}
  606. </div>
  607. {/block:Date}
  608. {/block:PermalinkPage}
  609.  
  610. <div class="note">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  611. </div>
  612.  
  613. {/block:Posts}
  614.  
  615. {block:ContentSource}
  616. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  617. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  618. {/block:SourceLogo}
  619. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  620. {/block:ContentSource}
  621.  
  622. </div>
  623.    
  624. </div>
  625.    
  626. </div>
  627.    
  628. </div>
  629.  
  630. </div>
  631.  
  632. <div id="other">
  633. <a href="http://kaiguk.tumblr.com/" title="theme by Ani">KG</a>
  634. </div>
  635.  
  636. </body>
  637.  
  638. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement