Advertisement
Guest User

walcss

a guest
Sep 28th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.13 KB | None | 0 0
  1. .container {
  2.     height: 100%;
  3.     margin: auto;
  4.     width: 50%;
  5.     background: grey;
  6.     line-height: 1.3;
  7.     box-shadow: 0px 1px 1px #666;
  8. }
  9.  
  10. #header {
  11. background: #b8b8b8;
  12. width:100%;
  13. height: 150px;
  14. }
  15.  
  16. #logo{
  17. border-style: solid;
  18. border-color: orange;
  19. background:white;
  20. width: 250;
  21. height: 70;
  22.  
  23. }
  24.  
  25. #navbackground {
  26. margin-top: 0;
  27. padding:0;
  28. background:white;
  29. width:100%;
  30. height: 90px;
  31. }
  32.  
  33. #nav a{
  34.     text-decoration: none;
  35.     font-family: 'Arial','FreeSans','Helvetica','sans-serif';
  36.     font-size: 20px;
  37.     font-weight: bold;
  38.     padding: 20px;
  39.     background: orange;
  40.     color: white;
  41. }
  42. #nav a:active{
  43.     background-color: #ff8f00;
  44. }
  45.  
  46. #nav a:hover{
  47.         background-color: #ffb424;
  48.         color: grey;
  49.         box-shadow: 0px 1px 1px #666;
  50.         }
  51. #nav ul li{
  52.             display: inline-block;
  53.             height: 10px;
  54.             width: 100px;
  55.             padding: 10 10 10 10;
  56.             margin: 10 0 0 30;
  57.         }
  58.  
  59.        
  60. p{
  61.     font-family: 'Arial','FreeSans','Helvetica','sans-serif';
  62.     font-size: 14px;
  63. }
  64.  
  65. #body {
  66. background:white;
  67. margin:70;
  68. width: 470px;
  69. height: 500px;
  70. padding: 20 0 0 30;
  71. }
  72.  
  73. h1{
  74. color:orange;
  75. }
  76.  
  77. #pic{
  78. margin: 20 0 0 110;
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement