Advertisement
mogimochi

About Page [01] Tsunkei

Dec 1st, 2012
22,232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.19 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <!--
  6.  
  7. About Page 01 Tsunkei
  8. by yukoki/s-ekki
  9.  
  10. 1. Light/Heavy CSS editting is allowed.
  11. 2. Do not use as base code.
  12. 3. Do not remove credit.
  13. 4. Do not claim theme as your own.
  14.  
  15. ----------------------------------------------------------------------
  16. Please look out for notes throughout the code
  17. to help you in customizing the page!!
  18. -----------------------------------------------------------------------
  19.  
  20. -->
  21.  
  22. <title>{title}{block:PostSummary}, {PostSummary}{/block:PostSummary}</title>
  23. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  24. <link rel="shortcut icon" href="{Favicon}" />
  25.  
  26. <link href='http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:300' rel='stylesheet' type='text/css'>
  27.  
  28. <style type="text/css">
  29.  
  30. body {
  31. background-color: #ffffff; /** background colour **/
  32. background-image: url(https://31.media.tumblr.com/d5f6e38dc9751a48f095b169ce7a29a9/tumblr_inline_n4umqth1RT1rshr70.png);
  33. /** background image to be placed between the brackets! **/
  34. background-attachment: fixed;
  35. margin: 0;
  36. word-wrap: break-word;
  37. }
  38. a { text-decoration:none; }
  39.  
  40. ::-webkit-scrollbar { width: 7px; }
  41. ::-webkit-scrollbar-track-piece { background-color: #ffffff; } /** scroll bar background **/
  42. ::-webkit-scrollbar-thumb:vertical {
  43. width: 1px;
  44. border: 3px solid #ffffff; /** scroll bar background **/
  45. background-color: #f9ded7; /** scroll bar **/
  46. }
  47.  
  48. #main {
  49. width: 500px;
  50. margin-top: 110px;
  51. }
  52.  
  53. .pgtitle {
  54. width: 480px;
  55. padding: 10px;
  56. background-color: rgba(255,255,255,0.5);
  57. /**
  58.  
  59. if you want a black transparent background, replace this line with
  60.  
  61. background-color: rgba(0,0,0,0.5);
  62.  
  63. To change it to another colour, you have to find a colour picker, but instead of simply getting the 6 digit hexadecimal code, you've got to find the rgb value instead. The fourth value, is the opacity, which you can set to any value between 0.0 and 1.0. Use 1.0 if you want it to be completely solid.
  64.  
  65. If you do decide to change it, you have to remember to change all of them throughout the rest of the code.
  66.  
  67. **/
  68. font-family: yanone kaffeesatz; /** google web font; you can change it to whatever web-safe font family you can think of. **/
  69. color: #727272; /** colour of 'ABOUT ME' **/
  70. text-shadow: 1px 0 0 #ffffff; /** shadow of 'ABOUT ME' **/
  71. font-size: 24px;
  72. letter-spacing: 7px;
  73. text-transform: uppercase;
  74. }
  75.  
  76. .infobox {
  77. width: 130px;
  78. height: 130px;
  79. margin-top: 10px;
  80. float: left;
  81. }
  82.  
  83. .infoboxicon {
  84. background-color: rgba(255,255,255,0.5);
  85. padding: 20px;
  86. width: 130px;
  87. height: 130px;
  88. display: block;
  89. }
  90.  
  91. .infoline {
  92. background-color: rgba(255,255,255,0.5);
  93. margin-top: 5px;
  94. padding: 4px 10px;
  95. width: 140px;
  96. font-family: yanone kaffeesatz;
  97. font-size: 14px;
  98. text-transform: uppercase;
  99. text-align: left;
  100. color: #555555; /** info lines' text colour **/
  101. border-left: 10px solid #f8c796; /** info lines' left borders **/
  102. }
  103.  
  104. .biobox {
  105. float: right;
  106. background-color: rgba(255,255,255,0.5);
  107. margin-top: 10px;
  108. padding: 20px;
  109. width: 280px;
  110. height: 216px;
  111. font-family: calibri;
  112. overflow: auto;
  113. font-size: 10px;
  114. text-align: justify;
  115. color: #888888; /** bio box text colour **/
  116. }
  117.  
  118. .biobox b, strong {color: #ddbd9e;} /** bio box bold text **/
  119. .biobox i,em {color: #ffc99e;} /**bio box italic text **/
  120. .biobox a {
  121. color: #bebebe; /** bio box links **/
  122. text-decoration: underline;
  123. transition: 0.6s;
  124. -moz-transition: 0.6s;
  125. -webkit-transition: 0.6s;
  126. -o-transition: 0.6s;
  127. }
  128. .biobox a:hover { color: #777777; } /** bio box links hover **/
  129.  
  130. #linkbox {
  131. background-color: rgba(255,255,255,0.5);
  132. width: 500px;
  133. margin-top: 10px;
  134. height: 52px;
  135. float: right;
  136. line-height: 52px;
  137. }
  138.  
  139. #linkbox a {
  140. background-color: #ffffff; /** bottom links background **/
  141. color: #c8ab8d; /** bottom links text **/
  142. font-family: calibri;
  143. font-size: 10px;
  144. margin: 0 2px;
  145. padding: 2px 7px;
  146. text-transform: uppercase;
  147. transition: 0.6s;
  148. -moz-transition: 0.6s;
  149. -webkit-transition: 0.6s;
  150. -o-transition: 0.6s;
  151. }
  152. #linkbox a:hover {text-decoration: line-through;}
  153.  
  154. {CustomCSS}
  155.  
  156. </style>
  157. </head>
  158. <body>
  159.  
  160. <center>
  161.  
  162. <div id="main">
  163.  
  164. <div class="pgtitle">about me</div>
  165.  
  166. <div class="infobox">
  167.  
  168. <!-- the below line is where you key in the link to your icon. The actual image size is 130 px by 130px, but it auto-resizes as long as you have a square image. Remember to place it in between the quotation marks! -->
  169.  
  170. <img class="infoboxicon" src="https://31.media.tumblr.com/e2cdac38fef047eb433388018e6f338f/tumblr_inline_n4uqulCRh21rshr70.png">
  171.  
  172. <!-- the below section is where you key in your basic info below the image! You can change it to whatever you want tbh, just as long as you follow the basic example below:
  173.  
  174. <div class="infoline">name: harry potter</div>
  175. <div class="infoline">age: 15</div>
  176. <div class="infoline">country: britain</div>
  177.  
  178. -->
  179.  
  180. <div class="infoline">name: </div>
  181. <div class="infoline">age: </div>
  182. <div class="infoline">country: </div>
  183.  
  184. </div><!--infobox-->
  185.  
  186. <div class="biobox">
  187.  
  188. Here goes your biography!
  189.  
  190. <!------------------------------------------------------------------------
  191. PLEASE WRITE YOUR BIO ABOVE!! (DO NOT WRITE IT IN BETWEEN THE ARROWS; MAKE SURE IT'S NOT FADED OUT AND GREYISH LIKE THE TEXT HERE!
  192. IF YOU WANT TO LEARN HOW TO MAKE PARAGRAPHS, LINK SITES, BOLD TEXT, ITALIZE TEXT, UNDERLINE TEXT, ETC, GO HERE:
  193.  
  194. http://theme-hunter.tumblr.com/post/36665898985/cheat-sheet
  195. ------------------------------------------------------------------------->
  196.  
  197. </div><!--biobox-->
  198.  
  199. <div id="linkbox">
  200.  
  201. <a href="/">return</a>
  202. <a href="/ask">message</a>
  203. <a href="/archive">archive</a>
  204. <a href="http://tumblr.com/dashboard">dashboard</a>
  205. <a href="/">link 01</a>
  206. <a href="/">link 02</a>
  207. <a href="http://yukoki.tumblr.com">credit</a>
  208.  
  209. </div><!--linkbox-->
  210.  
  211. </div><!--main-->
  212.  
  213. </center>
  214.  
  215. </body>
  216. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement