dansmilth

Drive

Jul 26th, 2015
2,565
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.13 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head><title>{Title}</title>
  3. <link rel="shortcut icon" href="{Favicon}">
  4. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  5. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  6.  
  7.  
  8. <!-----------<!-----------
  9. theme 11 // drive by clumhood
  10. :> ------------>
  11.  
  12.  
  13. <!--------default variables-------->
  14. <meta name="color:background" content="#ffffff"/>
  15. <meta name="color:text" content="#333333"/>
  16. <meta name="color:sidebar background" content="#f8f8f8">
  17. <meta name="color:links" content="#5b5b5b"/>
  18. <meta name="color:links hover" content="#c9c9c9"/>
  19. <meta name="color:info background" content="#f8f8f8">
  20. <meta name="color:scrollbar bg" content="#ffffff"/>
  21. <meta name="color:scrollbar" content="#eeeeee">
  22.  
  23. <meta name="image:sidebar" content=""/>
  24. <meta name="image:background image" content=""/>
  25.  
  26. <meta name="text:link 1 title" content="link">
  27. <meta name="text:link 1 url" content=" ">
  28. <meta name="text:link 2 title" content="link">
  29. <meta name="text:link 2 url" content=" ">
  30. <meta name="text:link 3 title" content="link">
  31. <meta name="text:link 3 url" content=" ">
  32. <meta name="text:link 4 title" content="link">
  33. <meta name="text:link 4 url" content=" ">
  34.  
  35. <meta name="if:posts 400px" content="0" />
  36. <meta name="if:show sidebar image" content="1" />
  37.  
  38.  
  39.  
  40. <!------------------------TOOLTIPS SCRIPT--------------------->
  41.  
  42. <link href="http://static.tumblr.com/5omyijl/bzrn2yg7i/style-my-tooltips.css" rel="stylesheet" type="text/css" />
  43. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  44. <script src="http://static.tumblr.com/5omyijl/RZtn2yg9v/jquery.style-my-tooltips.js"></script>
  45. <script>
  46. (function($){
  47. $(document).ready(function(){
  48. $("[title]").style_my_tooltips({
  49. tip_follows_cursor:true,
  50. tip_delay_time:200,
  51. tip_fade_speed:300
  52. });
  53. });
  54. })(jQuery);
  55. </script>
  56.  
  57.  
  58. <link href='http://fonts.googleapis.com/css?family=Roboto:700,400' rel='stylesheet' type='text/css'>
  59.  
  60. <script type="text/javascript">
  61. WebFontConfig = {
  62. google: { families: [ 'Roboto:700,400:latin' ] }
  63. };
  64. (function() {
  65. var wf = document.createElement('script');
  66. wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  67. '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  68. wf.type = 'text/javascript';
  69. wf.async = 'true';
  70. var s = document.getElementsByTagName('script')[0];
  71. s.parentNode.insertBefore(wf, s);
  72. })(); </script>
  73.  
  74. <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
  75.  
  76.  
  77. <!-------------------------------------------------------------------->
  78.  
  79. <style type="text/css">
  80.  
  81. /*----------tooltips---------*/
  82.  
  83. #s-m-t-tooltip {
  84. max-width:300px;
  85. margin:15px;
  86. padding:5px;
  87. border:1px solid #eeeeee;
  88. border-radius:0px;
  89. background:#ffffff;
  90. color:{color:text};
  91. z-index:999999;
  92. font-size:7px;
  93. font-style:none;
  94. font-weight:lighter;
  95. letter-spacing:2px;
  96. font-family:helvetica;
  97. text-transform:uppercase;
  98. box-shadow:1px 1px 3px rgba(0,0,0,.0);
  99. }
  100.  
  101.  
  102. /*----------scrollbar---------*/
  103.  
  104. ::-webkit-scrollbar {
  105. background-color: {color:scrollbar bg};
  106. height:8px;
  107. width:5px
  108. }
  109.  
  110. ::-webkit-scrollbar-thumb:vertical {
  111. background-color:{color:scrollbar};
  112. height:50px
  113. }
  114.  
  115. ::-webkit-scrollbar-thumb:horizontal {
  116. background-color:{color:scrollbar bg};
  117. height:8px!important
  118. }
  119.  
  120.  
  121. /*----------basics---------*/
  122.  
  123. body {
  124. background:{color:background} url({image:background image}) repeat right top fixed;
  125. color:{color:text};
  126. font-family:arial;
  127. line-height:15px;
  128. font-size:11px;
  129. margin:0;
  130. text-align:left;
  131. }
  132.  
  133. blockquote {
  134. padding-left:10px;
  135. border-left:1px solid;
  136. border-color:#eeeeee;
  137. margin:10px;
  138. text-align:justify;
  139. }
  140.  
  141. a {
  142. color:{color:links};
  143. text-decoration:none;
  144. }
  145.  
  146. a:hover {
  147. text-decoration:none;
  148. color: {color:links hover};
  149. -webkit-transition:all 0.5s;
  150. -moz-transition:all 0.5s;
  151. -ms-transition:all 0.5s;
  152. -o-transition:all 0.5s;
  153. transition:all 0.5s;
  154. }
  155.  
  156. img {
  157. opacity:1;
  158. text-decoration:none;
  159. }
  160.  
  161. h1 {
  162. font-size:11px;
  163. font-weight:bold;
  164. }
  165.  
  166. small {
  167. font-size:10px;
  168. }
  169.  
  170.  
  171. /*----------posts---------*/
  172.  
  173. .container {
  174. left:600px;
  175. width:800px;
  176. position:absolute;
  177. }
  178.  
  179. .posts {
  180. {block:IndexPage}
  181. margin-bottom:80px;
  182. {/block:IndexPage}
  183. {block:PermalinkPage}
  184. margin-bottom:40px;
  185. {/block:PermalinkPage}
  186. {block:IfNotPosts400px}
  187. width:500px;
  188. {/block:IfNotPosts400px}
  189. {block:IfPosts400px}
  190. width:400px;
  191. {/block:IfPosts400px}
  192. }
  193.  
  194. .entries {
  195. margin-left:-60px;
  196. {block:IfNotPosts400px}
  197. width:500px;
  198. {/block:IfNotPosts400px}
  199. {block:IfPosts400px}
  200. width:400px;
  201. {/block:IfPosts400px}
  202. margin-top:50px;
  203. margin-bottom:50px;
  204. }
  205.  
  206. .posts img, .posts li, .posts blockquote {
  207. max-width: 100%;
  208. }
  209.  
  210. .posts li {
  211. list-style: square;
  212. }
  213.  
  214. blockquote img {
  215. max-width:320px!important;
  216. }
  217.  
  218.  
  219. /*----------post info---------*/
  220.  
  221. .info {
  222. padding:10px;
  223. text-transform:uppercase;
  224. font-size:8px;
  225. letter-spacing:1px;
  226. margin-top:0px;
  227. font-family:trebuchet ms;
  228. font-size:7px;
  229. background:{color:info background};
  230. }
  231.  
  232. .tags {
  233. margin-top:5px;
  234. font-size:8px;
  235. letter-spacing:1px;
  236. padding-left:10px;
  237. }
  238.  
  239. .tags a {
  240. margin-right:8px;
  241. font-family:trebuchet ms;
  242. font-size:7px;
  243. text-transform:uppercase;
  244. }
  245.  
  246.  
  247.  
  248. /*----------post notes---------*/
  249.  
  250. ol.notes {
  251. padding:0px;
  252. margin:25px 0px 0px -10px;
  253. list-style-type:none;
  254. }
  255.  
  256. ol.notes li.note {
  257. padding:10px;
  258. }
  259.  
  260. ol.notes li.note img.avatar {
  261. vertical-align:-4px;
  262. margin-right:10px;
  263. width:16px;
  264. height:16px;
  265. }
  266.  
  267. ol.notes li.note span.action {
  268. font-weight:none;
  269. }
  270.  
  271. ol.notes li.note .answer_content {
  272. font-weight:normal;
  273. }
  274.  
  275. ol.notes li.note blockquote {
  276. padding:4px 10px;
  277. margin:10px 0px 0px 25px;
  278. }
  279.  
  280. ol.notes li.note blockquote a {
  281. text-decoration:none;
  282. }
  283.  
  284. /*----------sidebar---------*/
  285.  
  286. .side {
  287. margin-left:0px;
  288. }
  289.  
  290. .sidebarimage {
  291. position:fixed;
  292. width:200px;
  293. margin-left:-350px;
  294. top:190px;
  295. text-align:center;
  296. }
  297.  
  298. .sidebarimage img {
  299. width:64px;
  300. border-radius:100px;
  301. }
  302.  
  303. .title {
  304. position:fixed;
  305. width:200px;
  306. margin-left:-350px;
  307. top:270px;
  308. text-align:center;
  309. font-family:'roboto', sans-serif;
  310. font-size:12px;
  311. text-transform:uppercase;
  312. font-weight:bold;
  313.  
  314. }
  315.  
  316. .sidebar {
  317. position:fixed;
  318. width:200px;
  319. margin-left:-350px;
  320. top:300px;
  321. background:#f8f8f8;
  322. }
  323.  
  324. .sidebarimg {
  325. width:250px;
  326. background:white;
  327. padding:0px;
  328. height:30px;
  329. border-bottom:1px solid #eee;
  330.  
  331. }
  332.  
  333. .sidebarimg img {
  334. width:30px;
  335. }
  336.  
  337.  
  338.  
  339.  
  340. .description {
  341. width:150px;
  342. text-align:center;
  343. margin-top:10px;
  344. font-family:trebuchet ms;
  345. font-size:7px;
  346. text-transform:uppercase;
  347. letter-spacing:1px;
  348. text-align:justify;
  349. }
  350.  
  351. .links {
  352. width:200px;
  353. text-align:center;
  354. margin-top:10px;
  355. word-spacing:3px;
  356. color:{color:links};
  357. font-family:trebuchet ms;
  358. font-size:7px;
  359. text-transform:uppercase;
  360. letter-spacing:1px;
  361. }
  362.  
  363. .links a {
  364. padding:0px;
  365. }
  366.  
  367. .pagination {
  368. width:200px;
  369. margin-top:0px;
  370. text-align:center;
  371. padding:10px;
  372. font-family:trebuchet ms;
  373. font-size:7px;
  374. text-transform:uppercase;
  375. letter-spacing:1px;
  376.  
  377. }
  378.  
  379.  
  380.  
  381. /*----------quotes---------*/
  382.  
  383. .quote {
  384. text-transform:uppercase;
  385. font-size:12px;
  386. font-weight:bold;
  387. text-align:center;
  388. }
  389.  
  390. .quotesource {
  391. text-align:center;
  392. margin-top:10px;
  393. }
  394.  
  395.  
  396. /*----------chat---------*/
  397.  
  398. .chat {
  399. line-height:20px;
  400. list-style:none;
  401. }
  402.  
  403. .line.odd {
  404. background:#fafafa;
  405. margin-bottom:2px;
  406. padding:5px;
  407. list-style:none;
  408. font-size:10px;
  409. }
  410.  
  411. .line.even {
  412. background:#ffffff;
  413. margin-bottom:2px;
  414. padding:5px;
  415. list-style:none;
  416. font-size:10px;
  417. }
  418.  
  419. .label {
  420. padding-right:1px;
  421. text-transform:uppercase;
  422. font-weight:bold;
  423. color:{color:links};
  424. }
  425.  
  426.  
  427. /*----------questions---------*/
  428.  
  429. .question {
  430. background:#fafafa;
  431. padding:10px;
  432. font-family:trebuchet ms;
  433. font-size:7px;
  434. letter-spacing:1px;
  435. text-transform:uppercase;
  436. }
  437.  
  438. .asker {
  439. text-transform:uppercase;
  440. font-family:trebuchet ms;
  441. font-size:7px;
  442. letter-spacing:1px;
  443. font-weight:bold;
  444. }
  445.  
  446. .answer {
  447. padding:10px;
  448. margin-top:-15px;
  449. }
  450.  
  451. /*----------audio---------*/
  452.  
  453. .playerbutton {
  454. position:relative;
  455. width:30px;
  456. height:35px;
  457. overflow:hidden;
  458. }
  459.  
  460. .playerbuttonhug {
  461. position: absolute;
  462. top:-7px;
  463. left:2px;
  464. }
  465.  
  466. .tumblr_audio_player {
  467. height:50px;
  468. width:500px;
  469. }
  470.  
  471. .playerbuttonbg {
  472. position:absolute;
  473. width:35px;
  474. height:35px;
  475. background-color:#e4e4e4;
  476. padding:10px;
  477. }
  478.  
  479. .trackdetails {
  480. width:auto;
  481. display:inline-block;
  482. margin-left:70px;
  483. font-size:10px;
  484. letter-spacing:1px;
  485. text-transform:lowercase;
  486. padding:5px;
  487. line-height:15px;
  488. }
  489.  
  490. .audiowrapper {
  491. position:relative;
  492. display:inline-block;
  493. }
  494.  
  495. /*----------credit---------*/
  496.  
  497. .credit {
  498. font-size:8px;
  499. position:fixed;
  500. font-weight:bold;
  501. bottom:5px;
  502. right:15px;
  503. z-index:10;
  504. text-align:right;
  505. letter-spacing:1px;
  506. padding:2px;
  507. }
  508.  
  509. .credit a {
  510. color:{color:links};
  511. text-decoration:none;
  512. }
  513.  
  514. .credit a:hover {
  515. color:{color:links hover};
  516. text-decoration:none;
  517. }
  518.  
  519.  
  520.  
  521. </style>
  522. </head>
  523.  
  524. <body>
  525.  
  526.  
  527. <div class="container">
  528.  
  529. <div class="credit">
  530. <a title="theme" href="http://clumhood.tumblr.com/" target="_blank">CH</a></div>
  531.  
  532.  
  533.  
  534.  
  535. <div class="side">
  536. {block:IfShowSidebarImage}<div class="sidebarimage"><img src="{image:sidebar}"/></div>{/block:IfShowSidebarImage}
  537.  
  538. <div class="title">{title}</div>
  539.  
  540. <div class="sidebar">
  541.  
  542.  
  543. <div class="links">
  544. <a href="/">home</a>
  545. <a href="/ask">inbox</a>
  546. <a href="{text:link 1 url}">{text:link 1 title}</a>
  547. <a href="{text:link 2 url}">{text:link 2 title}</a>
  548. <a href="{text:link 3 url}">{text:link 3 title}</a>
  549. <a href="{text:link 4 url}">{text:link 4 title}</a>
  550. </div>
  551.  
  552.  
  553.  
  554. <center><div class="description">{Description}</div></center>
  555.  
  556. <div class="pagination">
  557. {block:Pagination}
  558. {block:PreviousPage}
  559. <a href="{PreviousPage}">back</a>{/block:PreviousPage}&nbsp;
  560.  
  561. {block:NextPage}
  562. <a href="{NextPage}">next</a>
  563. {/block:NextPage}
  564. {/block:Pagination}
  565. </div>
  566.  
  567.  
  568. </div></div>
  569.  
  570.  
  571.  
  572. <div class="entries">
  573.  
  574. {block:Posts}
  575. <div class="posts">
  576.  
  577. {block:Text}
  578. <h1>{block:Title}{Title}{/block:Title}</h1>
  579. {Body}{/block:Text}
  580.  
  581.  
  582. {block:Photo}
  583. {LinkOpenTag}{block:IfNotPosts400px}<img src="{PhotoURL-500}">
  584. {block:Caption}{Caption}{/block:Caption}{/block:IfNotPosts400px}
  585. {block:IfPosts400px}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{block:Caption}{Caption}{/block:Caption}{block:IfPosts400px}{LinkCloseTag}
  586. {/block:Photo}
  587.  
  588.  
  589. {block:Photoset}
  590. {block:IfNotPosts400px}{Photoset-500}
  591. {block:Caption}{Caption}{/block:Caption}{/block:IfNotPosts400px}
  592. {block:IfPosts400px}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{block:IfPosts400px}
  593. {/block:Photoset}
  594.  
  595.  
  596. {block:Quote}
  597. <div class="quote">"{Quote}"</div>
  598. {block:Source}<div class="quotesource"> — {Source}</div>
  599. {/block:Source}{/block:Quote}
  600.  
  601.  
  602. {block:Link}
  603. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  604. {block:Description}{Description}{/block:Description}
  605. {/block:Link}
  606.  
  607.  
  608. {block:Chat}
  609. {block:Title}<h1>{Title}</h1>{/block:Title} <div class="chat"> {block:Lines} <li class="line {Alt}"> {block:Label} <span class="label"> {Label}</span> {/block:Label}{Line}</li> {/block:Lines}</div>
  610. {/block:Chat}
  611.  
  612.  
  613. {block:Audio}
  614. {block:AudioPlayer}
  615. <div class="audiowrapper">
  616. <div class="playerbuttonbg">
  617. <div class="playerbutton">
  618. <div class="playerbuttonhug">
  619. {AudioPlayerGrey}
  620. </div></div></div>
  621.  
  622. <div class="trackdetails">
  623. {block:TrackName}<b>TRACK:</b> {TrackName}{/block:TrackName}<br>
  624.  
  625. {block:Artist}<b>ARTIST:</b> {Artist}{/block:Artist}<br>
  626.  
  627. <b>PLAYS:</b> {FormattedPlayCount}</div></div>
  628. {/block:AudioPlayer}
  629.  
  630. {block:Caption}
  631. <div class="caption">{Caption}</div>
  632. {/block:Caption}
  633. {/block:Audio}
  634.  
  635.  
  636. {block:Video}
  637. {block:IfNotPosts400px}{Video-500}{block:Caption}{Caption}{/block:Caption}{block:IfNotPosts400px}{block:IfPosts400px}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:IfPosts400px}
  638. {/block:Video}
  639.  
  640.  
  641. {block:Answer}
  642. <div class="question">
  643. <div class="asker"><b>{Asker} said:</b></div>
  644. {Question}</div><br>
  645. <div class="answer">
  646. {Answer}</div>
  647. {/block:Answer}
  648.  
  649.  
  650. <div class="info">
  651. {block:Date}
  652. <b><a href="{Permalink}" title="{TimeAgo}">{Month} {DayOfMonth}{DayOfMonthSuffix}, {Year}</b></a>
  653. {/block:Date}
  654.  
  655. &nbsp;&nbsp;
  656. <a href="{Permalink}">{NoteCountWithLabel}</a>
  657. &nbsp;&nbsp;
  658.  
  659. {block:RebloggedFrom}
  660. <a href="{ReblogParentURL}" title="{ReblogParenttitle}">via </a>
  661. {block:ContentSource}
  662. <a href="{ReblogRootURL}" "{ReblogRootName}" title="{ReblogRoottitle}">/ src</a>
  663. {/block:ContentSource}
  664. {/block:RebloggedFrom}
  665. &nbsp;&nbsp;
  666. <a href="{ReblogURL}" target="_blank" class="details"><i class="fa fa-repeat"></i></a>
  667. </div>
  668.  
  669.  
  670. {block:HasTags}
  671. <div class="tags">
  672. {block:Tags}
  673. <a href="{TagURL}">#{Tag}</a>
  674. {/block:Tags}
  675. </div>
  676. {/block:HasTags}
  677.  
  678. </div>
  679.  
  680. {block:PostNotes}
  681. {PostNotes}
  682. {/block:PostNotes}
  683.  
  684. {/block:Posts}
  685.  
  686. {block:ContentSource}
  687. <!---{SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}”
  688. width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” />
  689. {/block:SourceLogo}
  690. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --->
  691. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  692.  
  693. </body>
  694.  
  695. </div></div></div></div></div></div></div></div></div></div></div>
  696. </html>
Advertisement
Add Comment
Please, Sign In to add comment