| 1234567891011121314151617181920212223242526272829303132333435363738 |
- // Buttons
- button {
- &.accent-color {
- transition: filter 0.3s ease;
- &:hover {
- filter: brightness(0.85);
- }
- }
- }
- .main__btn {
- position: relative;
- margin: auto;
- a {
- display: flex;
- align-items: center;
- justify-content: center;
- height: 100%;
- width: 100%;
- // color will be set dynamically
- &:hover {
- // color will be set dynamically
- }
- }
- }
- .bottom-btn {
- margin: auto;
- width: 200px;
- background: #c30054;
- }
- .pulse__btn {
- // Pulse animation will be added if needed
- }
|