This repository has been archived on 2025-10-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rebuilding-uis/assets/css/tailwind.pcss

41 lines
444 B
Text
Raw Normal View History

2020-07-08 09:05:34 +01:00
@tailwind base;
2020-09-11 17:45:00 +01:00
a {
@apply text-red-800 text-lg
}
2020-07-08 09:05:34 +01:00
a:hover,
a:focus {
2020-09-11 17:45:00 +01:00
@apply underline
2020-07-08 09:05:34 +01:00
}
@tailwind components;
.nav-item {
2020-09-11 17:45:00 +01:00
@apply flex text-gray-900 text-xs;
2020-07-08 09:05:34 +01:00
2020-09-11 17:45:00 +01:00
@screen lg {
@apply text-sm
}
2020-07-08 14:14:03 +01:00
2020-09-11 17:45:00 +01:00
@screen dark {
@apply text-gray-200
}
2020-07-08 09:05:34 +01:00
}
@tailwind utilities;
2020-09-11 17:45:00 +01:00
@responsive {
.filter-contrast-1 {
filter: contrast(1%)
}
.filter-invert-100 {
filter: invert(100%)
}
2020-07-08 09:05:34 +01:00
}
.with-arrow:after {
2020-09-11 17:45:00 +01:00
content: "\A0\2192"
}