Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. * {
  2. box-sizing: border-box;
  3. }
  4. html, body {
  5. overflow: hidden;
  6. width: 100%;
  7. height: 100%;
  8. }
  9. #container {
  10. height : 100%;
  11. width: 100%;
  12. }
  13.  
  14. ul {
  15. list-style-type: none;
  16. overflow: hidden;
  17. background-color: #333;
  18. }
  19.  
  20. li {
  21. float: left;
  22. }
  23.  
  24. li a {
  25. dispaly: inline-block;
  26. color: white;
  27. text-align: center;
  28. padding: 14px 16px;
  29. text-decoration: none;
  30. }
  31.  
  32. li a:hover {
  33. background-color: #111;
  34. }
  35.  
  36. .active {
  37. background-color: red;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement