Advertisement
TVD-PS

THEME PURPLE

Feb 21st, 2019
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.58 KB | None | 0 0
  1. <!-----------------------------------------------------------------------
  2.  
  3.  
  4.  
  5.  
  6. ------------------------------
  7. @BARBIE THEMES | TUMBLR
  8. ------------------------------
  9.  
  10.  
  11. Rules:
  12. +Please do not remove credit.
  13. +Do not steal the code or take parts of the codes and put them in your own theme.
  14. +Do not remove the credit completely or make them invisible, you may replace it to a visible place.
  15.  
  16.  
  17.  
  18.  
  19.  
  20. ------------------------------------------------------------------------>
  21.  
  22. <!DOCTYPE html>
  23. <head>
  24.  
  25.  
  26.  
  27. <title>{Title}</title>
  28. <link rel="shortcut icon" href="{Favicon}">
  29. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  30. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  31.  
  32.  
  33. <!--------DEFAULT VARIABLES-------->
  34.  
  35. <meta name="color:background" content="#ffffff"/>
  36. <meta name="color:text" content="#888888"/>
  37. <meta name="color:bold" content="#dccbe7"/>
  38. <meta name="color:italic" content="#bad8eb"/>
  39. <meta name="color:links" content="#cccccc"/>
  40. <meta name="color:link hover" content="#000000"/>
  41. <meta name="color:navigation" content="#f6f6f6"/>
  42. <meta name="color:nav links" content="#dccbe7"/>
  43. <meta name="color:nav links hover" content="#000000"/>
  44. <meta name="color:border links" content="#eeeeee"/>
  45. <meta name="color:scrollbar" content="#dccbe7"/>
  46. <meta name="color:questions" content="#f6f6f6"/>
  47. <meta name="color:BG links" content="#ffffff"/>
  48. <meta name="color:title" content="#dccbe7"/>
  49. <meta name="color:posts background" content="#ffffff"/>
  50. <meta name="color:border posts" content="#eeeeee"/>
  51.  
  52.  
  53.  
  54.  
  55. <meta name="image:sidebar" content=""/>
  56.  
  57.  
  58. <meta name="text:link 1 title" content="link"/>
  59. <meta name="text:link 1 url" content=""/>
  60. <meta name="text:link 2 title" content="link"/>
  61. <meta name="text:link 2 url" content=""/>
  62. <meta name="text:link 3 title" content="link"/>
  63. <meta name="text:link 3 url" content=""/>
  64.  
  65.  
  66.  
  67.  
  68.  
  69. <!----------------SCRIPTS---------------->
  70.  
  71. <link href="http://static.tumblr.com.http.s32.wbprx.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  72. <script src="http://ajax.googleapis.com.http.s32.wbprx.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  73. <script src="http://static.tumblr.com.http.s32.wbprx.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  74. <script>
  75. (function($){
  76. $(document).ready(function(){
  77. $("[title]").style_my_tooltips({
  78. tip_follows_cursor:true,
  79. tip_delay_time:200,
  80. tip_fade_speed:300
  81. });
  82. });
  83. })(jQuery);
  84. </script>
  85.  
  86. <link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
  87.  
  88.  
  89.  
  90.  
  91.  
  92. <style type="text/css">
  93.  
  94.  
  95.  
  96.  
  97. /*----------SCROLLBAR---------*/
  98.  
  99. ::-webkit-scrollbar {
  100. background-color: {color:scrollbar bg};
  101. height:8px;
  102. width:5px;
  103.  
  104. }
  105.  
  106. ::-webkit-scrollbar-thumb:vertical {
  107. background-color:{color:scrollbar};
  108. height:50px;
  109.  
  110. }
  111.  
  112. ::-webkit-scrollbar-thumb:horizontal {
  113. background-color:{color:scrollbar bg};
  114. height:8px;
  115.  
  116. }
  117.  
  118.  
  119.  
  120.  
  121. /*----------TOOLTIPS---------*/
  122.  
  123. #s-m-t-tooltip {
  124. max-width:300px;
  125. margin:15px;
  126. padding:5px;
  127. border:1px solid #eeeeee;
  128. border-radius:0px;
  129. background:#ffffff;
  130. color:{color:text};
  131. z-index:999999;
  132. font-size:7px;
  133. font-style:none;
  134. letter-spacing:2px;
  135. font-family:arial;
  136. text-transform:uppercase;
  137. box-shadow:1px 1px 3px rgba(0,0,0,.0);
  138.  
  139. }
  140.  
  141. /*----------BASICS---------*/
  142.  
  143. body {
  144. background:{color:background};
  145. color:{color:text};
  146. font-family:arial;
  147. font-size:10px;
  148. line-height:140%;
  149. margin:0;
  150. text-align:left;
  151.  
  152. }
  153.  
  154.  
  155. b {
  156. font-weight:bold;
  157. color:{color:bold};
  158.  
  159. }
  160.  
  161. i {
  162. font-weight:arial;
  163. color:{color:italic};
  164.  
  165. }
  166.  
  167. small {
  168. font-size:11px;
  169.  
  170. }
  171.  
  172. a {
  173. color:{color:links};
  174. text-decoration:none;
  175.  
  176. }
  177.  
  178. a:hover {
  179. color:{color:link hover};
  180. transition:1s;
  181. -webkit-transition:1s;
  182. -moz-transition:1s;
  183. -o-transition:1s;
  184.  
  185. }
  186.  
  187. img {
  188. opacity:1;
  189. text-decoration:none;
  190.  
  191. }
  192.  
  193. h1 {
  194. font-size:14px;
  195. font-weight:bold;
  196. font-family:arial;
  197. line-height:150%;
  198. text-transform:uppercase;
  199.  
  200. }
  201.  
  202. blockquote {
  203. padding:10px;
  204. background:#eee;
  205. width:480px;
  206. overflow: hidden;
  207. border-left:2px solid #ccc;
  208. margin-left:0px;
  209. }
  210.  
  211. /*----------HEADER---------*/
  212.  
  213.  
  214.  
  215. .navigation {
  216. width:1400px;
  217. background:{color:navigation};
  218. margin-left:calc(50% - 700px);
  219. position:fixed;
  220. margin-top:-85px;
  221.  
  222. }
  223.  
  224. .links {
  225. text-align:center;
  226. padding:15px;
  227. text-transform:uppercase;
  228. font-size:12px;
  229. font-family:calibri;
  230. margin-left:225px;
  231. margin-top:2px;
  232.  
  233.  
  234. }
  235.  
  236.  
  237. .links a {
  238. color:{color:nav links};
  239. margin-right:40px;
  240. letter-spacing: 0px;
  241. border:2px dotted {color:border links};
  242. padding:10px;
  243. background:{color:BG links};
  244. display:inline-block;
  245. width:80px;
  246. height:20px;
  247.  
  248.  
  249. }
  250.  
  251. .links a:hover {
  252. color:{color:link hover};
  253. background:{color:navigation};
  254.  
  255. }
  256.  
  257.  
  258.  
  259. /*----------SIDEBAR---------*/
  260. .sidebar {
  261. position:fixed;
  262. width:350px;
  263. margin-top:90px;
  264. margin-left:130px;
  265.  
  266. }
  267.  
  268. .sideimg img {
  269. width:245px;
  270. padding:0px;
  271.  
  272. }
  273.  
  274.  
  275. .cat {
  276. padding:20px;
  277. border:0px double {color:borders};
  278. margin-bottom:50px;
  279. background:transparent;
  280.  
  281. }
  282.  
  283. /*EDIT TITLE*/
  284.  
  285.  
  286. .title {
  287. font-family: serif;
  288. font-size: 25px;
  289. text-align: left;
  290. font-style: italic;
  291. text-transform: lowercase;
  292. font-weight: bold;
  293. margin-left:50px;
  294. color:{color:title};
  295.  
  296. }
  297.  
  298.  
  299.  
  300. .description {
  301. width:215px;
  302. margin-left:50px;
  303. margin-top:20px;
  304. text-align:justify;
  305. font-weight:normal;
  306. line-height:100%;
  307. font-family: tahoma;
  308. font-style:normal;
  309. font-size:10px;
  310. padding-top:0px;
  311. border:0px solid {color:border description};
  312. padding:10px;
  313. background-color:transparent;
  314. border-left:2px solid #ccc;
  315.  
  316. }
  317.  
  318.  
  319.  
  320.  
  321.  
  322. /*----------PAGINATION---------*/
  323.  
  324. #pagination {
  325. position:fixed;
  326. width:515px;
  327. text-align:center;
  328. font-weight:bold;
  329. margin-top:15px;
  330. margin-left:2px;
  331. font-family:arial;
  332. font-size:14px;
  333. letter-spacing:4px;
  334. text-transform:uppercase;
  335. font-style:normal;
  336. z-index:100;
  337. background-color:#fff;
  338. bottom:0px;
  339. padding:10px;
  340. border-top:0px
  341. solid #000;
  342. border-left:2px solid #eee;
  343.  
  344.  
  345. }
  346.  
  347. /*----------POSTS---------*/
  348.  
  349.  
  350.  
  351. .entries {
  352. margin-top:80px;
  353. width:500px;
  354. margin-left:500px;
  355. background:{color:background};
  356.  
  357.  
  358. }
  359.  
  360. .posts {
  361. width:500px;
  362. margin-bottom:55px;
  363. background:{color:posts background};
  364. padding:20px;
  365. border:1px dotted {color:border posts};
  366.  
  367.  
  368. }
  369.  
  370.  
  371.  
  372. /*----------CHAT---------*/
  373.  
  374. .chat {
  375. line-height:150%;
  376. list-style:none;
  377.  
  378. }
  379.  
  380. .line.odd {
  381. padding:10px;
  382. background:#f8f8f8;
  383.  
  384. }
  385.  
  386. .line.even {
  387. padding:10px;
  388. }
  389.  
  390. .label {
  391. text-transform:uppercase;
  392. font-size:10px;
  393. letter-spacing:1px;
  394. font-weight:bold;
  395.  
  396. }
  397.  
  398.  
  399.  
  400.  
  401. /*----------INFO POST---------*/
  402.  
  403. .info {
  404. padding:10px;
  405. text-transform:uppercase;
  406. border-top:1px solid #eee;
  407. margin-top:25px;
  408.  
  409. }
  410.  
  411.  
  412. .tags {
  413. margin-left:10px;
  414. margin-top:-5px;
  415.  
  416. }
  417.  
  418. .tags a {
  419. margin-right:10px;
  420. letter-spacing:1px;
  421.  
  422. }
  423.  
  424.  
  425.  
  426. /*----------CREDIT---------*/
  427.  
  428. .credit, .credit a {
  429. width:25px;
  430. height:10px;
  431. bottom:10px;
  432. right:20px;
  433. padding:4px;
  434. font-size:8px;
  435. letter-spacing:0px;
  436. color:#ff8d8d;
  437. line-height:8px;
  438. position:fixed;
  439. text-align:center;
  440. color:{color:Tags Text Colour};
  441. font-family:arial;
  442. text-transform:uppercase;
  443. background-color:transparent;
  444. border:0px; solid {color:Border};
  445. -webkit-transition: all 0.5s ease-in-out;
  446. -moz-transition: all 0.5s ease-in-out;
  447. -o-transition: all 0.5s ease-in-out;
  448. transition: all 0.5s ease-in-out;
  449. }
  450.  
  451. .credit a:hover {
  452. -webkit-transition: all 0.5s ease-in-out;
  453. -moz-transition: all 0.5s ease-in-out;
  454. -o-transition: all 0.5s ease-in-out;
  455. transition: all 0.5s ease-in-out;
  456.  
  457. }
  458.  
  459. </style>
  460. </head>
  461.  
  462. <body>
  463.  
  464.  
  465.  
  466.  
  467. <div class="navigation">
  468.  
  469. <div class="links">
  470. <a href="/">Index</a>
  471. <a href="/ask">Message</a>
  472. <a href="{text:link 1 url}">{text:link 1 title}</a>
  473. <a href="{text:link 2 url}">{text:link 2 title}</a>
  474. <a href="{text:link 3 url}">{text:link 3 title}</a>
  475. </div>
  476.  
  477.  
  478. </div>
  479.  
  480.  
  481.  
  482. <div class="container">
  483.  
  484. <div class="sidebar">
  485. <div class="title">{Title}</div>
  486.  
  487. <div class="cat">
  488. <div class="cti"></div>
  489. <center><div class="sideimg"><img src="{image:sidebar}"></div></center>
  490. <div class="description">{Description}</div>
  491. </div>
  492.  
  493.  
  494.  
  495. </div>
  496.  
  497. </div>
  498.  
  499. <div class="entries">
  500.  
  501. {block:Posts}
  502.  
  503. <div class="posts">
  504.  
  505. {block:Text}
  506. <h1>{block:Title}{Title}{/block:Title}</h1>
  507. {Body}{/block:Text}
  508.  
  509.  
  510. {block:Photo}
  511. {LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}
  512. {block:Caption}{Caption}{/block:Caption}
  513. {/block:Photo}
  514.  
  515.  
  516. {block:Photoset}
  517. {Photoset-500}
  518. {block:Caption}{Caption}{/block:Caption}
  519. {/block:Photoset}
  520.  
  521.  
  522. {block:Quote}
  523. <h2>"{Quote}"</h2>
  524. <div align="right">
  525. {block:Source}<h1>-{Source}</h1>{/block:Source}
  526. </div>
  527. {/block:Quote}
  528.  
  529.  
  530. {block:Link}
  531. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  532. {block:Description}{Description}{/block:Description}
  533. {/block:Link}
  534.  
  535.  
  536. {block:Chat}
  537. {block:Title}<h1>{Title}</h1>{/block:Title}
  538. <div class="chat"> {block:Lines}
  539. <li class="line {Alt}"> {block:Label}
  540. <span class="label"> {Label}</span>
  541. {/block:Label}{Line}</li> {/block:Lines}</div>
  542. {/block:Chat}
  543.  
  544.  
  545. {block:Audio}
  546. <div class="audio_container">{block:AudioEmbed}{AudioEmbed color="white"}{/block:AudioEmbed}</div>
  547.  
  548. {block:Caption}
  549. <div class="caption">{Caption}</div>
  550. {/block:Caption}{/block:Audio}
  551.  
  552.  
  553.  
  554. {block:Video}
  555. {Video-500}
  556. {block:Caption}{Caption}{/block:Caption}
  557. {/block:Video}
  558.  
  559.  
  560. {block:Answer}
  561. <br>
  562. <div style="border-radius:0px;
  563. border: 0px double #ddd; margin:
  564. 3px; margin-top: -2px; min-height:40px;
  565. padding: 3px; background:{color:questions};
  566. box-shadow: 0px 0px 1px 1px #eee;">
  567. <img src="{AskerPortraitURL-40}" width="40"
  568. align="left" style="margin-right:3px;
  569. box-shadow: 0px 0px 0px 0px #eee;
  570. border-radius: 0px;"/>
  571. <askk>{Asker}</askk>: {Question}<br></div>
  572. <div style="font-family:
  573. arial; font-size: 10px;">
  574. {Answer}
  575. </div>
  576. {/block:Answer}
  577.  
  578.  
  579.  
  580. <div class="info">
  581. {block:Date}
  582. <b><a href="{Permalink}" title="{TimeAgo}">{Month} {DayOfMonth}{DayOfMonthSuffix}</b></a>
  583. {/block:Date}
  584.  
  585. &nbsp;&nbsp;
  586. <a href="{Permalink}">{NoteCount}</a>
  587. &nbsp;&nbsp;
  588.  
  589. <a href="{ReblogURL}" target="_blank" class="details"><i class="fa fa-repeat"></i></a>
  590.  
  591. <font style="float:right">
  592. {block:RebloggedFrom}
  593. <a href="{ReblogParentURL}" title="{ReblogParentName}">via </a>
  594. {block:ContentSource}
  595. <a href="{ReblogRootURL}" "{ReblogRootName}" title="{ReblogRootName}">/ src</a>
  596. {/block:ContentSource}
  597. {/block:RebloggedFrom}
  598. </font style>
  599.  
  600.  
  601. </div>
  602.  
  603.  
  604. {block:HasTags}
  605. <div class="tags">
  606. {block:Tags}
  607. <a href="{TagURL}">#{Tag}</a>
  608. {/block:Tags}
  609. </div>
  610. {/block:HasTags}
  611.  
  612. </div>
  613.  
  614.  
  615. {block:PostNotes}
  616. {PostNotes}
  617. {/block:PostNotes}
  618.  
  619. {/block:Posts}
  620.  
  621. {block:ContentSource}
  622. <!---{SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}”
  623. width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” />
  624. {/block:SourceLogo}
  625. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --->
  626. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  627.  
  628. <div id="pagination">
  629. {block:Pagination}
  630. {block:PreviousPage}
  631. <a href="{PreviousPage}">←</a>
  632. {/block:PreviousPage}
  633. {block:JumpPagination length="5"}
  634. {block:CurrentPage}
  635. <span class="current_page">{PageNumber}</span>
  636. {/block:CurrentPage}
  637. {block:JumpPage}
  638. <a class="jump_page" href="{URL}">{PageNumber}</a>
  639. {/block:JumpPage}
  640. {/block:JumpPagination}
  641. {block:NextPage}
  642. <a href="{NextPage}">→</a>
  643. {/block:NextPage}
  644. </div>
  645. {/block:Pagination}</div>
  646.  
  647.  
  648.  
  649.  
  650. </div>
  651. <span class="credit">
  652. <a href="http://barbie-themes.tumblr.com/" target="_blank" title="CREDIT"> BTHEMES ♥ </a>
  653. </span>
  654.  
  655.  
  656.  
  657. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement