initial theming dev
This commit is contained in:
parent
5c673525d6
commit
f1e52677ed
47 changed files with 4008 additions and 9033 deletions
22
tailwind.css
22
tailwind.css
|
@ -3,9 +3,25 @@
|
|||
@tailwind utilities;
|
||||
|
||||
.paginator-text {
|
||||
@apply text-gray-600 font-bold py-2 px-4;
|
||||
@apply py-2 px-4 font-bold text-gray-600 dark:text-gray-200;
|
||||
}
|
||||
|
||||
.post-tag {
|
||||
@apply inline-block text-xs rounded-full py-2 px-4 mt-1 mr-1 bg-gray-300 dark:bg-gray-500;
|
||||
}
|
||||
@apply mt-1 mr-1 inline-block text-sm text-primary-400 hover:text-primary-500 dark:hover:text-primary-300;
|
||||
}
|
||||
|
||||
.toggle-light {
|
||||
@apply inline;
|
||||
}
|
||||
|
||||
.dark .toggle-light {
|
||||
@apply hidden;
|
||||
}
|
||||
|
||||
.toggle-dark {
|
||||
@apply hidden;
|
||||
}
|
||||
|
||||
.dark .toggle-dark {
|
||||
@apply inline;
|
||||
}
|
||||
|
|
Reference in a new issue