Header.css 379 B

12345678910111213141516171819202122232425
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. text-decoration: none;
  5. list-style: none;
  6. }
  7. .header {
  8. height: 50px;
  9. display: flex;
  10. align-items: center;
  11. justify-content: space-around;
  12. background-color: black;
  13. }
  14. .header li a{
  15. color: #fff;
  16. }
  17. .active {
  18. color: red !important;
  19. }
  20. .pending {
  21. color: #ff0 !important;
  22. }
  23. .normal {
  24. color: #087EA4 !important;
  25. }