forked from brooksbingham/theme-elegance
38 lines
534 B
CSS
38 lines
534 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
body {
|
|
@apply bg-white;
|
|
@apply text-gray-600;
|
|
@apply font-light;
|
|
}
|
|
|
|
a {
|
|
@apply text-gray-600;
|
|
}
|
|
|
|
a:hover {
|
|
@apply text-blue-900;
|
|
@apply underline;
|
|
@apply underline-offset-2;
|
|
}
|
|
|
|
.ti, .icon-tabler {
|
|
stroke-width: 1px;
|
|
fill: none;
|
|
@apply text-gray-500;
|
|
@apply stroke-gray-500;
|
|
}
|
|
|
|
a:hover .ti, a:hover .icon-tabler {
|
|
@apply stroke-blue-900;
|
|
}
|
|
|
|
ul {
|
|
@apply !list-inside;
|
|
}
|
|
input[type="radio"],input[type="checkbox"] {
|
|
@apply focus:ring-transparent;
|
|
}
|