Advertisement
turlando

style.css

Jun 10th, 2011
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.32 KB | None | 0 0
  1. html {
  2. }
  3.  
  4. section, article, footer, aside, nav, label {
  5.     display: block;
  6. }
  7.  
  8. body {
  9.     height: 100%;
  10.     width: 70%;
  11.     margin: 0 auto;
  12.     padding-top: 20px;
  13. #   padding-bottom: 20px;
  14. }
  15.  
  16. h1, h2 {
  17.     font-family: sans-serif;
  18. }
  19.  
  20. p, a, li {
  21.   font-family: helvetica, arial, sans-serif;
  22.   font-size: 1em;
  23.   text-align: justify;
  24. }
  25.  
  26. p {
  27.     margin: 7px;
  28. }
  29.  
  30. a:link {
  31.     color: #EE4000;
  32. }
  33.  
  34. a:hover {
  35.     font-weight: bold;
  36. }
  37.  
  38. a:visited {
  39.     color: #EE4000;
  40. }
  41.  
  42. header {
  43.     width: 100%;
  44.     padding-bottom: 20px;
  45. }
  46.  
  47. header h1, header h2 {
  48.     margin: 0;
  49.     padding: 0 35px;
  50. }
  51.  
  52. header h1 {
  53.     font-size: 3em;
  54.     font-family: helvetica, arial, sans-serif;
  55.     color: #EE4000;
  56. }
  57.  
  58. header h2 {
  59.     font-family: helvetica, arial, sans-serif;
  60.     font-weight: bold
  61. }
  62.  
  63. header nav {
  64.     height: auto;
  65.     font-family: sans-serif;
  66.     font-size: 1.1em;
  67. }
  68.  
  69. header nav ul {
  70.     list-style: none;
  71. }
  72.  
  73. header nav ul li {
  74.     float: left;
  75.     margin-right: 20px;
  76.     text-align: center;
  77.     text-decoration: none;
  78. }
  79.  
  80. aside {
  81.     float: right;
  82.     padding-left: 20px;
  83.     width: 30%;
  84. }
  85.  
  86. aside section h1 {
  87.     font-size: 1.5em;
  88. }
  89.  
  90. #content{
  91.     width: 68%
  92. }
  93.  
  94. #content section h1 {
  95.     font-size: 1.5em;
  96. }
  97.  
  98. label {
  99.     float: left;
  100.     clear: left;
  101.     width: auto;
  102.     margin-right: 10px;
  103. }
  104.                  
  105. fieldset {
  106.     border: 1px solid #ccc;
  107.     margin-bottom: 20px;
  108.     width: auto;
  109. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement