Advertisement
booksinvolved

tags page 02

Jul 27th, 2014
882
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.97 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4.  
  5. <head>
  6.  
  7. <!---- theme by jasnahdavar
  8. ------ DO NOT steal/redistribute/remove credit
  9. ------ ASK ME if you want to use as a base code i promise i'm nice
  10. ------ you can have as many subheadings and tags as you want
  11.  
  12.  
  13. ------ COLORS:
  14. ------------- #FFD19C : TITLE BACKGROUND COLOR
  15. ------------- #FBFFD6 : TAGS CONTAINER COLOR
  16. ------------- #5A465C : TAGS SUBHEADING COLOR
  17. ------------- #AD5872 : TAGS COLOR
  18. ------------- #FF6987 : TAGS HOVER COLOR
  19.  
  20.  
  21. ------ HOW TO REPLACE COLORS:
  22. ------------- CTRL + F . Type in the hex code for the color. Replace the hex code with whatever color you want.
  23.  
  24.  
  25. ------ that's it i guess the code should be pretty simple
  26. ------ you can always ask me if you have any questions!
  27. ------>
  28.  
  29. <title>{Title}</title>
  30. <link rel="shortcut icon" href="{Favicon}">
  31. <link rel="altertnate" type="application/rss+xml" href="{RSS}">
  32. <link href='http://fonts.googleapis.com/css?family=Fenix' rel='stylesheet' type='text/css'>
  33.  
  34. <link href='http://fonts.googleapis.com/css?family=Fondamento' rel='stylesheet' type='text/css'>
  35.  
  36.  
  37.  
  38.  
  39.  
  40. <style type="text/css">
  41.  
  42.  
  43.  
  44. ::-webkit-scrollbar-thumb:vertical {
  45. background-color:#cfcfcf; /*slider color*/
  46. height:50px;
  47. }
  48.  
  49. ::-webkit-scrollbar-thumb:horizontal {
  50. background-color:#cfcfcf; /*slider color*/
  51. height:100px !important;
  52. }
  53.  
  54. ::-webkit-scrollbar {
  55. height:10px;
  56. width:7px;
  57. background-color:#eeeeee; /*scrollbar bg color*/
  58. }
  59. body {
  60. background: #fff;
  61. font-size: 11px;
  62. color: #000000;
  63. font-family:helvetica;
  64.  
  65. }
  66.  
  67. a:link, a:active, a:visited {
  68. color: #000; /* LINK COLOR */
  69. text-decoration: none;
  70. -webkit-transition: all 0.3s ease-out;
  71. -moz-transition: all 0.3s ease-out;
  72. transition: all 0.3s ease-out;
  73. }
  74.  
  75. a:hover {
  76. color: #000; /* LINK HOVER */
  77. text-decoration: none;
  78. -webkit-transition: all 0.3s ease-out;
  79. -moz-transition: all 0.3s ease-out;
  80. transition: all 0.3s ease-out;
  81.  
  82. }
  83.  
  84.  
  85.  
  86. #credit {
  87. position:fixed;
  88. right:10px;
  89. bottom:10px;
  90. }
  91.  
  92. #credit a {
  93. color:#999;
  94. font-weight:bold;
  95. }
  96.  
  97. #credit a:hover {
  98. text-decoration:none;
  99. color:#000;
  100. }
  101.  
  102. @font-face { font-family: "lobster"; src: url('http://themes.googleusercontent.com/static/fonts/lobster/v3/MWVf-Rwh4GLQVBEwbyI61Q.woff'); }
  103.  
  104. /* TITLE */
  105.  
  106. #titlebg {
  107. position:fixed;
  108. width:500px;
  109. height:40px;
  110. padding-top:10px;
  111. left:50%;
  112. top:100px;
  113. margin-left:-250px;
  114. text-align:Center;
  115. background:#ffd19c; /* --- TITLE BG COLOR ---*/
  116. font-family:"lobster";
  117. font-size:20px;
  118. z-index:2;
  119.  
  120. }
  121.  
  122.  
  123.  
  124. #titlebg::before {
  125. width: 0;
  126. height: 0;
  127. border-style: solid;
  128. border-width: 0 0 50px 50px;
  129. border-color: transparent transparent #ffd19c transparent;
  130. /*-------- REPLACE #FFD19C WITH THE TITLE BG COLOR -----*/
  131. content:"";
  132. position:fixed;
  133. top:50px;
  134. left:50%;
  135. margin-left:-250px;
  136. }
  137.  
  138. #titlebg::after {
  139. width: 0;
  140. height: 0;
  141. border-style: solid;
  142. border-width: 50px 50px 0 0;
  143. border-color: #ffd19c transparent transparent transparent;
  144. /*-------- REPLACE #FFD19C WITH THE TITLE BG COLOR -----*/
  145. content:"";
  146. position:fixed;
  147. left:50%;
  148. top:150px;
  149. margin-left:200px;
  150.  
  151. }
  152.  
  153. /* HOMELINK */
  154.  
  155. #homel {
  156. position:fixed;
  157. left:50%;
  158. margin-left:310px;
  159. top:115px;
  160.  
  161. }
  162.  
  163. #homel a {
  164. color:#5a465c; /* HOMELINK COLOR */
  165. }
  166.  
  167. #homel a:hover {
  168. color:#000; /* HOMELINK HOVER COLOR */
  169. }
  170.  
  171. #homel a::before {
  172. position:absolute;
  173. width:50px;
  174. border:1px solid #ffd19c; /* SAME AS TITLE BACKGROUND COLOR */
  175. content:"";
  176. margin-left:-60px;
  177. margin-top:8px;
  178. }
  179.  
  180.  
  181.  
  182.  
  183. /* TAGS CONTAINER */
  184.  
  185. #cont {
  186. position:absolute;
  187. width:380px;
  188. padding:160px 10px 100px 10px;
  189. left:50%;
  190. margin-left:-200px;
  191. background:#fbffb6; /* TAGS CONTAINER BACKGROUND COLOR */
  192. top:50px;
  193. }
  194.  
  195. #cont::before {
  196. content:"";
  197. position:fixed;
  198. top:0px;
  199. left:0px;
  200. width:100%;
  201. height:50px;
  202. background:#fff; /* SAME AS BODY BACKGROUND COLOR */
  203. }
  204. #cont::after {
  205. content:"";
  206. position:fixed;
  207. bottom:0px;
  208. left:0px;
  209. width:100%;
  210. height:50px;
  211. background:#fff; /* SAME AS BODY BACKGROUND COLOR */
  212. }
  213.  
  214. /* TAGS */
  215.  
  216. .tagtitle {
  217. font-family:"lobster";
  218. font-size:14px;
  219. text-align:Center;
  220. padding:2px 0px 2px 0px;
  221. color:#5a465c; /* TAG SUBHEADING COLOR */
  222. border-bottom:2px solid #5a465c;
  223. }
  224.  
  225.  
  226. .tags {
  227. margin-top:20px;
  228. }
  229.  
  230. .tags a {
  231. display:block;
  232. margin:5px;
  233. color:#ad5872; /* TAGS COLOR */
  234. font-style:italic;
  235. }
  236.  
  237. .tags a:hover {
  238. color:#ff6987; /* TAGS HOVER COLOR */
  239. }
  240.  
  241.  
  242.  
  243. </style>
  244. </head>
  245. <body>
  246. <div id="titlebg">
  247.  
  248. tags
  249.  
  250. </div>
  251.  
  252. <div id="homel">
  253.  
  254. <a href="/">home</a>
  255. <!--- DO NOT ADD MORE LINKS --->
  256. </div>
  257.  
  258. <!----------------------- TAGS ---------------->
  259. <div id="cont">
  260.  
  261. <div class="tagtitle">
  262.  
  263. subheading <!---- SUBHEADING 1 ---->
  264.  
  265.  
  266. </div>
  267.  
  268. <div class="tags">
  269.  
  270. <a href="">tag</a>
  271.  
  272. <a href="">tag</a>
  273.  
  274. <a href="">tag</a>
  275.  
  276. <a href="">tag</a>
  277.  
  278. <a href="">tag</a>
  279.  
  280. </div>
  281.  
  282.  
  283. <div class="tagtitle">
  284.  
  285. subheading <!----- SUBHEADING 2 ----->
  286.  
  287.  
  288. </div>
  289.  
  290. <div class="tags">
  291.  
  292. <a href="">tag</a>
  293.  
  294. <a href="">tag</a>
  295.  
  296. <a href="">tag</a>
  297.  
  298. <a href="">tag</a>
  299.  
  300. <a href="">tag</a>
  301.  
  302. </div>
  303.  
  304. <!-------- TO ADD MORE TAGS COPY THE CODE BELOW
  305.  
  306. <div class="tagtitle">
  307.  
  308. subheading
  309.  
  310.  
  311. </div>
  312.  
  313. <div class="tags">
  314.  
  315. <a href="">tag</a>
  316.  
  317.  
  318. </div>
  319.  
  320.  
  321. ---------------------
  322.  
  323. YOU CAN ADD AS MANY TAGS AS YOU LIKE
  324.  
  325. ----->
  326.  
  327. <!----------- PASTE THE CODE IN THE SPACE BELOW ----------------->
  328.  
  329.  
  330.  
  331.  
  332.  
  333. <!---------- PASTE THE CODE IN THE SPACE ABOVE ------------------>
  334.  
  335.  
  336. </div>
  337.  
  338. <!--- DO NOT REMOVE CREDIT----->
  339.  
  340. <div id="credit">
  341. <a href="http://jasnahdavar.tumblr.com">JD.</a>
  342. </div>
  343.  
  344. </body>
  345.  
  346.  
  347. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement