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/resources/css/app.css
Oliver Davies 3d1beaf16d
Post: Testing Tailwind CSS plugins (#70)
* Add post

* Mark as not a draft

* Add note about preflight

* Update heading
2019-04-29 09:52:29 +02:00

40 lines
552 B
CSS

@import '~highlightjs/styles/github-gist.css';
@tailwind base;
h1, h2, h3 {
@apply font-bold
}
h1 {
@apply text-3xl
}
h2 {
@apply text-2xl
}
img {
@apply max-w-full h-auto
}
a {
@apply text-blue-600 no-underline;
&:hover {
@apply underline
}
}
@tailwind components;
@import 'components/blockquote.css';
@import 'components/button.css';
@import 'components/markup.css';
@import 'components/note.css';
@import 'components/talks/video.css';
@import 'components/table.css';
@import 'components/widget.css';
@tailwind utilities;