Nav.module.css 416 B

12345678910111213141516171819202122232425
  1. .nav{
  2. height: 75px;
  3. padding: 10px;
  4. background: #2e2d2d;
  5. color: #165CA1;
  6. display: flex;
  7. align-items: center;
  8. justify-content: flex-start;
  9. }
  10. .nav ul{
  11. display: flex;
  12. justify-content: center;
  13. align-items: center;
  14. list-style: none;
  15. }
  16. .nav ul li a {
  17. margin: 10px 15px;
  18. }
  19. .background{
  20. height: 100px;
  21. display: flex;
  22. background: #000000;
  23. align-self: center;
  24. }