Add support for profile photos; default image

This commit is contained in:
garrettmills
2020-05-18 22:55:08 -05:00
parent 2b2e7d2ebe
commit b8a0e957bb
18 changed files with 227 additions and 17 deletions

View File

@@ -61,3 +61,24 @@ body {
.pad-top {
padding-top: 30px;
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
flex-direction: row;
display: flex;
align-items: center;
justify-content: center;
background: rgba(20, 20, 20, 0.4);
opacity: 0;
transition: all 0.1s linear;
&:hover {
opacity: 1;
}
}