header.css 429 B

12345678910111213141516171819202122
  1. header {
  2. background-color: #292929;
  3. padding: 1em; }
  4. header ul {
  5. list-style: none;
  6. display: flex; }
  7. header ul li {
  8. padding-left: 1em; }
  9. header a {
  10. color: #378169;
  11. text-decoration: none;
  12. font-size: 20px; }
  13. header a:hover {
  14. color: #DAF0EE;
  15. text-decoration: underline; }
  16. @media (max-width: 800px) {
  17. header a {
  18. color: #378169;
  19. text-decoration: none;
  20. font-size: 30px; } }