flat_router.css 613 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. body {
  2. font-family: Arial, sans-serif;
  3. margin: 20px;
  4. padding: 20px;
  5. background-color: #f4f4f4;
  6. height: 100vh;
  7. }
  8. nav {
  9. display: flex;
  10. justify-content: space-around;
  11. }
  12. .nav-btn {
  13. text-decoration: none;
  14. color: black;
  15. }
  16. a {
  17. padding: 10px;
  18. border: none;
  19. border-radius: 5px;
  20. cursor: pointer;
  21. }
  22. /* button hover effect */
  23. a:hover {
  24. background-color: #dd6a6a;
  25. }
  26. #content {
  27. border: 2px dashed #ccc;
  28. padding-top: 20px;
  29. display: flex;
  30. justify-content: center;
  31. align-items: center;
  32. height: 100%;
  33. flex-direction: column;
  34. gap: 20px;
  35. }