- Add partials in the resources folder for each of the major resources of my site - Consolidate .css and .js files via resources.Concat where possible
67 lines
1.3 KiB
CSS
67 lines
1.3 KiB
CSS
/* development.css
|
|
* Some styles for development UI.
|
|
* Eryn Wells <eryn@erynwells.me>
|
|
*/
|
|
|
|
details:has(.photo-params.debug) {
|
|
margin-block-end: var(--body-item-spacing);
|
|
}
|
|
|
|
.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 var(--separator-color);
|
|
border-radius: 6px;
|
|
box-shadow: 4px 5px 5px var(--box-shadow-color);
|
|
font-size: 1.75rem;
|
|
padding: 0.5rem;
|
|
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 > details > table {
|
|
border-collapse: collapse;
|
|
display: block;
|
|
margin-block-start: 0.5em;
|
|
margin-inline-start: 1em;
|
|
}
|
|
|
|
#debug-page-info > details > table > tbody > tr > td {
|
|
border: 1px solid rgb(var(--dk-gray));
|
|
padding: 0.3em;
|
|
}
|
|
|
|
#debug-page-info > details > table > tbody > tr:nth-child(even) {
|
|
background-color: var(--separator-color);
|
|
}
|
|
|
|
.photo-params.debug {
|
|
width: 100%;
|
|
}
|