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

57 lines
712 B
CSS
Raw Normal View History

2019-03-09 23:58:42 +00:00
@import '~highlightjs/styles/github-gist.css';
2019-03-09 22:48:31 +00:00
@tailwind base;
h1, h2, h3 {
@apply font-bold
}
h1 {
@apply text-3xl
2019-03-09 22:48:31 +00:00
}
h2 {
@apply text-2xl
}
img {
@apply max-w-full h-auto
}
2019-03-09 08:15:13 +00:00
a {
2019-03-21 07:50:29 +00:00
@apply text-blue-600 no-underline;
2019-03-09 08:15:13 +00:00
&:hover {
2019-03-09 22:48:31 +00:00
@apply underline
2019-03-09 08:15:13 +00:00
}
}
2019-05-15 23:07:00 +00:00
blockquote {
@apply border-l-4 border-blue-600 pl-4 px-6 py-2
}
2019-03-09 08:15:13 +00:00
@tailwind components;
2019-05-20 19:40:13 +00:00
p.lead {
@screen md {
@apply text-lg
}
2019-05-20 19:40:13 +00:00
}
2019-05-15 22:28:29 +00:00
.wrap {
@apply w-full max-w-3xl mx-auto;
&.is-wide {
@apply max-w-5xl
}
}
2019-03-09 08:15:13 +00:00
@import 'components/button.css';
@import 'components/markup.css';
@import 'components/note.css';
2019-04-19 00:09:56 +00:00
@import 'components/table.css';
2019-05-30 22:05:39 +00:00
@import 'components/video.css';
2019-03-09 08:15:13 +00:00
@import 'components/widget.css';
@tailwind utilities;