67 lines
1.6 KiB
CSS
67 lines
1.6 KiB
CSS
.button {
|
|
@apply inline-flex items-center justify-center space-x-2 h-10 leading-10 px-4 md:px-8 cursor-pointer;
|
|
@apply uppercase leading-none text-center;
|
|
@apply transition-colors outline-none focus:outline-2 focus:outline-offset-2 focus:outline-primary-dark;
|
|
@apply rounded-md;
|
|
}
|
|
|
|
.button--small {
|
|
@apply px-2 py-1 md:px-4 text-xs sm:text-sm;
|
|
}
|
|
|
|
.button--primary {
|
|
background: linear-gradient(120deg, #960167 0%, #9e036a 40%, #fa1a8c 100%);
|
|
@apply text-white;
|
|
@apply hover:bg-none hover:bg-pink/80;
|
|
}
|
|
|
|
.button[disabled] {
|
|
@apply cursor-not-allowed;
|
|
}
|
|
|
|
.button--secondary {
|
|
@apply bg-none bg-primary-light text-white;
|
|
@apply hover:bg-primary-light/50;
|
|
}
|
|
|
|
.button--neutral {
|
|
@apply bg-none bg-gray-200;
|
|
@apply hover:bg-gray-200/50;
|
|
}
|
|
|
|
.sbw {
|
|
.button--primary {
|
|
@apply bg-none bg-sbw-secondary text-white;
|
|
@apply hover:bg-none hover:bg-sbw-primary/50;
|
|
}
|
|
|
|
.button--secondary {
|
|
@apply bg-none bg-sbw-primary-dark text-white;
|
|
@apply hover:bg-none hover:bg-sbw-primary/50;
|
|
}
|
|
}
|
|
|
|
.snz {
|
|
.button--primary {
|
|
@apply bg-none bg-snz-secondary text-white;
|
|
@apply hover:bg-none hover:bg-snz-primary/50;
|
|
}
|
|
|
|
.button--secondary {
|
|
@apply bg-none bg-snz-primary-dark text-white;
|
|
@apply hover:bg-none hover:bg-snz-primary/50;
|
|
}
|
|
}
|
|
|
|
.ser {
|
|
.button--primary {
|
|
@apply bg-none bg-ser-secondary text-white;
|
|
@apply hover:bg-none hover:bg-ser-primary/50;
|
|
}
|
|
|
|
.button--secondary {
|
|
@apply bg-none bg-ser-primary text-white;
|
|
@apply hover:bg-none hover:bg-ser-primary/50;
|
|
}
|
|
}
|