erynwells.me/static/styles/development.css
Eryn Wells 501dc6ed51 Rearrange the post header
Dates will flow below the header if the header is too long.

Move the draft up to the top, above the header.
2022-03-25 23:24:29 -07:00

22 lines
361 B
CSS

/* development.css
* Some styles for development UI.
* Eryn Wells <eryn@erynwells.me>
*/
.draft {
color: red;
display: inline-block;
font-family: 'SF Pro', sans-serif;
font-size: 1.5rem;
font-weight: bold;
letter-spacing: 3px;
text-transform: uppercase;
}
.draft:before {
content: "[";
}
.draft:after {
content: "]";
}