Advertisement
maha_kaal

CSS KAAL

Sep 9th, 2011
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.80 KB | None | 0 0
  1. @charset "utf-8";
  2. /* GENERAL STYLE SHEET
  3. @author: the Maha_Kaal
  4. @URI: http://kaalworld.hellospace.net+
  5. */
  6.  
  7. /*** General Settings ***/
  8. HTMl, Body {
  9.     background: #CCC ;
  10.     margin: 0 20px;
  11. }
  12.  
  13. /*** #page ***/
  14. body #page {
  15.     min-width: 960px;
  16.     background: #999;
  17.     box-shadow: -2px -2px 4px #000;
  18.     border-radius: 20px;
  19.    
  20. }
  21.  
  22. /*** #header ***/
  23. #header {
  24.     min-width: 700px;
  25.     color: #CCC;
  26.     font: 4em "Courier New", Courier, monospace;
  27.     text-align:center;
  28. }
  29.  
  30. #header h1 {
  31.     display:block;
  32.     text-shadow: -2px -2px #000;
  33.     text-align: center;
  34.     line-height: normal;
  35.     margin-bottom: 0px;
  36. }
  37.  
  38. .sub-title{
  39.     float: right;
  40.     font-style: italic;
  41.     font-size: 36px;
  42. }
  43.  
  44. /*** #Content ***/
  45.  
  46. #left-side-menu {
  47.     float: left;
  48.     margin 10px;
  49.     padding: 10px;
  50. }
  51.  
  52. #main {
  53.     clear:left;
  54.     margin-left: 500px;
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement