Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.56 KB | None | 0 0
  1. header{
  2.     background-color: gray;
  3. }
  4. nav{
  5.     height: 10%;
  6.     background-color: #494949;
  7. }
  8. a{
  9.     color: white;
  10. }
  11. ul{
  12.     list-style-type: none;
  13. }
  14. li{
  15.     display: inline;
  16. }
  17. article{
  18.     display: inline-block;
  19.     vertical-align: top
  20.     border: 2px solid black;
  21.     border-radius: 5px;
  22.     width: 31%;
  23.     height: 300px;
  24.     margin-left: 20px;
  25.     background-color: #F7E0AE;
  26.   }
  27. footer{
  28.     margin-top: 20px;
  29.     height: 50px;
  30.     background-color: #494949;
  31.     text-align: center;
  32.     color: white;
  33. }
  34. h1{
  35.     text-align: left;
  36. }
  37. img{
  38.     display: block;
  39.     margin: auto;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement