Button.module.css 958 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. .button_navigation {
  2. background-color: #b3b3b3;
  3. transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  4. font-family: 'Mountains of Christmas', cursive;
  5. text-align: center;
  6. display: flex;
  7. justify-content: center;
  8. justify-items: center;
  9. text-align: center;
  10. cursor: pointer;
  11. width: 80px;
  12. font-size: 16px;
  13. height: auto;
  14. box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2),
  15. 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  16. }
  17. .button_navigation {
  18. margin-right: 2%;
  19. }
  20. .navigation_link {
  21. display: block;
  22. width: 72px;
  23. text-decoration: none;
  24. color: rgb(255, 255, 255);
  25. }
  26. .navigation_link_active {
  27. color: rgb(37, 156, 253);
  28. }
  29. @media (min-width: 767px) {
  30. .button_navigation {
  31. width: 100px;
  32. font-size: 18px;
  33. }
  34. .navigation_link {
  35. width: 90px;
  36. }
  37. }
  38. @media (min-width: 1400px) {
  39. .button_navigation {
  40. width: 120px;
  41. font-size: 20px;
  42. }
  43. .navigation_link {
  44. width: 110px;
  45. }
  46. }