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/base.css
2019-08-09 00:57:13 +01:00

28 lines
271 B
CSS

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-700 no-underline;
&:hover {
@apply underline
}
}
blockquote {
@apply border-l-4 border-blue-600 pl-4 px-6 py-2
}