erynwells.me/static/styles/development.css
Eryn Wells 7325debd66 Fix up the layout of the debug content
Put it in the bottom left in a disclosure
2022-09-11 10:41:19 -07:00

56 lines
996 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: "]";
}
#debug-page-info {
background-color: var(--background-color);
border: 1px solid #ddd;
border-radius: 6px;
box-shadow: 4px 5px 5px rgba(230, 230, 230, 0.5);
font-size: 8px;
position: fixed;
left: 2rem;
bottom: 2rem;
width: max-content;
}
#debug-page-info details {
margin: 0.5rem;
}
#debug-page-info summary {
font-family: var(--font-family-heading);
}
#debug-page-info table {
margin-block-start: 0.5em;
margin-inline-start: 1em;
}
#debug-page-info td {
border: 1px solid black;
padding: 0.25em;
}
#debug-page-info tr:nth-child(even) {
background-color: #efefef;
}