bioxv1rus

help_cssproject_please

Mar 3rd, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.88 KB | None | 0 0
  1. html {
  2.     background: purple;
  3.     padding: 0px;
  4.     margin: 0px;
  5. }
  6.  
  7. #pageWrapper {
  8.     display: table;
  9.     vertical-align: top;
  10. }
  11. body    {
  12.     font-family: Verdana, Arial, sans-serif;
  13.     background-color: white;
  14.     width: 800px;
  15.     height: 40%;
  16.     margin-left: auto;
  17.     margin-right: auto;
  18.  
  19.     }
  20.  
  21. nav {padding: 15px;}
  22.  
  23. section  {
  24.     width: 200px;
  25.     display: table-cell;
  26. }
  27.  
  28. article   {
  29.     width: 550px;
  30.     display: table-cell;
  31. }
  32.  
  33. aside   {
  34.     width: 225px;
  35.     display: table-cell;
  36. }
  37.  
  38. footer   {
  39.     text-align: center;
  40. }
  41.  
  42. #header {
  43.     display: table-cell;
  44.     vertical-align: top;
  45.     background-color: white;
  46. }
  47.  
  48. nav ul {
  49.     display: inline;
  50.     margin: 0px;
  51.     list-style-type: none;
  52.     padding: 5px 0px 5px 0px;
  53. }
  54.  
  55. ul li {
  56.     display: inline;
  57.     padding: 5px 0px 5px 0px;
  58. }
  59.  
  60. ul li a:link, ul li a:visited {
  61.     color: green;
  62.     text-decoration: none;
  63. }
  64.  
  65. ul li a:hover  {
  66.     background-color: #c8b99c;
  67. }
Add Comment
Please, Sign In to add comment