Advertisement
ssoni

style.css

Mar 25th, 2022
1,063
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.61 KB | None | 0 0
  1. body {
  2.     background-color: #e1e1e1
  3.     font-family: Helvetica, Arial, sans-serif;
  4. }
  5.  
  6. #container {
  7.     background-color: white;
  8.     width: 800px;
  9.     margin-left: auto;
  10.     margin-right: auto;
  11. }
  12.  
  13. #header {
  14.     background-color: #85c7ed;
  15.     color: white;
  16.     text-align: center;
  17.     padding: 10px;
  18. }
  19.  
  20. #content {
  21.     padding: 10px;
  22. }
  23.  
  24. #nav {
  25.     width: 180px;
  26. }
  27.  
  28. #main {
  29.     width: 600px;
  30.  
  31. }
  32.  
  33. #footer {
  34.     background-color: #999999;
  35.     color: white;
  36.     text-align: right;
  37.     padding: 10px;
  38. }
  39.  
  40.  
  41. a {
  42.     text-decoration: none;
  43.     color: red;
  44. }
  45.  
  46. #nav selected {
  47.     font-weight: bold;
  48. }
  49.  
  50. #nav ul {
  51.     list-style-type: none;
  52.  
  53. }
  54.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement