Add circlar selfie to about page

This commit is contained in:
Eryn Wells 2022-10-09 13:26:59 -07:00
parent 4fed774c8b
commit 38b06904a8
4 changed files with 13 additions and 0 deletions

View file

@ -202,6 +202,11 @@ html {
font-size: clamp(var(--font-size-min), 1vw, var(--font-size-max));
}
img.circular {
shape-outside: circle(50%);
-webkit-clip-path: circle(50%);
}
main {
max-width: var(--content-width);
margin: 0 auto;
@ -443,6 +448,7 @@ p:last-child { margin-block-end: 0; }
/** HELPER CLASSES **/
.centered { text-align: center; }
.float-right { float: right; }
.nobreak { white-space: nowrap; }
.platter {