12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- @tailwind base;
- @tailwind components;
- @tailwind utilities;
- div.noscript {
- background: white;
- color: black;
- font-size: 1.5rem;
- padding: 1rem;
- a {
- text-decoration: underline;
- color: dodgerblue;
- }
- }
- h1, h2, h3, h4, h5, h6 {
- font-family: "Oswald";
- }
- .prose p {
- &.calltoaction {
- text-align: center;
- display: block;
- margin: theme(spacing.6) 0;
- padding: theme(spacing.6) 0;
- background-color: #e7f2fd;
- font-size: 1.5em;
- font-family: Oswald,sans-serif;
- }
- }
- .prose strong a {
- font-weight: bold;
- }
- .prose figure {
- position: relative;
- img {
- width: 100%;
- }
- figcaption {
- position: absolute;
- width: 100%;
- bottom: 0;
- font-size: .75rem;
- color: #fff;
- line-height: 1.75rem;
- background: rgba(0,0,0,.5);
- padding: 0 theme("spacing.3") .2em theme("spacing.3");
- border-bottom-right-radius: .25rem;
- border-bottom-left-radius: .25rem;
- a {
- color: white;
- text-decoration: underline;
- }
- &:before {
- content: "\203A\2002";
- }
- }
- }
|