Advertisement
pictochat

(old) about page 1 : 細雪

Feb 17th, 2013
782
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.50 KB | None | 0 0
  1. <!--
  2. /////////////////////////////////////////////////////////////////
  3. about page by lauren (sinnohs) @ tumblr.com
  4. /////////////////////////////////////////////////////////////////
  5. -->
  6.  
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  9. <head>
  10. <title>{Title}</title>
  11. <link rel="shortcut icon" href="{Favicon}">
  12. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  13. {block:Description}
  14. <meta name="description" content="{MetaDescription}" />
  15. {/block:Description}
  16. <style type="text/css">
  17.  
  18. /* BODY, SCROLLBAR */
  19.  
  20. body {
  21. background: #fff url('') fixed repeat; /* background color and image */
  22. font:10px consolas; /* font size and family */
  23. color:#ccc; /* font color */
  24. text-align:justify; /* aligning of the text: left, center, right, justify */
  25. }
  26.  
  27. ::-webkit-scrollbar-thumb{
  28. background-color: #ccc; /* background of scrollbar thumb */
  29. height:auto; /* height- auto determines height for you */
  30. }
  31.  
  32. ::-webkit-scrollbar {
  33. height:auto; /* height- auto determines height for you */
  34. width:2px; /* width of scrollbar AND thumb */
  35. background-color: #fff; /* background of scrollbar */
  36. }
  37.  
  38. /* TEXT LINKS */
  39.  
  40. a {
  41. color:#aaa;
  42. text-decoration:none;
  43. -webkit-transition: all 0.5s ease-in-out;
  44. -moz-transition: all 0.5s ease-in-out;
  45. -o-transition: all 0.5s ease-in-out;
  46. transition: all 0.5s ease-in-out;
  47. }
  48.  
  49. a:hover {
  50. color:#eee;
  51. }
  52.  
  53. /* IMAGE - keep max-width to 100% */
  54.  
  55. img {
  56. max-width:100%; /* basically, how wide an image can be at most */
  57. }
  58.  
  59. /* GENERAL LAYOUT FOR ABOUT PAGE */
  60.  
  61. #cardboard-box {
  62. background:#fff; /* background of about page */
  63. width:300px; /* IMAGE - keep max-width to 100% */
  64. padding:15px; /* padding: top, right, bottom, left */
  65. margin:50px auto 0px auto; /* margin: top, right, bottom, left */
  66. border:1px solid #eee; /* border */
  67. }
  68.  
  69. /* ABOUT TITLE */
  70.  
  71. h1 {
  72. font:18px georgia; /* font size and family */
  73. font-style:oblique; /*basically, it's italicized*/
  74. color:#ccc; /* color of title */
  75. text-align:center; /* aligning of the text: left, center, right, justify */
  76. border-bottom:1px dashed #eee;
  77. padding-bottom:5px;
  78. }
  79.  
  80. /* DESCRIPTION */
  81.  
  82. .desc {
  83. margin:-3px 3px 3px 3px; /* margin: top, right, bottom, left */
  84. max-height:150px; /* the maximum height for the box */
  85. overflow-y:scroll; /* what to do with overflow */
  86. padding:0px 8px 0px 8px; /* margin: top, right, bottom, left */
  87. }
  88.  
  89. /* LINKS */
  90.  
  91. .links {
  92. padding-top:5px;
  93. padding-bottom:0px;
  94. }
  95.  
  96. .links a {
  97. padding:3px;
  98. font-size:9px;
  99. background:#ccc;
  100. color:#fff;
  101. margin:0px;
  102. text-transform:uppercase;
  103. text-decoration:none;
  104. -webkit-transition: all 0.5s ease-in-out;
  105. -moz-transition: all 0.5s ease-in-out;
  106. -o-transition: all 0.5s ease-in-out;
  107. transition: all 0.5s ease-in-out;
  108. }
  109.  
  110. .links a:hover {
  111. background:#aaa;
  112. }
  113.  
  114. </style>
  115. </head>
  116. <body>
  117.  
  118. <!-- beginning of about page -->
  119. <div id="cardboard-box">
  120.  
  121. <!-- picture -->
  122. <img src="http://media.tumblr.com/7dcdb462a229fc34e626f88476731fcc/tumblr_inline_mie1w1lfHx1qz4rgp.png">
  123.  
  124. <!-- title for about page -->
  125. <h1>title</h1>
  126.  
  127. <!-- beginning of about section, this is where you put your bio -->
  128. <div class="desc">
  129. You can <a href="http://drawr.net/user.php?id=113024">delete</a> this text when you're customizing this page. This is just a placeholder for right now, it shows how the scrollbar looks when the description is over 200px tall.
  130. </br></br>
  131. This is where your description goes! You can make it as long or as short as you please. When it gets to be over 150px tall, it will automatically have a scrollbar so you don't have to scroll down on the page itself but in the set perameters of the text box. Isn't that neat? I think so! ♪
  132. </br></br>
  133. This theme was really fun to make. I hope that you enjoy using it! It makes me so happy to see people using my codes and the way they customize it... You can tell a lot about someone from the way they decorate their page. I like to think this page gives off a 'simple and clean' type of feeling, since I was going for that!
  134. </div><!-- desc -->
  135. <div class="links">
  136. <center>
  137. <a href="/">index</a>
  138. <a href="/ask">message</a>
  139. <a href="/archive">memories</a>
  140. <!-- extra links; you can add more if you'd like -->
  141. <a href="/">link one</a>
  142. <a href="/">link two</a>
  143. <a href="http://sinnohs.tumblr.com/" target="_blank" title="theme by lauren">©</a>
  144. </center>
  145. </div><!-- links -->
  146. </div><!-- cardboard-box -->
  147.  
  148. </body>
  149. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement