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
2019-05-15 23:28:29 +01:00

48 lines
638 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;
.wrap {
@apply w-full max-w-3xl mx-auto;
&.is-wide {
@apply max-w-5xl
}
}
@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;