Advertisement
FlugzeugAUT

CSS file

Jul 9th, 2016
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. body{
  2. margin:0;
  3. background-color: red;
  4. }
  5.  
  6. #submenu{
  7. height: 45px;
  8. width: 100%;
  9. background-color:green;
  10. }
  11.  
  12. #navigation.fixed{
  13. position:fixed;
  14. background-color: blue;
  15. width:100%;
  16. top:0;
  17. height:45px;
  18. color:white;
  19. }
  20.  
  21.  
  22. #navigation{
  23. position:absolute;
  24. background-color:blue;
  25. width: 100%;
  26. height: 45px;
  27. color:white;
  28. }
  29.  
  30. #nav-wrapper{
  31. width: 1600px;
  32. margin-left: 65px;
  33. text-align: left;
  34. }
  35.  
  36. #navigation ul{
  37. list-style-type: none;
  38. padding: 0;
  39. margin: 0;
  40. }
  41.  
  42. #navigation ul li{
  43. display: inline-block;
  44. color: green;
  45.  
  46. }
  47.  
  48. #navigation ul li:hover{
  49. background-color: blue;
  50. }
  51.  
  52. #navigation ul li a, visited{
  53. display: block;
  54. text-decoration: none;
  55. }
  56.  
  57. #navigation ul li:activated{
  58. border-top: 2px solid black;
  59. }
  60.  
  61. #navigation li{
  62. width: 180px;
  63. text-align:center;
  64. font-size: 20px;
  65. height: 45px;
  66. background-color:white;
  67. }
  68.  
  69. li{
  70. text-align:center;
  71. }
  72.  
  73. /*#navigation a{
  74. top: 10px;
  75. color: green;
  76. vertical-align: middle;
  77. }*/
  78.  
  79. #navigation a{
  80. color: green;
  81. line-height: 45px;
  82. }
  83.  
  84. header{
  85. background-color:orange;
  86. height: 80px;
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement