btn.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. $blue:#324157;
  2. $light-blue:#3A71A8;
  3. $red:#C03639;
  4. $pink: #E65D6E;
  5. $green: #30B08F;
  6. $tiffany: #4AB7BD;
  7. $yellow:#FEC171;
  8. $panGreen: #30B08F;
  9. @mixin colorBtn($color) {
  10. background: $color;
  11. &:hover {
  12. color: $color;
  13. &:before, &:after {
  14. background: $color;
  15. }
  16. }
  17. }
  18. .blue-btn {
  19. @include colorBtn($blue)
  20. }
  21. .light-blue-btn{
  22. @include colorBtn($light-blue)
  23. }
  24. .red-btn {
  25. @include colorBtn($red)
  26. }
  27. .pink-btn {
  28. @include colorBtn($pink)
  29. }
  30. .green-btn {
  31. @include colorBtn($green)
  32. }
  33. .tiffany-btn {
  34. @include colorBtn($tiffany)
  35. }
  36. .yellow-btn {
  37. @include colorBtn($yellow)
  38. }
  39. .pan-btn {
  40. font-size: 14px;
  41. color: #fff;
  42. padding: 14px 36px;
  43. border-radius: 8px;
  44. border: none;
  45. outline: none;
  46. margin-right: 25px;
  47. transition: 600ms ease all;
  48. position: relative;
  49. display: inline-block;
  50. &:hover {
  51. background: #fff;
  52. &:before, &:after {
  53. width: 100%;
  54. transition: 600ms ease all;
  55. }
  56. }
  57. &:before, &:after {
  58. content: '';
  59. position: absolute;
  60. top: 0;
  61. right: 0;
  62. height: 2px;
  63. width: 0;
  64. transition: 400ms ease all;
  65. }
  66. &::after {
  67. right: inherit;
  68. top: inherit;
  69. left: 0;
  70. bottom: 0;
  71. }
  72. }
  73. .custom-button{
  74. display: inline-block;
  75. line-height: 1;
  76. white-space: nowrap;
  77. cursor: pointer;
  78. background: #fff;
  79. color: #fff;
  80. -webkit-appearance: none;
  81. text-align: center;
  82. box-sizing: border-box;
  83. outline: 0;
  84. margin: 0;
  85. padding: 10px 15px;
  86. font-size: 14px;
  87. border-radius: 4px;
  88. }