Advertisement
jmilne22

Untitled

Nov 19th, 2014
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.20 KB | None | 0 0
  1. /* Reset */
  2. * {
  3.     outline: 1px dotted red; /*temporary, will be set to 0px after design */
  4.     margin: 0px;
  5.     padding: 0px;
  6.     border: 0px;
  7.     font: 12px/16px "Trebuchet MS", Helvetica, sans-serif;
  8. }
  9. /* address older browsers */
  10. header, footer, article, nav, section, aside, time, hgroup {
  11.     display: block;
  12. }
  13. /* basics for page layout */
  14. body {
  15.     width: 800px;
  16.     margin : 0 auto; /* to center the page */
  17.     position : relative; /* to enable positioning */
  18. }
  19. a{
  20.     background-color: black;
  21.     color: white;
  22.     font-size: 18px;
  23.     margin: 10px;
  24.     z-index: 10px;
  25.     position: relative;
  26.     bottom: 20px;
  27.  
  28. }
  29. nav{
  30.     position: absolute;
  31.     z-index: 10000;
  32. }
  33. header {
  34.     min-height : 140px;
  35.     position : relative;
  36. }
  37. article {
  38.     width: 64%;
  39.     float: left;
  40.     height : auto;
  41.     padding: 5px;
  42.     max-height: 500px;
  43.     overflow: scroll;
  44. }
  45. aside {
  46.     width: 32%;
  47.     float: right;
  48.     min-height: 200px;
  49.     padding: 5px;
  50.     max-height: 500px;
  51.     overflow: scroll;
  52. }
  53. footer {
  54.     clear: both;
  55.     min-height: 100px;
  56. }
  57. #logo{
  58.     width: 800px;
  59.     height: 150px;
  60.     z-index: 0;
  61. }
  62. #sheridan{
  63.     position: absolute;
  64.     z-index: 100;
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement