add embodying-the-avatar

This commit is contained in:
2022-07-23 17:02:19 +01:00
parent b50251fa66
commit 95d8d467c0
10 changed files with 789 additions and 0 deletions

View File

@ -9,6 +9,10 @@ dl, dd, ol, ul, figure {
}
.text-center {
text-align: center;
}
/**
* Basic styling
@ -61,6 +65,20 @@ figure > img {
display: block;
}
figure.row {
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
}
/* Inserting this collapsed row between two flex items will make
* the flex item that comes after it break to a new row */
.break {
flex-basis: 100%;
height: 0;
}
figcaption {
font-size: $small-font-size;
}