_navbar.scss 973 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #navbar {
  2. width: 100%;
  3. background-color: rgb(220, 220, 220);
  4. #navbar-top {
  5. background-color: #568baf
  6. }
  7. #navbar-bottom {
  8. background-color: #3c5a96;
  9. }
  10. #navbar-top, #navbar-bottom {
  11. height: $navbarHeight;
  12. ul {
  13. list-style: none;
  14. padding: 2px;
  15. li {
  16. color: rgb(30, 30, 30);
  17. position: relative;
  18. display: inline-block;
  19. border: 2px outset black;
  20. &.selecionado {
  21. border: 2px inset black;
  22. img {
  23. background-color: red;
  24. }
  25. }
  26. a {
  27. display: block;
  28. text-decoration: none;
  29. img {
  30. display: block;
  31. }
  32. }
  33. }
  34. }
  35. }
  36. }