booksinvolved

theme pack #1: about page

Dec 28th, 2015
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.24 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. ------ COLOURS:
  11. I would recommend going with a single colour but of course it's up to you!
  12. If you're going for a single colour just ctrl+F: #ffcc97 and replace with whatever colour you want
  13. I've also marked all the places where you can change colours in the code. Please don't edit any part of the code that I haven't marked for editing unless you know what you're doing
  14. ------ Hope you like it!
  15. ------>
  16.  
  17. <title>{Title}</title>
  18. <link rel="shortcut icon" href="{Favicon}">
  19. <link rel="altertnate" type="application/rss+xml" href="{RSS}">
  20. <link href='http://fonts.googleapis.com/css?family=Fenix' rel='stylesheet' type='text/css'>
  21.  
  22. <link href='http://fonts.googleapis.com/css?family=Fondamento' rel='stylesheet' type='text/css'>
  23.  
  24. <style type="text/css">
  25.  
  26.  
  27.  
  28. ::-webkit-scrollbar-thumb:vertical { height:12px; border:2px solid #fff; background-color:#ffcc97; }
  29. ::-webkit-scrollbar-thumb:horizontal { background-color:#fff; }
  30. ::-webkit-scrollbar { width:11px; height:7px; border:5px solid #fff; background-color:#ffcc97; }
  31.  
  32. /* #ffcc97 in the three lines of code above is the scrollbar colour */
  33.  
  34.  
  35. body {
  36. background: #fff; /* BACKGROUND COLOR */
  37. color: #000; /* TEXT COLOR */
  38. font-size: 10px;
  39. font-family:calibri;
  40. overflow:hidden;
  41.  
  42. }
  43.  
  44. a:link, a:visited, a:active {
  45. font-weight:none;
  46. text-decoration:none;
  47. color:#5d2e46; /* LINK COLOR (ALSO TITLE COLOR) */
  48. transition:0.6s;
  49. }
  50.  
  51. a:hover {
  52. color:#000;
  53. }
  54.  
  55. #credit {
  56. position:fixed;
  57. z-index:100;
  58. bottom:10px;
  59. right:20px;
  60. }
  61.  
  62. #credit a {
  63. background:#eee;
  64. color:#000;
  65. font-family:cambria;
  66. font-size:10px;
  67. padding:2px;
  68. }
  69.  
  70. #credit a:hover {
  71. background:#000;
  72. color:#eee;
  73. }
  74.  
  75.  
  76. #cont {
  77. border-top:50px solid #ffcc97; /*TOP BORDER COLOR*/
  78. width:500px;
  79. height:300px;
  80. left:50%;
  81. margin-left:-250px;
  82. top:50%;
  83. margin-top:-180px;
  84. position:fixed;
  85. }
  86.  
  87. #title {
  88. position:fixed;
  89. height:40px;
  90. top:50%;
  91. left:0px;
  92. width:100%;
  93. margin-top:-215px;
  94. font-size:40px;
  95. font-family:arial;
  96. text-transform:lowercase;
  97. font-weight:bold;
  98. font-style:italic;
  99. text-align:Center;
  100. }
  101.  
  102. .images {
  103. width:250px;
  104. height:240px;
  105. margin:35px 0px;
  106. }
  107.  
  108. .images img {
  109. display:inline-block;
  110. margin:5px 10px 5px 0px;
  111. width:100px;
  112. height:100px;
  113. }
  114.  
  115. .about {
  116. width:240px;
  117. height:140px;
  118. padding:5px;
  119. margin-top:-285px;
  120. margin-left:250px;
  121. overflow:auto;
  122. }
  123.  
  124. .links {
  125. width:240px;
  126. height:100px;
  127. padding:5px;
  128. margin-left:250px;
  129. margin-top:10px;
  130.  
  131. }
  132.  
  133. .links a {
  134. display:inline-block;
  135. width:240px;
  136. padding:2px 0px;
  137. border-bottom:1px solid #ffcc97; /* LINKS BORDER COLOR */
  138. text-align:center;
  139. font-family:arial;
  140. text-transform:lowercase;
  141. font-weight:bold;
  142. color:#ffcc97; /* LINKS COLOR */
  143. }
  144.  
  145. .links a:hover {
  146. background:#ffcc97; /* LINKS HOVER BACKGROUND COLOR */
  147. color:#fff; /* LINKS HOVER COLOR */
  148. }
  149.  
  150.  
  151.  
  152. </style>
  153. </head>
  154.  
  155. <body>
  156.  
  157. <div id="cont">
  158. <div id="title">
  159. <a href="/">
  160.  
  161.  
  162. TITLE
  163.  
  164. </a>
  165. </div>
  166.  
  167. <div class="images"> <!----------- IMAGES -------------->
  168. <!---------- please only insert a maximum of 4 --------->
  169.  
  170. <img src="URL">
  171.  
  172. <img src="URL">
  173.  
  174. <img src="URL">
  175.  
  176. <img src="URL">
  177.  
  178. </div>
  179.  
  180. <!--------- DESCRIPTION: make it as long as you want ----------->
  181.  
  182. <div class="about">
  183.  
  184. WRITE YOUR DESCRIPTION HERE
  185.  
  186.  
  187. </div>
  188.  
  189. <!------------ LINKS ---------------------->
  190. <!----- again a maximum of 4 links -------->
  191.  
  192. <div class="links">
  193.  
  194. <a href="URL"> LINK </a>
  195.  
  196. <a href="URL"> LINK </a>
  197.  
  198. <a href="URL"> LINK </a>
  199.  
  200. <a href="URL"> LINK </a>
  201.  
  202. <!------- do not edit beyond this point ------>
  203.  
  204. </div>
  205.  
  206. </div>
  207.  
  208. <div id="credit">
  209. <a href="http://jasnahdavar.tumblr.com">JD.</a>
  210. </div>
  211. </body>
  212. </html>
Add Comment
Please, Sign In to add comment