Advertisement
septaaa

03. ほとんど 00:004 AM Theme

Feb 4th, 2014
690
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.22 KB | None | 0 0
  1. <!--
  2.  
  3.  
  4. oOo oOo. o o .o.oo. oOo. Oo Ooo.
  5. 0 0 0 0 0 0 00 0 0 00 0 0
  6. 0 0 0 0 0 0 00 0 0 00 0 0
  7. 0 0 ooo' 0 0 00 ooo' 00 ooo'
  8. 0 0 0 0 0 00 0 00 0
  9. o00 0 0o0 00 0 00 0o.
  10. 03. ほとんど 00:004 AM theme by septa (opurple@tumblr)
  11. DO NOT CROP CREDIT. but feel free to twinked (as long as you let the credit stay)
  12. //opurple.tumblr.com//
  13. -->
  14.  
  15. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  16. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  17. <head><title>{Title}</title>
  18. <link rel="shortcut icon" href="{Favicon}">
  19. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  20. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  21.  
  22.  
  23.  
  24. <meta name="color:Background" content="#ffffff"/>
  25. <meta name="color:Text" content="#838282"/>
  26. <meta name="color:description Text" content="#838282"/>
  27. <meta name="color:description bg" content="#ffffff"/>
  28. <meta name="color:title" content="#838282"/>
  29. <meta name="color:title hover" content="#dddddd"/>
  30. <meta name="color:Link" content="#aaaaaa"/>
  31. <meta name="color:linkhover" content="#cccccc"/>
  32. <meta name="color:bg link" content="#f4f4f4"/>
  33. <meta name="color:bold" content="#cecece">
  34. <meta name="color:border" content="#cecece">
  35. <meta name="color:date bg" content="#cecece">
  36. <meta name="color:asker bg" content="#f5f5f5">
  37. <meta name="color:Scrollbar" content="#4b4b4b" />
  38.  
  39.  
  40. <meta name="if:Show Caption" content="0"/>
  41. <meta name="if:tinycursor" content="1" />
  42. <meta name="if:fadeimghover" content="1" />
  43.  
  44.  
  45. <meta name="image:topbar" content=""/>
  46.  
  47. <meta name="text:opupdate title" content="status"/>
  48. <meta name="text:opuptext title" content="hello" />
  49. <meta name="text:opuptext" content="spread your words here!" />
  50. <meta name="text:Link3" content="" />
  51. <meta name="text:Link3 url" content="/" />
  52. <meta name="text:Link4" content="" />
  53. <meta name="text:Link4 url" content="/" />
  54. <meta name="text:link5" content=""/>
  55. <meta name="text:link5 url" content="/"/>
  56. <meta name="text:link6" content=""/>
  57. <meta name="text:link6 url" content="/"/>
  58.  
  59.  
  60. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  61. <script type="text/javascript" src="http://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
  62. <script>
  63. (function($){
  64. $(document).ready(function(){
  65. $("[title]").style_my_tooltips();
  66. });
  67. })(jQuery);
  68. </script>
  69.  
  70.  
  71. <script>
  72.  
  73.  
  74.  
  75. $(document).ready(function() {
  76.  
  77. //
  78.  
  79.  
  80.  
  81. //When you click on a link with class of poplight and the href starts with a #
  82.  
  83. $('a.poplight[href^=#]').click(function() {
  84.  
  85. var popID = $(this).attr('rel'); //Get Popup Name
  86.  
  87. var popURL = $(this).attr('href'); //Get Popup href to define size
  88.  
  89.  
  90.  
  91. //Pull Query & Variables from href URL
  92.  
  93. var query= popURL.split('?');
  94.  
  95. var dim= query[1].split('&');
  96.  
  97. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  98.  
  99.  
  100.  
  101. //Fade in the Popup and add close button
  102.  
  103. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://tiny.cc/closeimg" class="btn_close" title="Close Window" alt="Close" /></a>');
  104.  
  105.  
  106. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  107.  
  108. var popMargTop = ($('#' + popID).height() + 80) / 2;
  109.  
  110. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  111.  
  112.  
  113.  
  114. //Apply Margin to Popup
  115.  
  116. $('#' + popID).css({
  117.  
  118. 'margin-top' : -popMargTop,
  119.  
  120. 'margin-left' : -popMargLeft
  121.  
  122. });
  123.  
  124.  
  125.  
  126. //Fade in Background
  127.  
  128. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  129.  
  130. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  131.  
  132.  
  133.  
  134. return false;
  135.  
  136. });
  137.  
  138.  
  139. //Close Popups and Fade Layer
  140.  
  141. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  142.  
  143. $('#fade , .popup_block').fadeOut(function() {
  144.  
  145. $('#fade, a.close').remove(); //fade them both out
  146.  
  147. });
  148.  
  149. return false;
  150.  
  151. });
  152.  
  153. });
  154.  
  155. </script>
  156.  
  157.  
  158.  
  159.  
  160. <style type="text/css">
  161.  
  162.  
  163.  
  164. #s-m-t-tooltip {
  165. display: block;
  166. font-size: 11px;
  167. font-family: calibri;
  168. letter-spacing: 1px;
  169. text-transform: lowercase;
  170. color: #aaa;
  171. text-align: center;
  172. margin-left: 18px;
  173. padding: 5px;
  174. min-width: 40px;
  175. max-width: 200px;
  176. z-index: 99999;
  177. }
  178.  
  179. #fade {
  180. display: none;
  181. background: #000;
  182. position: fixed;
  183. left: 0;
  184. top: 0;
  185. width: 100%;
  186. height: 100%;
  187. opacity: .80;
  188. z-index: 9999;
  189. }
  190.  
  191. .popup_block{
  192. display: none;
  193. background: #FFFFFF;
  194. padding: 20px;
  195. float: left;
  196. position: fixed;
  197. top: 50%;
  198. left: 50%;
  199. z-index: 99999;
  200. }
  201.  
  202. img.btn_close {
  203. float: right;
  204. margin: -7px -5px 0 0;
  205. }
  206.  
  207. *html #fade {
  208. position: absolute;
  209. }
  210.  
  211. *html .popup_block {
  212. position: absolute;
  213. }
  214.  
  215.  
  216. iframe#tumblr_controls {right:3px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.2;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  217.  
  218. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 1;-webkit-transition: all 0.5s ease-out;-moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;}
  219.  
  220. {block:iffadeimghover}
  221.  
  222. img {
  223. opacity:1;
  224. transition:0.4s; -o-transition-transition:0.4s; -webkit-transition-duration:0.4s; -moz-transition-duration:0.4s;
  225. }
  226.  
  227. img:hover {
  228. opacity:.75;
  229. transition:0.4s; -o-transition-transition:0.4s; -webkit-transition-duration:0.4s; -moz-transition-duration:0.4s;
  230. }
  231.  
  232. {/block:iffadeimghover}
  233. ::-webkit-scrollbar-thumb{
  234. background-color: {color:scrollbar};
  235. border: 2px solid {color:background};
  236. height:auto;
  237. }
  238.  
  239. ::-webkit-scrollbar {
  240. height:auto;
  241. width:9px;
  242. background-color: {color:scrollbar};
  243. border: 4px solid {color:background};
  244. }
  245.  
  246. {block:iftinycursor}
  247.  
  248. body, a, a:hover{
  249. cursor: url('http://24.media.tumblr.com/tumblr_mdig6jktic1riysloo1_100.png'), progress;
  250. }
  251.  
  252. {/block:iftinycursor}
  253. body {
  254. background:{color:background};
  255. margin:0px;
  256. color:{color:text};
  257. font-family:helvetica;
  258. text-align:justify;
  259. letter-spacing:1px 2px;
  260. font-size:11px;
  261. line-height:200%;
  262. }
  263.  
  264. a {
  265. color:{color:link};
  266. text-decoration: none;
  267. }
  268.  
  269. a:hover {
  270. color:{color:linkhover};
  271. transition-duration: 0.9s;
  272. -moz-transition-duration: 0.9s;
  273. -webkit-transition-duration: 0.9s;
  274. -o-transition-duration: 0.9s;
  275.  
  276.  
  277. }
  278.  
  279. img {
  280. border:none;
  281. }
  282.  
  283. blockquote {
  284. padding-left:5px;
  285. border-left:2px solid;
  286. }
  287.  
  288. blockquote blockquote {
  289. padding-left:5px;
  290. border-left:2px solid;
  291. }
  292.  
  293. h1 {
  294. font-size:15px;
  295. }
  296.  
  297. b, strong {
  298. color:{color:bold};
  299. font-weight:bold;
  300. }
  301.  
  302.  
  303.  
  304. #entries {
  305. padding:10px;
  306. width:400px;
  307. margin-left:400px;
  308. margin-top:200px;
  309.  
  310. }
  311.  
  312.  
  313.  
  314.  
  315. #post {
  316. width:400px;
  317. margin-top:30px;
  318. padding:7px;
  319. }
  320.  
  321.  
  322.  
  323. #header {
  324. background-color:{color:background};
  325. width:420px;
  326. height:auto;
  327. padding:20px;
  328. margin-left:385px;
  329. top:50px;
  330. position:absolute;
  331. }
  332.  
  333. #title{
  334. margin-left:10px;
  335. width:400px;
  336. font-family: 'times new roman';
  337. font-size:35px;
  338. text-align:right;
  339. margin-top:0px;
  340. color:{color:title};
  341. padding:2px;
  342. letter-spacing:1px;
  343. border-bottom:1px solid{color:border};
  344. }
  345.  
  346. #title a{
  347. line-height:100%;
  348. margin-top:0px;
  349. color:{color:title};
  350. -moz-transition-duration:.7s;
  351. -webkit-transition-duration:.7s;
  352. -o-transition-duration:.7s;
  353. }
  354.  
  355. #title a:hover{
  356. color:{color:title hover};
  357. -moz-transition-duration:.4s;
  358. -webkit-transition-duration:.4s;
  359. -o-transition-duration:.4s;
  360. }
  361. #topbar-image {
  362. width:400px;
  363. height:auto;
  364. margin-top:-35px;
  365. margin-left:10px;
  366. }
  367.  
  368. #topbar-image img{
  369. width:60px;
  370. height:60px;
  371. border-radius:100%;
  372. padding:10px solid{color:border};
  373. }
  374.  
  375. #description {
  376. padding:0px 5px;
  377. width:380px;
  378. height:auto;
  379. font-size:10px;
  380. font-family:helvetica;
  381. padding-top:9px;
  382. color: {color:description text};
  383. letter-spacing:0px;
  384. margin-left:15px;
  385. line-height:150%;
  386. margin-top:0px;
  387. text-align:justify;
  388.  
  389. }
  390. #pagination {
  391. margin-left:10px;
  392. width:400px;
  393. margin-top:0px;
  394. font-size:9px;
  395. padding:2px;
  396. text-transform:uppercase;
  397. text-align:right;
  398. border-bottom:1px solid{color:border};
  399. }
  400.  
  401.  
  402.  
  403. #info {
  404. width:390px;
  405. padding:5px;
  406. font-size:7px;
  407. color:{color:link};
  408. margin-top:10px;
  409. margin-bottom:5px;
  410. text-transform:uppercase;
  411. letter-spacing:2px;
  412. text-align:center;
  413. }
  414.  
  415. #question {
  416. padding:10px;
  417. margin-left:6px;
  418. text-align:left;
  419. color:{color:text};
  420. line-height:150%;
  421. background-color:{color:asker bg};
  422. }
  423.  
  424.  
  425. #question img {
  426. margin-left:-2px;
  427. margin-bottom:-6px;
  428. padding:1px;
  429. background-color:#fff;
  430. border:1px solid #000;
  431. border-radius:90%;
  432. }
  433.  
  434. #answer {
  435. text-align:left;
  436. padding:10px;
  437. color:{color:text};
  438. }
  439.  
  440. #quote {
  441. font-family:'cambria';
  442. font-size: 17px;
  443. font-style:italic;
  444. text-align:center;
  445. line-height: 100%;
  446. }
  447.  
  448. #links {
  449. margin-top:-25px;
  450. margin-left:10px;
  451. width:400px;
  452. font-size:10px;
  453. text-align:right;
  454. font-family:helvetica;
  455. text-transform:lowercase;
  456. letter-spacing:1px;
  457. position:absolute;
  458.  
  459. }
  460.  
  461. #links a {
  462.  
  463. background:{color:bg link};
  464. padding:1px 2px;
  465. color:{color:link};
  466. width:absolute;
  467. margin-top:0px;
  468. text-align:center;
  469. display:inline-block;
  470. opacity:0.95;
  471.  
  472. transition-duration: 0.9s;
  473. -moz-transition-duration: 0.9s;
  474. -webkit-transition-duration: 0.9s;
  475. -o-transition-duration: 0.9s;
  476. }
  477.  
  478. #links a:hover {
  479.  
  480. text-decoration:underline;
  481. color: {color:linkhover};
  482. transition-duration: 0.9s;
  483. -moz-transition-duration: 0.9s;
  484. -webkit-transition-duration: 0.9s;
  485. -o-transition-duration: 0.9s;
  486.  
  487.  
  488. }
  489.  
  490. #tags {
  491. margin-top:-10px;
  492. font-size:8px;
  493. text-align:right;
  494. padding:5px;
  495. letter-spacing:1px;
  496.  
  497.  
  498. }
  499.  
  500.  
  501. #tags a:hover {
  502. transition-duration: 0.9s;
  503. -moz-transition-duration: 0.9s;
  504. -webkit-transition-duration: 0.9s;
  505. -o-transition-duration: 0.9s;
  506.  
  507. }
  508.  
  509. #jongin {
  510. position:fixed;
  511. right:10px;
  512. bottom:0px;
  513. font-size:9px;
  514. color:#fff;
  515. background:#000;
  516. text-transform:uppercase;
  517. border:1px solid{color:border};
  518. padding:1px 5px;}
  519.  
  520.  
  521.  
  522. #opupdates {
  523. position:fixed;
  524. color:{color:opupdates};
  525. left:10px;
  526. top:10px;
  527. font-size:10px;
  528. padding:5px;
  529. text-transform:uppercase;
  530. border:1px solid {color:border}; padding: 1px 2px 1px 2px;}
  531.  
  532.  
  533.  
  534.  
  535. #date {
  536. background-color:{color:background};
  537. display:inline-block; padding: 2px 10px 3px;
  538. color:#ffffff;
  539. }
  540.  
  541. #container-bottom-left {
  542. position:fixed;
  543. left:0px;
  544. bottom:0px;
  545. z-index:999;
  546. }
  547.  
  548. #container-bottom-left:hover #text-bottom-left {
  549. opacity:1;
  550. -webkit-transition: all .7s ease-in-out;
  551. -moz-transition: all .7s ease-in-out;
  552. -o-transition: all .7s ease-in-out;
  553. }
  554.  
  555.  
  556.  
  557.  
  558. {CustomCSS}</style></head><body>
  559.  
  560.  
  561. <div id="header">
  562. <div id="title"><a href="/">{title}</a></div>
  563. <div id="topbar-image"><img src="{image:topbar}"/></div>
  564. <div id="links">
  565. <a href="/">home</a>
  566. <a href="/ask">mail</a>
  567. {block:ifLink3}<a href="{text:Link3 url}">{text:Link3}</a>{/block:ifLink3}
  568. {block:ifLink4}<a href="{text:Link4 url}">{text:Link4}</a>{/block:ifLink4}
  569. {block:ifLink5}<a href="{text:Link5 url}">{text:Link5}</a>{/block:ifLink5}
  570. {block:ifLink6}<a href="{text:Link6 url}">{text:Link6}</a> {/block:ifLink6}
  571. </div>
  572. <div id="description">{Description}</div>
  573. <div id="pagination"> {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">prev</a> {/block:PreviousPage}{block:NextPage} — <a href="{NextPage}">next</a>{/block:NextPage}{/block:Pagination}<p></p></div>
  574. </div>
  575. </div>
  576.  
  577. <div id="entries">{block:Posts}<div id="post">
  578.  
  579.  
  580.  
  581. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  582.  
  583. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{/block:Photo}
  584.  
  585. {block:Photoset}{Photoset-400}{/block:Photoset}
  586.  
  587. {block:Quote}
  588. <div id="quote">❝ {Quote} ❞<br><small><small>—{Source}</small></small></div>
  589. {/block:Quote}
  590.  
  591.  
  592.  
  593. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  594.  
  595. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  596.  
  597. {block:Audio}{AudioPlayerWhite}{/block:Audio}
  598.  
  599. {block:Video}{Video-400}{/block:Video}
  600.  
  601. {block:Answer}<div id="question"><img src="{AskerPortraitURL-16}"> {Asker}: {Question}</div><div id="answer">{Answer}</div>{/block:answer}
  602.  
  603. {block:IfShowCaption}{block:Caption}{Caption}{/block:Caption}{/block:IfShowCaption}
  604.  
  605. {block:IfNotShowCaption}{block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{block:PermalinkPage}{/block:IfNotShowCaption}{/block:Photo}
  606.  
  607. {block:Date}<div id="info"><div id="date">{ShortMonth}-{DayOfMonthWithZero}</div> - <a href="{Permalink}">{24Hour}:{Minutes}</a>{block:NoteCount} - <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}{block:RebloggedFrom} - <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  608. {block:ContentSource} - <a href="{SourceURL}">{SourceLink}</a>{/block:ContentSource} - <a href={ReblogURL} target=_blank class=details>Reblog</a></div>{/block:Date}
  609. {block:HasTags}
  610. <div id="tags">
  611. {block:Tags}<a href="{TagURL}"> {Tag},</a>{/block:Tags}</div>
  612. {/block:HasTags}
  613. {block:PostNotes}{PostNotes}{/block:PostNotes}
  614.  
  615. </div>
  616.  
  617.  
  618.  
  619. {/block:Posts}
  620.  
  621. <!-- DO NOT CROP!!! -->
  622. <div id="jongin"><a href="http://opurple.tumblr.com" title="codes by opurple">OP</a></div>
  623.  
  624. <div id="opupdates"><a href="#?w=400" rel="opurple_pop" class="poplight"for="link" title="read me">{text:opupdate title}</a></div>
  625.  
  626. <div id="opurple_pop" class="popup_block">
  627. <center>
  628. <h2>{text:opuptext title}</h2>
  629. <p></p>
  630. <p>{text:opuptext}</p>
  631. </center></p>
  632. <p><!-- keep it stay -->
  633. <div style=”text-align:right;”><a href="http://opurple.tumblr.com/tutorials">©</a></div></p>
  634. </div>
  635. </div></div></div></div></div></div></div></div></div></div>
  636.  
  637.  
  638. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement