|
6 | 6 | align-items: center; |
7 | 7 | justify-content: center; |
8 | 8 | padding: 1px 20px 0; |
9 | | - border: 2px solid rgba(#000, 0.3); |
| 9 | + border: 2px solid rgba(#fff, 0.2); |
| 10 | + border-radius: 8px; |
| 11 | + background-color: rgba(#fff, 0.05); |
| 12 | + color: #fff; |
10 | 13 | cursor: pointer; |
11 | 14 | font-size: 16px; |
12 | 15 | font-weight: 700; |
13 | 16 | letter-spacing: -0.5px; |
| 17 | + backdrop-filter: blur(8px); |
| 18 | + transition: all 0.2s ease; |
14 | 19 |
|
15 | 20 | &:hover { |
16 | | - background-color: rgba(#000, 0.3); |
17 | | - color: rgba(#000, 0.8); |
18 | | - transition: none; |
| 21 | + background-color: rgba(#fff, 0.1); |
| 22 | + border-color: rgba(#fff, 0.3); |
| 23 | + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); |
19 | 24 | } |
20 | 25 |
|
21 | 26 | &:active { |
22 | | - border-color: rgba(#000, 0.25); |
23 | | - background-color: rgba(#000, 0.25); |
| 27 | + background-color: rgba(#fff, 0.15); |
| 28 | + border-color: rgba(#fff, 0.35); |
| 29 | + transform: translateY(0); |
| 30 | + box-shadow: none; |
24 | 31 |
|
25 | 32 | .button__chevron-right { |
26 | | - transform: translateX(1px); |
| 33 | + transform: translateX(2px); |
27 | 34 | transition: none; |
28 | 35 | } |
29 | 36 | } |
30 | 37 |
|
31 | 38 | &__chevron-right { |
32 | | - margin-left: 5px; |
33 | | - transition: transform 0.1s ease-out, |
34 | | - fill $default-transition-duration $default-transition-function; |
| 39 | + margin-left: 8px; |
| 40 | + font-size: 18px; |
| 41 | + opacity: 0.8; |
| 42 | + transition: |
| 43 | + transform 0.1s ease-out, |
| 44 | + opacity $default-transition-duration $default-transition-function; |
35 | 45 | } |
36 | 46 | } |
0 commit comments