Advertisement
lostmemento

→ How to Theme: Vol III & IV

May 8th, 2013
8,415
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <title>{Title}</title>
  5. <link rel="shortcut icon" href="{Favicon}">
  6. <link rel="altertnate" type="application/rss+xml" href="{RSS}">
  7. <meta name="description" content="" />
  8. <meta http-equiv="x-dns-prefetch-control" content="off"/>
  9.  
  10. <script type="text/javascript" src="http://static.tumblr.com/iuggpng/bGqm4yfv9/jquery-1.7.2.js"></script>
  11.  
  12. <style type="text/css">
  13.  
  14. body {
  15. font-size: 10px;
  16. font-family: Calibri, Candara, Segoe;
  17. color: #000;
  18. background-color: #f9f9f9;}
  19.  
  20. a {
  21. color: #cf2d85;
  22. text-decoration: none;
  23. -moz-transition-duration: 0.5s;
  24. -o-transition-duration: 0.5s;
  25. -webkit-transition-duration: 0.5s;
  26. transition-duration: 0.5s;}
  27.  
  28. a:hover {
  29. color: #000;
  30. -moz-transition-duration: 0.5s;
  31. -o-transition-duration: 0.5s;
  32. -webkit-transition-duration: 0.5s;
  33. transition-duration: 0.5s;}
  34.  
  35. .container {width: 800px; margin: auto;}
  36.  
  37. .sidebar {
  38. width: 200px;
  39. height: 200px;
  40. position: fixed;
  41. padding: 10px;
  42. background-color: #fff;}
  43.  
  44. .postcol {width: 540px; margin-left: 240px;}
  45.  
  46. .posts {margin-bottom: 20px; background-color: #fff; padding: 20px;}
  47. </style>
  48. </head>
  49.  
  50. <body>
  51. <div class="container">
  52.  
  53. <div class="sidebar">This is the sidebar div.
  54. <a href="/">This is a link.</a></div>
  55.  
  56. <div class="postcol"><div class="posts">This is the post div.</div></div>
  57.  
  58. </div>
  59. </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement