31 lines
853 B
CSS
31 lines
853 B
CSS
/* navbar toggler */
|
|
input#nav-toggle:checked + label #show-button {
|
|
@apply hidden;
|
|
}
|
|
|
|
input#nav-toggle:checked + label #hide-button {
|
|
@apply block;
|
|
}
|
|
|
|
input#nav-toggle:checked ~ #nav-menu {
|
|
@apply block;
|
|
}
|
|
|
|
/* form style */
|
|
.form-input {
|
|
@apply w-full rounded border-transparent bg-light px-6 py-4 text-text-dark placeholder:text-text-light focus:border-primary dark:focus:border-darkmode-primary focus:ring-transparent dark:border-darkmode-border dark:bg-darkmode-light dark:text-darkmode-text-light;
|
|
}
|
|
|
|
.form-label {
|
|
@apply mb-4 block font-secondary text-xl font-normal text-text-dark dark:text-darkmode-text-light;
|
|
}
|
|
|
|
/* swiper pagination */
|
|
.swiper-pagination-bullet {
|
|
@apply !h-2.5 !w-2.5 !bg-light !opacity-100 dark:!bg-darkmode-light;
|
|
}
|
|
|
|
.swiper-pagination-bullet-active {
|
|
@apply !h-4 !w-4 !bg-primary dark:!bg-darkmode-primary;
|
|
}
|