Dates will flow below the header if the header is too long. Move the draft up to the top, above the header.
22 lines
361 B
CSS
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: "]";
|
|
}
|