clerihew

09. neutral

Dec 15th, 2018
752
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3. <!--
  4. © Clerihew Themes 2018
  5.  
  6. Do not use without reading terms of use.
  7.  
  8. Contact me at clerihew.tumblr.com if you have problems with any
  9. un-heavily edited code or if you have questions on how to use this theme.
  10. -->
  11.  
  12. <title>{Title}</title>
  13.  
  14. <link rel="shortcut icon" href="{favicon}">
  15.  
  16. <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
  17.  
  18. <!-- basic variables -->
  19. <meta name="text:Link 1 URL" content=""/>
  20. <meta name="text:Link 1" content=""/>
  21. <meta name="text:Link 2 URL" content=""/>
  22. <meta name="text:Link 2" content=""/>
  23. <meta name="text:Link 3 URL" content=""/>
  24. <meta name="text:Link 3" content=""/>
  25. <meta name="text:Link 4 URL" content=""/>
  26. <meta name="text:Link 4" content=""/>
  27.  
  28. <style>
  29.  
  30. /* body background color, font family */
  31. body {
  32. background-color: #f7f7f7;
  33. font-family: "Open Sans", sans-serif;
  34. color: #6b6b6b;
  35. }
  36.  
  37. /* topbar background color */
  38. .topbar {
  39. height: 30px;
  40. width: 100vw;
  41. position: fixed;
  42. top: 0;
  43. left: 0;
  44. background-color: #afafaf;
  45. text-transform: uppercase;
  46. z-index: 10;
  47. text-align: center;
  48. }
  49.  
  50. .topbar .links {
  51. font-size: 12px;
  52. margin-top: 7px;
  53. width: 500px;
  54. margin-left: 385px;
  55. margin-right: 385px;
  56. }
  57.  
  58. /* topbar links color */
  59. .topbar a {
  60. text-decoration: none;
  61. color: white;
  62. display: inline-block;
  63. padding: 0px 10px 0px 10px;
  64. -webkit-transition: color 0.5s;
  65. -moz-transition: color 0.5s;
  66. -o-transition: color 0.5s;
  67. transition: color 0.5s;
  68. }
  69.  
  70. /* topbar links hover color */
  71. .topbar a:hover {
  72. color: #6b6b6b;
  73. }
  74.  
  75. /* header background color */
  76. header {
  77. position: absolute;
  78. width: 100vw;
  79. height: 170px;
  80. top: 0;
  81. left: 0;
  82. right: 0;
  83. background-color: #dbdbdb;
  84. margin-top: 30px;
  85. }
  86.  
  87. /* icon border color/width */
  88. header img {
  89. margin-top: 25px;
  90. border: 2px solid white;
  91. border-radius: 50px;
  92. }
  93.  
  94. /* blog title color */
  95. header h3 {
  96. color: #4a4a4a;
  97. text-align: center;
  98. margin-top: 0;
  99. margin-bottom: 0;
  100. }
  101.  
  102. /* description color */
  103. header p {
  104. color: #6b6b6b;
  105. font-size: 10px;
  106. margin-top: 20px;
  107. }
  108.  
  109. /* description link color */
  110. header p a {
  111. color: black;
  112. text-decoration: none;
  113. -webkit-transition: color 0.5s;
  114. -moz-transition: color 0.5s;
  115. -o-transition: color 0.5s;
  116. transition: color 0.5s;
  117. }
  118.  
  119. /* description link hover color */
  120. header p a:hover {
  121. color: white;
  122. }
  123.  
  124. #content {
  125. width: 500px;
  126. margin-top: 250px;
  127. margin-left: 375px;
  128. margin-right: 375px;
  129. }
  130.  
  131. /* posts links color */
  132. #content a {
  133. text-decoration: none;
  134. color: #ccc;
  135. -webkit-transition: color 0.5s;
  136. -moz-transition: color 0.5s;
  137. -o-transition: color 0.5s;
  138. transition: color 0.5s;
  139. }
  140.  
  141. /* posts links color hover */
  142. #content a:hover {
  143. color: #afafaf;
  144. }
  145.  
  146. #content blockquote {
  147. padding-left: 10px;
  148. }
  149.  
  150. img {
  151. border: 0;
  152. max-width: 100%;
  153. }
  154.  
  155. /* post background color */
  156. #content #posts {
  157. background-color: white;
  158. box-shadow: 5px 10px 20px #ccc;
  159. width: 500px;
  160. padding: 10px;
  161. margin: 0 auto 20px;
  162. }
  163.  
  164. /* posts title font size */
  165. #content #posts .title {
  166. font-size: 22px;
  167. }
  168.  
  169. /* posts text font size */
  170. #content #posts .text {
  171. font-size: 14px;
  172. }
  173.  
  174. /* background for questions in asks */
  175. .q {
  176. background-color: #e5e5e5;
  177. color: black;
  178. padding: 4px;
  179. }
  180.  
  181. #content #posts #permalink {
  182. font-size: 12px;
  183. margin-top: 10px;
  184. padding: 5px;
  185. }
  186.  
  187. #content #notecontainer {
  188. margin: 20px auto;
  189. width: 500px;
  190. }
  191.  
  192. /* post pages links color */
  193. #content #notecontainer a {
  194. color: black;
  195. padding: 3px;
  196. -webkit-transition: color 0.5s;
  197. -moz-transition: color 0.5s;
  198. -o-transition: color 0.5s;
  199. transition: color 0.5s;
  200. }
  201.  
  202. /* post pages links color hover */
  203. #content #notecontainer a:hover {
  204. color: #ccc;
  205. }
  206.  
  207. #content #notecontainer ol.notes {
  208. list-style-type: none;
  209. margin: 0;
  210. padding: 3px;
  211. }
  212.  
  213. #content #postcontainer img.avatar {
  214. width: 16px;
  215. height: 16px;
  216. }
  217.  
  218. .pagenav {
  219. width: 500px;
  220. margin-left: 375px;
  221. margin-right: 375px;
  222. text-align: center;
  223. }
  224.  
  225. /* pagenav color */
  226. .pagenav a {
  227. color: #6b6b6b;
  228. text-decoration: none;
  229. display: inline-block;
  230. margin-top: 15px;
  231. -webkit-transition: color 0.5s;
  232. -moz-transition: color 0.5s;
  233. -o-transition: color 0.5s;
  234. transition: color 0.5s;
  235. }
  236.  
  237. /* pagenav hover color */
  238. .pagenav a:hover {
  239. color: #ccc;
  240. }
  241.  
  242.  
  243. /* tumblr controls credit to @cyantists on tumblr */
  244. iframe.tmblr-iframe {
  245. z-index:99999999999999!important;
  246. top:-2px!important;
  247. right:15px!important;
  248. opacity:0;
  249. padding-right:38px;
  250. /* delete invert(1) from here */
  251. filter:invert(1) contrast(150%);
  252. -webkit-filter:invert(1) contrast(150%);
  253. -o-filter:invert(1) contrast(150%);
  254. -moz-filter:invert(1) contrast(150%);
  255. -ms-filter:invert(1) contrast(150%);
  256. /* to here if your blog has a dark background */
  257. transform:scale(0.65);
  258. transform-origin:100% 0;
  259. -webkit-transform:scale(0.65);
  260. -webkit-transform-origin:100% 0;
  261. -o-transform:scale(0.65);
  262. -o-transform-origin:100% 0;
  263. -moz-transform:scale(0.65);
  264. -moz-transform-origin:100% 0;
  265. -ms-transform:scale(0.65);
  266. -ms-transform-origin:100% 0;
  267. }
  268.  
  269. iframe.tmblr-iframe:hover {
  270. opacity:0.6!important;
  271. }
  272.  
  273. .hcontrols {
  274. position:fixed;
  275. top:0;
  276. right:0;
  277. z-index:999999999;
  278. }
  279.  
  280. .hcontrols svg {
  281. width:12px;
  282. height:12px;
  283. padding:9px;
  284. }
  285.  
  286. /* gear color */
  287. .hcontrols svg path {
  288. fill: white;/* change this to change the color of the icon */
  289. }
  290.  
  291. /* DO NOT TOUCH THIS */
  292. .credit {
  293. width: 18px;
  294. height: 20px;
  295. background-color: #afafaf;
  296. position: fixed;
  297. bottom: 5px;
  298. right: 5px;
  299. text-align: center;
  300. }
  301.  
  302. .credit a {
  303. text-decoration: none;
  304. color: white;
  305. -webkit-transition: color 0.5s;
  306. -moz-transition: color 0.5s;
  307. -o-transition: color 0.5s;
  308. transition: color 0.5s;
  309. }
  310.  
  311. .credit a:hover {
  312. color: black;
  313. }
  314.  
  315. </style>
  316.  
  317. </head>
  318. <body>
  319. <div class="topbar">
  320. <div class="links">
  321. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}
  322. {block:ifLink2}<a href="{text:Link 2 URL}">{text:Link 2}</a>{/block:ifLink2}
  323. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a>{/block:ifLink3}
  324. {block:ifLink4}<a href="{text:Link 4 URL}">{text:Link 4}</a>{/block:ifLink4}
  325. </div>
  326. </div>
  327.  
  328. <div align="center">
  329. <header>
  330. <div align="center">
  331. <img src="{PortraitURL-40}"/>
  332. <h3>{Title}</h3>
  333. <p>{block:Description}{Description}{/block:Description}</p>
  334. </div>
  335. </header>
  336. </div>
  337.  
  338. <div id="content">
  339. {block:Posts}
  340. <div id="posts">
  341. {block:Photo}
  342. <img src="{PhotoURL-500}">
  343. {block:Caption}<div class="text">{Caption}</div>{/block:Caption}
  344. {/block:Photo}
  345.  
  346. {block:Photoset}
  347. {Photoset-500}
  348. {block:Caption}<div class="text">{Caption}</div>{/block:Caption}{/block:Caption}
  349. {/block:Photoset}
  350.  
  351. {block:Video}
  352. {Video-500}
  353. {block:Caption}<div class="text">{Caption}</div>{/block:Caption}
  354. {/block:Video}
  355.  
  356. {block:Audio}
  357. {AudioPlayerBlack}
  358. <br /><div class="text">{PlayCountWithLabel}</div>
  359. {block:Caption}<br /><div class="text">{Caption}</div>{/block:Caption}
  360. {/block:Audio}
  361.  
  362. {block:Quote}
  363. <div class="title">"{Quote}"</div>
  364. {block:Source}<br>~ {Source}{/block:Source}
  365. {/block:Quote}
  366.  
  367. {block:Text}
  368. {block:Title}<div class="title">{Title}<br /></div>{/block:Title}
  369. <div class="text">{Body}</div>
  370. {/block:Text}
  371.  
  372. {block:Answer}
  373. <div class="q">{Question}<br />
  374. {Asker}</div><br />
  375. {Answer}
  376. {/block:Answer}
  377.  
  378. {block:Chat}
  379. <div class="title">{block:Title}{Title}<br />{/block:Title}</div>
  380. <div class="text">{block:Lines}
  381. {block:Label}<strong>{Label}</strong>{/block:Label} {Line}<br />
  382. {/block:Lines}</div>
  383. {/block:Chat}
  384.  
  385. {block:Link}
  386. <a href="{URL}">{Name}</a>
  387. {block:Description}<br /><div class="text">{Description}</div>{/block:Description}
  388. {/block:Link}
  389.  
  390.  
  391. <div id="permalink">
  392. <a href="{PermaLink}">
  393. {block:Date}{lang:Posted TimeAgo}{/block:Date}
  394. {block:NoteCount} with {NoteCountWithLabel}{/block:NoteCount}
  395. </a>
  396. </div>
  397. </div>
  398.  
  399. {block:PostNotes}
  400. <div id="notecontainer">{PostNotes}</div>
  401. {/block:PostNotes}
  402.  
  403.  
  404. {/block:Posts}
  405. </div>
  406.  
  407.  
  408. <div class="hcontrols"><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 216 216" enable-background="new 0 0 216 216" xml:space="preserve"><path d="M106.6,134c14.3,0,26-11.7,26-26s-11.7-26-26-26s-26,11.7-26,26S92.2,134,106.6,134z M106.6,94c7.7,0,14,6.3,14,14s-6.3,14-14,14s-14-6.3-14-14S98.9,94,106.6,94z M40.4,124.6l7.2,3.3c3,1.4,4.4,4.8,3.3,7.9l-2.8,7.4c-2.1,5.7-1.4,11.8,2.1,16.7c3.4,5,9,7.9,15,7.9c2.2,0,4.4-0.4,6.5-1.2l7.4-2.8c0.7-0.3,1.4-0.4,2.2-0.4c2.4,0,4.7,1.4,5.7,3.7l3.3,7.2c3,6.6,9.4,10.7,16.6,10.7s13.6-4.1,16.6-10.7l3.3-7.2c1-2.2,3.2-3.7,5.7-3.7c0.7,0,1.5,0.1,2.2,0.4l7.4,2.8c2.1,0.8,4.3,1.2,6.5,1.2c0,0,0,0,0,0c5.9,0,11.5-3,15-7.9c3.4-5,4.2-11.1,2.1-16.7l-2.8-7.4c-1.1-3.1,0.3-6.5,3.3-7.9l7.2-3.3c6.6-3,10.7-9.4,10.7-16.6s-4.1-13.6-10.7-16.6l-7.2-3.3c-3-1.4-4.4-4.8-3.3-7.9l2.8-7.4c2.1-5.7,1.4-11.8-2.1-16.7c-3.4-5-9-7.9-15-7.9c-2.2,0-4.4,0.4-6.5,1.2l-7.4,2.8c-0.7,0.3-1.4,0.4-2.2,0.4c-2.4,0-4.7-1.4-5.7-3.7l-3.3-7.2c-3-6.6-9.4-10.7-16.6-10.7S93,35.2,90,41.8l-3.3,7.2c-1,2.2-3.2,3.7-5.7,3.7c-0.7,0-1.5-0.1-2.2-0.4l-7.4-2.8c-2.1-0.8-4.3-1.2-6.5-1.2c-5.9,0-11.5,3-15,7.9c-3.4,5-4.2,11.1-2.1,16.7l2.8,7.4c1.1,3.1-0.3,6.5-3.3,7.9l-7.2,3.3c-6.6,3-10.7,9.4-10.7,16.6S33.8,121.6,40.4,124.6z M45.3,102.3l7.2-3.3c8.7-4,12.9-14.1,9.5-23l-2.8-7.4c-1-2.7,0-4.7,0.7-5.7c1.6-2.4,4.6-3.4,7.4-2.3l7.4,2.8c2.1,0.8,4.2,1.2,6.4,1.2c0,0,0,0,0,0c7.1,0,13.6-4.2,16.6-10.7l3.3-7.2c1.5-3.4,4.7-3.7,5.7-3.7s4.1,0.3,5.7,3.7l3.3,7.2c3,6.5,9.5,10.7,16.6,10.7c2.2,0,4.3-0.4,6.4-1.2l7.4-2.8c2.8-1,5.7,0,7.4,2.3c0.7,1,1.7,3,0.7,5.7l-2.8,7.4c-3.3,8.9,0.8,19,9.5,23l7.2,3.3c3.4,1.5,3.7,4.7,3.7,5.7s-0.3,4.1-3.7,5.7l-7.2,3.3c-8.7,4-12.9,14.1-9.5,23l2.8,7.4c1,2.7,0,4.7-0.7,5.7c-1.6,2.4-4.6,3.4-7.4,2.3l-7.4-2.8c-2.1-0.8-4.2-1.2-6.4-1.2c-7.1,0-13.6,4.2-16.6,10.7l-3.3,7.2c-1.5,3.4-4.7,3.7-5.7,3.7s-4.1-0.3-5.7-3.7l-3.3-7.2c-3-6.5-9.5-10.7-16.6-10.7c-2.2,0-4.3,0.4-6.4,1.2l-7.4,2.8c-2.8,1-5.7,0-7.4-2.3c-0.7-1-1.7-3-0.7-5.7l2.8-7.4c3.3-8.9-0.8-19-9.5-23l-7.2-3.3c-3.4-1.5-3.7-4.7-3.7-5.7S41.9,103.9,45.3,102.3z"/></svg></div>
  409.  
  410. {block:Pagination}
  411. <div class="pagenav">
  412. <!-- change words for pagination here -->
  413. {block:PreviousPage}<a href="{PreviousPage}">previous</a>{/block:PreviousPage}
  414. {block:NextPage}<a href="{NextPage}">next</a>{/block:NextPage}
  415. </div>
  416. {/block:Pagination}
  417.  
  418. <!-- DO NOT TOUCH THIS -->
  419. <div class="credit">
  420. <a href="https://clerihew.tumblr.com/">C</a>
  421. </div>
  422.  
  423.  
  424. </body>
Advertisement
Add Comment
Please, Sign In to add comment