viewallbtn.scss 606 B

123456789101112131415161718192021222324252627
  1. .viewallbtn {
  2. margin-bottom: 40px;
  3. &__link {
  4. color: #ffffff;
  5. font-weight: bold;
  6. font-family: $fontcuprum;
  7. font-size: 17px;
  8. text-decoration: none;
  9. text-align: center;
  10. flex-direction: row;
  11. display: -webkit-flex;
  12. display: -ms-flex;
  13. display: flex;
  14. justify-content: center;
  15. align-content: center;
  16. align-items: center;
  17. min-height: 44px;
  18. padding: 8px 10px;
  19. text-align: center;
  20. background: #004d7b;
  21. &:hover {
  22. background: #5597d1;
  23. }
  24. }
  25. }