Advertisement
loranhale

nara

May 14th, 2019
2,981
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.08 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!---
  5.  
  6.  
  7. nara : all in one
  8.  
  9. @aaronellas
  10.  
  11.  
  12. --->
  13.  
  14. <title>{Title}</title>
  15. <link rel="shortcut icon" href="{Favicon}">
  16. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  17.  
  18. <link href="https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i|Open+Sans:400,400i,600,600i|Rubik:400,400i,600,600i" rel="stylesheet">
  19. <link href="//dl.dropbox.com/s/vpi3f9s7nhpe7v7/honeybee.css" rel="stylesheet">
  20.  
  21. <style type="text/css">
  22.  
  23. /* scrollbar */
  24.  
  25. ::-webkit-scrollbar { height:5px; width:1px; background:#fafafa; }
  26. ::-webkit-scrollbar-thumb { background:#dcecf5; }
  27.  
  28. /* tumblr controls */
  29.  
  30. iframe.tmblr-iframe {
  31. z-index:99999999999999!important;
  32. top:0!important;
  33. right:0!important;
  34. opacity:0.4;
  35. /* delete invert(1) from here */
  36. filter:invert(1) contrast(150%);
  37. -webkit-filter:invert(1) contrast(150%);
  38. -o-filter:invert(1) contrast(150%);
  39. -moz-filter:invert(1) contrast(150%);
  40. -ms-filter:invert(1) contrast(150%);
  41. /* to here if your blog has a dark background */
  42. transform:scale(0.65);
  43. transform-origin:100% 0;
  44. -webkit-transform:scale(0.65);
  45. -webkit-transform-origin:100% 0;
  46. -o-transform:scale(0.65);
  47. -o-transform-origin:100% 0;
  48. -moz-transform:scale(0.65);
  49. -moz-transform-origin:100% 0;
  50. -ms-transform:scale(0.65);
  51. -ms-transform-origin:100% 0;
  52. transition:all .6s ease;
  53. }
  54.  
  55. iframe.tmblr-iframe:hover { opacity:0.6!important; }
  56.  
  57. /* tooltips */
  58.  
  59. #s-m-t-tooltip {
  60. max-width:300px;
  61. margin:15px;
  62. padding:4px 6px;
  63. z-index:99999999;
  64. color:#000;
  65. border:1px solid #eee;
  66. background:#fafafa;
  67. }
  68.  
  69. /* body */
  70.  
  71. body {
  72. background:#fff;
  73. color:#555;
  74. letter-spacing:.5px;
  75. font-family:'lora', serif;
  76. font-size:11px;
  77. line-height:130%;
  78. -moz-osx-font-smoothing:grayscale;
  79. -webkit-font-smoothing:antialiased;
  80. font-smoothing:antialiased;
  81. }
  82.  
  83. a {
  84. color:#ff6f61; /* links */
  85. text-decoration:none;
  86. transition:all .6s ease;
  87. }
  88.  
  89. a:hover { color:#f7cac9; }
  90.  
  91. blockquote { padding-left:10px; border-left:2px solid #eee; }
  92.  
  93. h1 {
  94. font-size:15px;
  95. color:#222;
  96. font-weight:600;
  97. text-transform:uppercase;
  98. letter-spacing:1px;
  99. margin-bottom:10px;
  100. font-family:'inconsolata',monospace;
  101. }
  102.  
  103. b { font-style:bold; }
  104. i { font-style:italic; }
  105. p { margin:10px 0; }
  106.  
  107. /* container */
  108.  
  109. * {
  110. margin:0;
  111. padding:0;
  112. box-sizing:border-box;
  113. }
  114.  
  115. #container {
  116. display:flex;
  117. justify-content:center;
  118. align-items:center;
  119. min-height:100vh;
  120. }
  121.  
  122. #carousel, #navigation {
  123. flex:initial;
  124. display:block;
  125. }
  126.  
  127. #carousel {
  128. overflow:hidden;
  129. width:600px;
  130. height:390px;
  131. border-radius:2px;
  132. background:#fefefe; /* container background */
  133. border:1px solid #eee; /* border colour */
  134. }
  135.  
  136. .p-wrapper {
  137. position:relative;
  138. width:100%;
  139. height:100%;
  140. transition:transform 0.4s ease-in-out;
  141. }
  142.  
  143. #button_a:checked ~ #carousel .p-wrapper {
  144. -webkit-transform:translateY(0);
  145. transform:translateY(0);
  146. }
  147.  
  148. #button_b:checked ~ #carousel .p-wrapper {
  149. -webkit-transform:translateY(-100%);
  150. transform:translateY(-100%);
  151. }
  152.  
  153. #button_c:checked ~ #carousel .p-wrapper {
  154. -webkit-transform:translateY(-200%);
  155. transform:translateY(-200%);
  156. }
  157.  
  158. #button_d:checked ~ #carousel .p-wrapper {
  159. -webkit-transform:translateY(-300%);
  160. transform:translateY(-300%);
  161. }
  162.  
  163. #button_e:checked ~ #carousel .p-wrapper {
  164. -webkit-transform:translateY(-400%);
  165. transform:translateY(-400%);
  166. }
  167.  
  168. [class^="panel_"] {
  169. overflow:auto;
  170. position:relative;
  171. width:inherit;
  172. height:inherit;
  173. padding:48px;
  174. }
  175.  
  176. #navigation { margin-left:24px; }
  177.  
  178. [class^="label_"] {
  179. display:block;
  180. cursor:pointer;
  181. margin:8px 0;
  182. width:32px;
  183. height:32px;
  184. line-height:32px;
  185. text-align:center;
  186. border-radius:3px;
  187. color:#f0807c; /* navigation icon colour */
  188. background:#fafafa; /* navigation icon background */
  189. transition:all 0.6s ease;
  190. }
  191.  
  192. [class^="label_"]:hover {
  193. color:#000; /* navigation icon colour on hover */
  194. background:#f7cac9; /* navigation icon bg on hover */
  195. }
  196.  
  197. [class^="label_"]:hover .slide { opacity:1; }
  198.  
  199. .slide {
  200. opacity:0;
  201. position:relative;
  202. top:-33px;
  203. left:35px;
  204. padding-left:15px;
  205. color:#444; /* hovered word colour */
  206. font-size:11px;
  207. transition:opacity .6s ease;
  208. }
  209.  
  210. #button_a:checked ~ #navigation .label_a,
  211. #button_b:checked ~ #navigation .label_b,
  212. #button_c:checked ~ #navigation .label_c,
  213. #button_d:checked ~ #navigation .label_d,
  214. #button_e:checked ~ #navigation .label_e {
  215. cursor:default;
  216. color:#222; /* active tab icon colour */
  217. background:#d5e4ff; /* active tab icon background */
  218. }
  219.  
  220. #navigation .th { border:none; }
  221. nav .th, .about .th { display:inline; margin-right:10px; }
  222.  
  223. /* ABOUT SECTION */
  224.  
  225. nav { position:relative; float:left; width:34%; }
  226.  
  227. .icon { display:block; margin-bottom:10px; }
  228. .icon img { width:170px; height:auto; border-radius:2px; }
  229.  
  230. /* social media icons */
  231.  
  232. .social { position:relative; text-align:center; }
  233.  
  234. .social a { display:inline; }
  235. .social a .th {
  236. margin-right:10px;
  237. width:15px;
  238. height:15px;
  239. font-size:15px;
  240. text-align:center!important;
  241. transition:all .6s ease;
  242. }
  243.  
  244. .social a .th { margin-bottom:5px; }
  245. .social a:last-of-type { margin-right:0; }
  246. .social a .th:hover { color:#000; }
  247.  
  248. /* about tags */
  249.  
  250. .tags {
  251. border:1px solid #eee;
  252. background:#fff;
  253. padding:10px;
  254. margin-bottom:10px;
  255. }
  256.  
  257. .tags a { display:inline-block; margin-right:8px; }
  258. .tags a:before { content:'#'; margin-right:1px; }
  259.  
  260. /* right section */
  261.  
  262. .about { float:right; width:62%; }
  263.  
  264. /* title */
  265.  
  266. .title {
  267. margin-bottom:10px;
  268. font-size:13px;
  269. font-weight:600;
  270. color:#222;
  271. font-style:italic;
  272. display:inline-block;
  273. }
  274.  
  275. /* info */
  276.  
  277. .info {
  278. margin-bottom:15px;
  279. border:1px solid #eee;
  280. padding:10px;
  281. font-family:'inconsolata', monospace;
  282. font-size:12px;
  283. background:#fff;
  284. }
  285.  
  286. .info b { margin-right:5px; font-weight:600; color:#ff6f61; }
  287. .talk { margin-top:-10px; }
  288.  
  289. /* SOCIAL SECTION */
  290.  
  291. .left { float:left; width:45%; }
  292. .right { float:right; width:50%; }
  293.  
  294. h4 {
  295. border-bottom:1px solid #eee;
  296. padding-bottom:10px;
  297. margin-bottom:10px;
  298. font-weight:600;
  299. font-style:italic;
  300. font-size:13px;
  301. }
  302.  
  303. /* blogs */
  304.  
  305. .i img {
  306. float:left;
  307. width:35px;
  308. height:35px;
  309. opacity:.9;
  310. margin-right:10px;
  311. transition:all .6s ease;
  312. }
  313.  
  314. .blogs { margin-bottom:40px; }
  315. .blogs a {
  316. display:block;
  317. margin-bottom:5px;
  318. line-height:35px;
  319. word-wrap:break-word;
  320. border:1px solid #eee;
  321. background:#fafafa;
  322. }
  323.  
  324. .blogs a b { margin-right:6px; font-style:italic; color:#444; }
  325. .blogs a:hover { background:#fff; color:#000;}
  326.  
  327. /* projects */
  328.  
  329. .progress {
  330. background:#fafafa;
  331. margin-bottom:15px;
  332. margin-top:6px;
  333. }
  334.  
  335. .progress-fill {
  336. border-radius:3px;
  337. display:block;
  338. height:5px;
  339. background:#ffd9d9;
  340. }
  341.  
  342. /* updates */
  343.  
  344. .updates { margin-bottom:40px; }
  345. .up b, .current b { font-family:'inconsolata', monospace; }
  346. .current { margin-bottom:10px; }
  347. .current b { font-weight:600; margin-right:5px; }
  348.  
  349. /* quote */
  350.  
  351. .quote { font-style:italic; font-size:15px; }
  352. .quote .th {
  353. width:20px;
  354. float:left;
  355. margin-right:10px;
  356. font-size:20px;
  357. color:#222;
  358. }
  359.  
  360. .txt { float:right; width:calc(100% - 30px); }
  361.  
  362. /* ASK SECTION */
  363.  
  364. .faq { display:block; margin-bottom:10px; }
  365. .faq a { font-weight:600; }
  366.  
  367. .q {
  368. margin-right:6px;
  369. display:inline;
  370. font-weight:600;
  371. font-style:none;
  372. color:#444;
  373. font-family:'inconsolata',monospace;
  374. }
  375.  
  376. /* TAGS SECTION */
  377.  
  378. .box { padding-bottom:10px; }
  379. .box:last-of-type { border-bottom:0; }
  380.  
  381. .tt {
  382. font-size:12px;
  383. font-weight:600;
  384. color:#222; /* tags title */
  385. word-wrap:break-word;
  386. display:inline;
  387. margin-right:10px;
  388. font-family:'inconsolata', monospace;
  389. }
  390.  
  391. .t { display:inline; }
  392. .t a {
  393. display:inline-block;
  394. margin-right:10px;
  395. line-height:20px;
  396. font-weight:400;
  397. font-size:10.5px;
  398. color:#91a8d0;
  399. }
  400.  
  401. .t a:before { content:"#"; }
  402. .t a:hover, .faq a:hover { color:#000; }
  403.  
  404. /* BLOGROLL SECTION */
  405.  
  406. #blogroll { width:calc((159px * 3) + 30px); }
  407. .b a { vertical-align:-11px; }
  408. .user:hover { background:#fff; ;}
  409.  
  410. .user {
  411. width:calc(505px / 3);
  412. height:40px;
  413. overflow:hidden;
  414. display:inline-block;
  415. margin:0 0px 10px 0px;
  416. transition:all .6s ease;
  417. -webkit-transition:all .6s ease;
  418. -moz-transition:all .6s ease;
  419. -o-transition:all .6s ease;
  420. }
  421.  
  422. .user img {
  423. float:left;
  424. width:40px;
  425. height:40px;
  426. border-radius:2px;
  427. margin-right:10px;
  428. }
  429. /* do not disturb */
  430. .lo { bottom:20px; right:20px; position:fixed; }
  431. .lo a { text-transform:uppercase; font-size:12px; }
  432.  
  433. </style>
  434. </head>
  435.  
  436. <body>
  437.  
  438. <div id="container">
  439.  
  440. <input hidden type="radio" name="carousel-control" id="button_a" checked/>
  441. <input hidden type="radio" name="carousel-control" id="button_b"/>
  442. <input hidden type="radio" name="carousel-control" id="button_c"/>
  443. <input hidden type="radio" name="carousel-control" id="button_d"/>
  444. <input hidden type="radio" name="carousel-control" id="button_e"/>
  445.  
  446. <div id="carousel">
  447. <div class="p-wrapper">
  448.  
  449.  
  450. <!----------------------------- ABOUT -------------------------------->
  451.  
  452. <section class="panel_a">
  453.  
  454. <nav>
  455. <span class="th th-hashtag"></span><div class="title">tags</div>
  456. <div class="tags">
  457. <a href="/tagged/">tag name</a>
  458. <a href="/tagged/">tag name</a>
  459. <a href="/tagged/">tag name</a>
  460. <a href="/tagged/">tag name</a>
  461. </div>
  462.  
  463. <div class="icon"><img src="{PortraitURL-128}" /></div>
  464. <!-- this is the default, you can replace with your desired icon url -->
  465.  
  466. <div class="social">
  467. <a href="https://instagram.com/" title="instagram">
  468. <span class="th th-instagram"></span></a>
  469.  
  470. <a href="https://twitter.com/" title="twitter">
  471. <span class="th th-twitter"></span></a>
  472.  
  473. <a href="https://pinterest.com.au/" title="pinterest">
  474. <span class="th th-pinterest"></span></a>
  475.  
  476. <a href="https://www.goodreads.com/" title="goodreads">
  477. <span class="th th-goodreads"></span></a>
  478.  
  479. <!-- more icons at honeybee.suiomi.com -->
  480. </div>
  481.  
  482. </nav>
  483.  
  484. <div class="about">
  485.  
  486. <span class="th th-information-o"></span><div class="title">info</div>
  487. <div class="info">
  488. <b>name</b> content <br>
  489. <b>age</b> content <br>
  490. <b>horoscope</b> content <br>
  491. <b>pronouns</b> content
  492. </div>
  493.  
  494.  
  495. <span class="th th-user-o"></span><div class="title">about</div>
  496. <div class="talk">
  497. <p>
  498. lorem ipsum dolor sit amet, consectetur adipiscing elit. nulla condimentum vel tellus vitae volutpat. aliquam ut quam ac elit congue luctus. nam a lacus sed odio iaculis luctus a in turpis. aenean erat libero, dapibus at porttitor in, auctor sed urna. aenean a molestie est. sed rhoncus justo sit amet felis sodales maximus. etiam pharetra nibh dolor, nec imperdiet enim hendrerit a. pellentesque et dolor sed ligula bibendum dignissim sit amet quis lectus. praesent ornare sem dolor, ut tristique massa tincidunt eget.
  499. </div>
  500.  
  501. </div>
  502.  
  503. </section>
  504.  
  505. <!------------------------------ SOCIAL -------------------------------->
  506.  
  507. <section class="panel_b">
  508.  
  509. <!-- start left column -->
  510. <div class="left">
  511.  
  512. <div class="blogs">
  513. <h4>blogs</h4>
  514.  
  515. <a href="/"><div class="i"><img src="icon url" /></div> <b>blog type</b> blog name </a>
  516. <a href="/"><div class="i"><img src="icon url" /></div> <b>blog type</b> blog name</a>
  517. <a href="/"><div class="i"><img src="icon url" /></div> <b>blog type</b> blog name</a>
  518.  
  519. </div>
  520.  
  521. <div class="quote">
  522. <span class="th th-quote-up"></span>
  523. <div class="txt">insert quote here</div>
  524. </div>
  525.  
  526. </div>
  527. <!-- end left column -->
  528.  
  529. <!-- start right column -->
  530. <div class="right">
  531.  
  532. <div class="updates">
  533. <h4>currently</h4>
  534.  
  535. <div class="current"><b>reading</b> a book</div>
  536. <div class="current"><b>watching</b> a show</div>
  537. <div class="current"><b>anticipating</b> something</div>
  538. </div>
  539.  
  540. <div class="projects">
  541. <h4>projects</h4>
  542.  
  543. <div class="up">
  544. <b>project title</b>
  545. <div class="progress">
  546. <span class="progress-fill" style="width:95%;"></span>
  547. </div>
  548. </div>
  549.  
  550. <div class="up">
  551. <b>project title</b>
  552. <div class="progress">
  553. <span class="progress-fill" style="width:80%;"></span>
  554. </div>
  555. </div>
  556. </div>
  557.  
  558. </div>
  559. <!-- end right column -->
  560.  
  561. </section>
  562.  
  563. <!-------------------------------- ASK ---------------------------------->
  564.  
  565. <section class="panel_c">
  566.  
  567. <div class="faq">
  568. <div class="q">question</div>
  569. answer
  570. </div>
  571.  
  572. <div class="faq">
  573. <div class="q">question</div>
  574. answer
  575. </div>
  576.  
  577. <div class="faq">
  578. <div class="q">question</div>
  579. answer
  580. </div>
  581.  
  582. <iframe frameborder="0" scrolling="no" width="100%" max-height="180" src="https://www.tumblr.com/ask_form/{name}.tumblr.com" style="background-color:transparent; overflow:hidden; margin-top:5px" id="ask_form"></iframe>
  583. </section>
  584.  
  585.  
  586. <!------------------------------- TAGS -------------------------------->
  587.  
  588. <section class="panel_d">
  589.  
  590. <div class="box">
  591. <div class="tt">title</div>
  592. <div class="t">
  593. <a href="/">link name</a>
  594. <a href="/">link name</a>
  595. <a href="/">link name</a>
  596.  
  597. </div>
  598. </div>
  599.  
  600. <div class="box">
  601. <div class="tt">title</div>
  602. <div class="t">
  603. <a href="/tagged/">tag name</a>
  604. <a href="/tagged/">tag name</a>
  605. <a href="/tagged/">tag name</a>
  606. <a href="/tagged/">tag name</a>
  607. </div>
  608. </div>
  609.  
  610. <div class="box">
  611. <div class="tt">title</div>
  612. <div class="t">
  613. <a href="/tagged/">tag name</a>
  614. <a href="/tagged/">tag name</a>
  615. <a href="/tagged/">tag name</a>
  616. <a href="/tagged/">tag name</a>
  617. <a href="/tagged/">tag name</a>
  618. <a href="/tagged/">tag name</a>
  619. <a href="/tagged/">tag name</a>
  620. <a href="/tagged/">tag name</a>
  621. </div>
  622. </div>
  623.  
  624. </section>
  625.  
  626. <!------------------------------ BLOGROLL ------------------------------->
  627.  
  628. <section class="panel_e">
  629.  
  630. <div id="blogroll">
  631.  
  632. <!-- NO EDITING REQUIRED -->
  633. <div class="b">
  634. {block:Following}{block:Followed}<div class="user"><a href="{FollowedURL}"><img src="{FollowedPortraitURL-128}">{FollowedName}</a></div>{/block:Followed}{/block:Following}
  635. </div>
  636.  
  637. </div>
  638.  
  639. </section>
  640.  
  641. </div>
  642. </div>
  643.  
  644. <!-- NAVIGATION -->
  645.  
  646. <div id="navigation">
  647.  
  648. <label for="button_a" class="label_a"> <span><span class="th th-user-o"></span>
  649. <div class="slide">about</div> </label>
  650.  
  651. <label for="button_b" class="label_b"> <span><span class="th th-target-o"></span>
  652. <div class="slide">social</div> </label>
  653.  
  654. <label for="button_c" class="label_c"> <span><span class="th th-envelope-o"></span>
  655. <div class="slide">message</div> </label>
  656.  
  657. <label for="button_d" class="label_d"> <span><span class="th th-map-1-o"></span>
  658. <div class="slide">navigate</div> </label>
  659.  
  660. <label for="button_e" class="label_e"> <span><span class="th th-heart-1-o"></span>
  661. <div class="slide">blogroll</div> </label>
  662.  
  663. <a href="/"><label for="button_f" class="label_f"> <span><span class="th th-home-o"></span>
  664. <div class="slide">home</div> </label> </a>
  665.  
  666. </div>
  667.  
  668. </div>
  669.  
  670. <!-- DO NOT DISTURB -->
  671. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  672. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  673. <script>
  674. jQuery.noConflict();
  675. (function($){
  676. $(document).ready(function(){
  677. $("a[title],img[title],[title]").style_my_tooltips({
  678. tip_follows_cursor:true,
  679. tip_delay_time:200,
  680. tip_fade_speed:300,
  681. attribute:"title"
  682. });
  683. });
  684. })(jQuery);
  685. </script>
  686.  
  687. <div class="lo"><a href="http://wanderlusthemes.tumblr.com" title="theme"><span class="th th-plane-o"></span></a></div>
  688.  
  689. </body>
  690. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement