adrema/resources/css/buttons.css

62 lines
1.3 KiB
CSS
Raw Normal View History

2021-07-03 23:52:44 +02:00
.btn {
2021-07-04 00:39:39 +02:00
@apply px-3 py-2 uppercase no-underline text-sm text-white items-center justify-center bg-primary-700 rounded;
2021-07-03 23:52:44 +02:00
svg {
}
&.btn-sm {
2021-07-04 00:39:39 +02:00
@apply text-xs w-6 h-6 px-1 py-1;
2021-07-03 23:52:44 +02:00
svg {
2021-07-04 00:39:39 +02:00
@apply w-3 h-3 text-primary-100 flex-none;
2021-07-03 23:52:44 +02:00
}
}
&.btn-primary {
@apply bg-primary-700;
&:hover {
@apply bg-primary-500;
}
}
2021-07-04 16:56:07 +02:00
&.btn-primary-light {
@apply bg-primary-600 text-primary-800;
&:hover {
@apply bg-primary-500 text-primary-700;
}
}
2021-07-04 00:39:39 +02:00
&.btn-warning {
@apply bg-yellow-700;
&:hover {
@apply bg-yellow-500;
}
}
&.btn-info {
@apply bg-blue-700;
&:hover {
@apply bg-blue-500;
}
}
2021-07-03 23:52:44 +02:00
&.btn-danger {
@apply bg-red-700;
&:hover {
@apply bg-red-500;
}
}
2021-07-04 16:56:07 +02:00
&.label {
@apply rounded-full leading-none transition-all normal-case;
&.primary {
@apply bg-primary-800 text-primary-500;
&:hover {
@apply text-primary-400 bg-primary-700;
}
}
}
&.icon {
@apply p-0 flex justify-center items-center w-6 h-6;
svg {
@apply w-3 h-3 text-primary-100 flex-none;
}
}
2021-07-03 23:52:44 +02:00
}