Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.69 KB | None | 0 0
  1. * {
  2.     margin: 0;
  3. }
  4. .content-box {
  5.     background: white;
  6.     margin-left: 10%;
  7.     margin-right: 10%;
  8.     padding: 5%;
  9.     height: auto;
  10. }
  11. h2 {
  12.     font-family: Arial;
  13.     text-align: right;
  14.     color: blue;
  15. }
  16. .navigation-bar {
  17.     margin-top: 5%;  
  18. }
  19. body {
  20.     height: 600;
  21.     width: 800;
  22.     background: yellow;
  23. }
  24. .col1 {
  25.     background: #808080;
  26.     color: white;
  27. }
  28. table {
  29.     margin-top: 5%;
  30.     border: 5px;
  31.     background: #F0FFFF;
  32.     text-align: center;
  33. }
  34. .image{
  35.     position: relative;
  36.     left: 55%;
  37.     top: 40%;
  38. }
  39. p {
  40.     margin-top: 10%;  
  41. }
  42. .footer {
  43.     font-family: Arial,sans-serif;
  44.     font-size: 10px;
  45.     text-align: center;  
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement