Advertisement
lopezberry

theme 1: straight up

Jul 30th, 2014
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.63 KB | None | 0 0
  1. <!-----------------------------------------------------------
  2. -- STRAIGHT UP, theme 01 by snixwrites --
  3. ----------------------------------------------------------->
  4.  
  5. <!DOCTYPE html>
  6. <html>
  7. <head>
  8. <meta charset="utf-8" />
  9. <title>{Title}</title>
  10. <link rel="shortcut icon" href="{Favicon}" />
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  12. {block:Description}
  13. <meta name="description" content="{MetaDescription}" />
  14. {/block:Description}
  15.  
  16.  
  17. <style type="text/css">
  18.  
  19. body
  20. {
  21. margin:0px;
  22. font-size:11px;
  23. font-family:georgia;
  24. color:{color:text};
  25. background-color:{color:background};
  26. }
  27.  
  28. a
  29. {
  30. text-decoration:none;
  31. color:{color:links};
  32. -webkit-transition: all 0.3s ease-out;
  33. -moz-transition: all 0.3s ease-out;
  34. transition: all 0.3s ease-out;
  35. }
  36.  
  37. a:hover
  38. {
  39. color:{color:text};
  40. -webkit-transition: all 0.3s ease-out;
  41. -moz-transition: all 0.3s ease-out;
  42. transition: all 0.3s ease-out;
  43. }
  44.  
  45. h3
  46. {
  47. font-family:arial;
  48. margin:5px 0px -5px 0px;
  49. letter-spacing:-1px;
  50. }
  51.  
  52. h4
  53. {
  54. text-align:center;
  55. font-family:arial;
  56. color:{color:postTitles};
  57. font-size:20px;
  58. margin:5px 0px -5px 0px;
  59. letter-spacing:-1px;
  60. }
  61.  
  62. blockquote
  63. {
  64. border-left:1px solid {color:text};
  65. margin-left:10px;
  66. padding-left:5px;
  67. }
  68.  
  69. blockquote img{max-width:100%;}
  70.  
  71. #nav
  72. {
  73. position:fixed;
  74. margin-left:280px;
  75. margin-top:73px;
  76. font-family:arial;
  77. font-size:32px;
  78. }
  79.  
  80. #nav a
  81. {
  82. color:{color:navlinks};
  83. letter-spacing:-1px;
  84. text-shadow: 1px 1px 0px {color:shadow};
  85. font-weight:bold;
  86. }
  87.  
  88. #nav a:hover{ color:{color:text}; }
  89.  
  90. #total
  91. {
  92. height:100%;
  93. width:522px;
  94. margin-left:543px;
  95. padding:15px;
  96. padding-top:57px;
  97. }
  98.  
  99. #one
  100. {
  101. width:500px;
  102. background-color:{color:postBackground};
  103. padding:10px;
  104. border:1px solid {color:border};
  105. margin-bottom:1px;
  106. {block:ifPostShadow}
  107. box-shadow:2px 0px 5px {color:postShadow};
  108. {/block:ifPostShadow}
  109. {block:ifRoundedPosts}
  110. border-radius:10px 10px 0px 0px;
  111. {/block:ifRoundedPosts}
  112. }
  113.  
  114. #tbox
  115. {
  116. font-size:9px;
  117. font-family:garamond, georgia;
  118. text-transform:lowercase;
  119. font-style:italic;
  120. }
  121.  
  122. #dbox
  123. {
  124. margin-bottom:45px;
  125. text-align:center;
  126. background-color:{color:postBackground};
  127. border:1px solid {color:borders};
  128. font-size:9px;
  129. font-family:helvetica, arial;
  130. text-transform:uppercase;
  131. padding:2px;
  132. {block:ifPostShadow}
  133. box-shadow:2px 2px 5px {color:postShadow};
  134. {/block:ifPostShadow}
  135. {block:ifRoundedPosts}
  136. border-radius:0px 0px 10px 10px;
  137. {/block:ifRoundedPosts}
  138. }
  139.  
  140. .audbg {
  141. width:100%;
  142. background-color:{color:background};
  143. height:60px;
  144. -webkit-border-radius: 42px;
  145. -moz-border-radius: 42px;
  146. border-radius: 42px;
  147. }
  148.  
  149. .playbox {
  150. width:50px;
  151. height:50px;
  152. background-color: #000000;
  153. position:absolute;
  154. margin: 5px 0px 0px 5px;
  155. z-index: 1000;
  156. -webkit-border-radius: 25px;
  157. -moz-border-radius: 25px;
  158. border-radius: 25px;
  159. }
  160.  
  161. .playbutton {
  162. width: 30px;
  163. height: 30px;
  164. overflow: hidden;
  165. position: absolute;
  166. z-index: 1;
  167. margin: 10px 0px 0px 10px;
  168. }
  169.  
  170. /* CHAT STYLE */
  171. .chat{
  172. list-style: none;
  173. margin: 0;
  174. padding: 0;
  175. }
  176.  
  177. .chat li{margin-bottom: 2px;}
  178.  
  179. .chat .odd {
  180. font-weight:bold;
  181. text-transform:uppercase;
  182. color:{color:text};
  183. }
  184.  
  185. .chat .even {
  186. font-weight:bold;
  187. text-transform:uppercase;
  188. color:{color:links};
  189. }
  190.  
  191. #quote{ font-size:18px; }
  192.  
  193. #quesh
  194. {
  195. text-align:left;
  196. padding-top:5px;
  197. color:{color:questionText};
  198. border-top:1px solid {color:border};
  199. border-bottom:1px solid {color:border};
  200. background-color:{color:background};
  201. min-height:95px;
  202. }
  203.  
  204. #quesh blockquote
  205. {
  206. margin-top:8px;
  207. margin-left:77px;
  208. }
  209.  
  210. #queshtext
  211. {
  212. text-align:left;
  213. padding-left:7px;
  214. font-family:georgia;
  215. font-size:15px;
  216. font-style:italic;
  217. text-shadow:none;
  218. }
  219.  
  220. #queshtext a
  221. {
  222. font-family:helvetica, arial;
  223. font-weight:bold;
  224. text-transform:uppercase;
  225. color:{color:titles};
  226. text-shadow:0px 1px 0px {color:shadow};
  227. }
  228.  
  229. #quesh img
  230. {
  231. float:left;
  232. margin:5px;
  233. border-radius:48px;
  234. }
  235.  
  236. #arriba
  237. {
  238. position:fixed;
  239. margin-top:73px;
  240. margin-left:22px;
  241. width:243px;
  242. height:348px;
  243. background-color:{color:background};
  244. background-image:url('{image:leftImg}');
  245. border:1px solid {color:ribbonBorder};
  246. }
  247.  
  248. #abajo
  249. {
  250. position:fixed;
  251. margin-top:233px;
  252. margin-left:280px;
  253. width:243px;
  254. height:348px;
  255. background-color:{color:background};
  256. background-image:url('{image:rightImg}');
  257. border:1px solid {color:ribbonBorder};
  258. }
  259.  
  260. #ribbon
  261. {
  262. position:fixed;
  263. width:100%;
  264. margin-top:225px;
  265. height:364px;
  266. background-image:url('{image:ribbon}');
  267. border-top:1px solid {color:ribbonBorder};
  268. border-bottom:1px solid {color:ribbonBorder};
  269. z-index:-1;
  270. }
  271.  
  272. #ribbon2
  273. {
  274. position:fixed;
  275. height:100%;
  276. margin-left:15px;
  277. width:257px;
  278. background-image:url('{image:ribbon}');
  279. border-right:1px solid {color:ribbonBorder};
  280. border-left:1px solid {color:ribbonBorder};
  281. z-index:-1;
  282. }
  283.  
  284. #desc
  285. {
  286. position:fixed;
  287. margin-top:428px;
  288. margin-left:22px;
  289. height:117px;
  290. width:233px;
  291. background-color: {color:descriptionbg};
  292. border:1px solid {color:ribbonBorder};
  293. padding:5px;
  294. overflow:hidden;
  295. }
  296.  
  297. #pagetitle
  298. {
  299. position:fixed;
  300. font-family:arial;
  301. margin-top:554px;
  302. margin-left:22px;
  303. width:243px;
  304. text-align:right;
  305. padding-right:7px;
  306. font-size:22px;
  307. font-weight:bold;
  308. color:{color:pageTitles};
  309. text-shadow:1px 1px {color:shadow};
  310. z-index:1;
  311. }
  312.  
  313. #pagesubtitle
  314. {
  315. font-family:georgia;
  316. font-size:9px;
  317. margin-top:-5px;
  318. font-style:italic;
  319. padding:none;
  320. text-shadow:none;
  321. z-index:-1;
  322. }
  323.  
  324. #desctext
  325. {
  326. height:115px;
  327. text-align:justify;
  328. padding-right:3px;
  329. overflow:auto;
  330. }
  331.  
  332. #pag
  333. {
  334. position:fixed;
  335. font-family:arial;
  336. width:245px;
  337. text-align:center;
  338. margin-top:595px;
  339. margin-left:1023px;
  340. color:{color:navlinks};
  341. text-shadow:1px 1px 0px {color:shadow};
  342. font-size:22px;
  343. line-height:22px;
  344. font-style:italic;
  345. z-index:1;
  346. }
  347.  
  348. #pag a
  349. {
  350. color:{color:navlinks};
  351. text-shadow:1px 1px 0px {color:shadow};
  352. }
  353.  
  354. #pag a:hover{ color:{color:background}; }
  355.  
  356. ::-webkit-scrollbar { width:5px; }
  357.  
  358. ::-webkit-scrollbar-track {background-color:{color:background};}
  359.  
  360. ::-webkit-scrollbar-thumb {background-color:{color:scrollbar};}
  361.  
  362. #cred
  363. {
  364. position:fixed;
  365. bottom:10px;
  366. right:10px;
  367. text-align:center;
  368. padding:3px;
  369. font-family:arial;
  370. border:1px solid {color:borders};
  371. text-shadow:1px 1px {color:shadow};
  372. font-size:12px;
  373. line-height:12px;
  374. background-color:{color:background};
  375. }
  376.  
  377.  
  378. </style>
  379. <meta name="color:background" content="#ffffff" />
  380. <meta name="color:postBackground" content="#ffffff" />
  381. <meta name="color:text" content="#000000" />
  382. <meta name="color:links" content="#919191" />
  383. <meta name="color:navlinks" content="#FF0066" />
  384. <meta name="color:shadow" content="#33CC33" />
  385. <meta name="color:postTitles" content="#003300" />
  386. <meta name="color:postShadow" content="#663300" />
  387. <meta name="color:descriptionbg" content="#99CCFF">
  388. <meta name="color:scrollbar" content="#CC3300" />
  389. <meta name="color:questionText" content="#333300" />
  390. <meta name="color:pageTitles" content="#9933FF" />
  391. <meta name="color:ribbonBorder" content="#565662" />
  392.  
  393. <meta name="image:leftImg" content="" />
  394. <meta name="image:rightImg" content="" />
  395. <meta name="image:ribbon" content="" />
  396.  
  397. <meta name="text:link1 URL" content="/" />
  398. <meta name="text:link2 URL" content="/" />
  399.  
  400. <meta name="text:link1 name" content="link one." />
  401. <meta name="text:link2 name" content="link two." />
  402.  
  403. <meta name="text:asktext" content="asked" />
  404. <meta name="text:tagSymbol" content="#" />
  405. <meta name="text:pageTitle" content="your title here" />
  406. <meta name="text:pageSubTitle" content="your subtitle here" />
  407.  
  408. <meta name="if:roundedPosts" content="1" />
  409. <meta name="if:postShadow" content="1" />
  410. <meta name="if:sidebarBackground" content="1" />
  411.  
  412.  
  413. </head>
  414. <body>
  415. {block:ifsidebarBackground}
  416. <div id="ribbon"></div>
  417. <div id="ribbon2"></div>
  418. {/block:ifsidebarBackground}
  419. <div id="arriba"></div>
  420. <div id="abajo"></div>
  421. <div id="nav">
  422. <a href="/">refresh.</a><br>
  423. <a href="/ask">askbox.</a><br>
  424. <a href="{text:link1 URL}">{text:link1 name}</a><br>
  425. <a href="{text:link2 URL}">{text:link2 name}</a>
  426. </div>
  427.  
  428. <div id="desc">
  429. <div id="desctext">{Description}</div></div>
  430. <div id="pagetitle">
  431. {text:pageTitle}
  432. <div id="pagesubtitle">{text:pageSubTitle}</div>
  433. </div>
  434.  
  435. {block:Pagination}
  436. <div id="pag">
  437. {block:PreviousPage}
  438. <a href="{PreviousPage}">back</a>
  439. {/block:PreviousPage}
  440. /
  441. {block:NextPage}
  442. <a href="{NextPage}">forth</a>
  443. {/block:NextPage}
  444. {/block:Pagination}
  445. </div>
  446. {/block:Pagination}
  447.  
  448. <div id="total">
  449. {block:Posts}
  450.  
  451. <div id="one">
  452.  
  453. {block:Photo}
  454. <img src="{PhotoURL-500}">
  455. {block:Caption}
  456. {Caption}
  457. {/block:Caption}
  458. {/block:Photo}
  459.  
  460. {block:Photoset}
  461. {Photoset-500}
  462. {block:Caption}
  463. {Caption}
  464. {/block:Caption}
  465. {/block:Photoset}
  466.  
  467. {block:Quote}
  468. <div id="quote"><h3 style="line-height:22px">&#10075;<i>{Quote}</i>&#10076;</h3></div>
  469. <p align="right">&mdash; {Source}</p>
  470. {/block:Quote}
  471.  
  472. {block:Video}
  473. {Video-500}
  474. {block:Caption}
  475. {Caption}
  476. {/block:Caption}
  477. {/block:Video}
  478.  
  479. {block:Chat}
  480. {block:Title}<h4>{Title}</h4>{/block:Title}
  481. <ul class="chat">
  482. {block:Lines}
  483. <li>
  484. {block:Label}
  485. <span class="{Alt}">{Label}</span>
  486. {/block:Label}
  487. {Line}
  488. </li>
  489. {/block:Lines}
  490. </ul>
  491. {/block:Chat}
  492.  
  493. {block:Audio}
  494. <div class="audbg">
  495. <div class="playbox"><div class="playbutton">{block:AudioPlayer}{AudioPlayerBlack}{/block:AudioPlayer}</div></div>
  496. </div>
  497.  
  498. {block:Caption}{Caption}{/block:Caption}
  499. {/block:Audio}
  500.  
  501. {block:Answer}
  502. <div id="quesh">
  503. <div id="queshtext">{Asker} {text:asktext}, </div>
  504.  
  505. <img src="{AskerPortraitURL-64}" />
  506.  
  507. <blockquote>{Question}</blockquote></div>
  508. {Answer}
  509. {/block:Answer}
  510.  
  511. {block:Link}
  512. <center>
  513. {block:Thumbnail}<img src="{Thumbnail}" style="height:64px; border-radius:32px;"/>{/block:Thumbnail}
  514. <a href="{URL}"><h3 style="text-shadow:-1px 1px {color:shadow}; font-size:22px; position:relative;">{Name} &raquo;</h3></a>
  515. </center>
  516. {block:Description}{Description}{/block:Description}
  517. {/block:Link}
  518.  
  519. {block:Text}
  520. {block:Title}<h4>{Title}</h4>{/block:Title}
  521. {Body}
  522. {/block:Text}
  523.  
  524. </div>
  525.  
  526. <div id="dbox">
  527. {block:Date} posted <a href="{PermaLink}">{TimeAgo}</a> {block:NoteCount} &mdash; {NoteCountWithLabel}{/block:NoteCount} {block:RebloggedFrom} &mdash; via <a href="{ReblogParentURL}"
  528. title="{ReblogParentTitle}">{ReblogParentName}</a> &mdash; <a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:RebloggedFrom}{/block:Date}
  529.  
  530. {block:hasTags}<div id="tbox">{block:Tags}{text:tagSymbol}<a href="{TagUrl}">{Tag}</a> {/block:Tags}</div>{/block:hasTags}
  531. </div>
  532.  
  533. {block:PostNotes}{PostNotes}{/block:PostNotes}
  534.  
  535. {/block:Posts}
  536. </div>
  537.  
  538. <div id="cred"><a href="http://snixwrites.tumblr.com">&#10008;</a></div>
  539.  
  540. </body>
  541. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement