Move static resources to static/ and do not minify the CSS

This commit is contained in:
Eryn Wells 2021-10-11 12:40:25 -07:00
parent ce1c860269
commit 173ae928f8
12 changed files with 3 additions and 8 deletions

38
static/style.css Normal file
View file

@ -0,0 +1,38 @@
/* Place custom css here. */
figure {
padding: 6px;
border: 1px solid var(--fog);
border-radius: 4px;
}
img {
border-radius: 4px;
}
.draft {
text-transform: uppercase;
font-size: 80%;
color: white;
font-weight: 800;
/*border: 2px solid #aaa;*/
border-radius: 4px;
padding: 0.2rem 0.8rem;
margin-left: 0.5rem;
background-color: #aaa;
}
.flex-date {
display: flex;
align-items: baseline;
}
.flex-date .date {
margin-left: auto;
font-size: 80%;
font-style: italic;
}
.post-content a {
color: var(--link-color);
}