hugo site

This commit is contained in:
Madison Scott-Clary
2019-03-06 00:31:57 -08:00
parent 748b3c1b30
commit 4386102543
174 changed files with 1843 additions and 522 deletions

View File

@ -0,0 +1,41 @@
.author-box {
display: flex;
justify-content: center;
align-items: center;
margin-top: 30px;
padding-bottom: 30px;
border-bottom: 1px solid $lighten-gray;
.author-img {
width: 120px;
height: 120px;
margin-right: 30px;
border-radius: 100%;
}
.author-desc {
h2 {
margin: 0 0 10px;
}
p {
margin: 0 0 10px;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
li {
display: inline-block;
margin-left: 10px;
&:first-child {
margin-left: 0;
}
a {
font-size: 18px;
color: $dark-gray;
&:hover {
opacity: .8;
}
}
}
}
}