-Annie-

03.Simple-Website(Styles)

Feb 2nd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.56 KB | None | 0 0
  1. body {
  2.     margin: 0;
  3.     padding: 0;
  4.     background-color: #CCCCCC;
  5. }
  6.  
  7. section {
  8.     margin-left: 20px;
  9. }
  10.  
  11. h1 {
  12.     font-size: 28px;
  13. }
  14.  
  15. ul {
  16.     background-color: #444;
  17.     text-align: center;
  18.     padding: 0;
  19.     margin: 0;
  20.     list-style: none;
  21. }
  22.  
  23. li {
  24.     font-size: 24px;
  25.     line-height: 40px;
  26.     height: 40px;
  27.     padding: 20px;
  28.     display: inline-block;
  29. }
  30.  
  31. a {
  32.     text-decoration: none;
  33.     color: #ffffff;
  34. }
  35.  
  36. header p {
  37.     font-style: italic;
  38. }
  39.  
  40. article > p {
  41.     font-size: 24px;
  42. }
  43.  
  44. footer {
  45.     background-color: #444;
  46. }
  47.  
  48. footer p {
  49.     color: #fff;
  50.     text-align: center;
  51. }
Add Comment
Please, Sign In to add comment