This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/assets/less/main.less

67 lines
999 B
Plaintext
Raw Normal View History

2017-11-09 22:44:30 +00:00
@import (less) "~normalize.css/normalize.css";
@import (less) "~suitcss-base/lib/base.css";
2017-10-24 21:40:41 +00:00
@import (less) "~font-awesome/css/font-awesome.css";
2017-11-01 21:06:56 +00:00
@import (less) "~highlightjs/styles/github-gist.css";
2017-10-24 21:40:41 +00:00
2017-11-08 22:27:30 +00:00
@tailwind preflight;
2017-10-07 08:00:03 +00:00
p,
li,
td {
2017-11-09 22:44:30 +00:00
a { @apply .text-blue; }
}
.button {
@apply .bg-blue;
@apply .inline-block;
@apply .rounded;
@apply .text-white;
@apply .px-4;
@apply .py-2;
&:active,
&:hover {
@apply .bg-blue-dark;
}
}
blockquote {
@apply .border-l-4 .border-blue .pl-4;
}
img.with-border {
@apply .border .border-grey-light;
}
p,
ul,
table,
pre,
.note {
@apply .mb-4;
}
a {
@apply .text-grey-darkest;
text-decoration: none;
}
main a:not(.button) {
text-decoration: underline;
}
.bullets,
main ul {
list-style: disc;
@apply .pl-4;
}
@import "components/listing";
@import "components/post";
@import "components/talk";
@import "components/talks-table";
@import "components/testimonial";
2017-11-08 22:27:30 +00:00
@tailwind utilities;