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/css/base.css

28 lines
271 B
CSS
Raw Normal View History

h1, h2, h3 {
2019-06-07 20:41:43 +00:00
@apply font-bold
}
2019-06-07 20:41:43 +00:00
h1 {
2019-06-07 20:41:43 +00:00
@apply text-3xl
}
2019-06-07 20:41:43 +00:00
h2 {
2019-06-07 20:41:43 +00:00
@apply text-2xl
}
2019-06-07 20:41:43 +00:00
img {
2019-06-07 20:41:43 +00:00
@apply max-w-full h-auto
}
2019-06-07 20:41:43 +00:00
a {
2019-08-04 09:21:09 +00:00
@apply text-blue-700 no-underline;
2019-06-07 20:41:43 +00:00
&:hover {
2019-06-07 20:41:43 +00:00
@apply underline
}
}
2019-06-07 20:41:43 +00:00
blockquote {
2019-06-07 20:41:43 +00:00
@apply border-l-4 border-blue-600 pl-4 px-6 py-2
}