Files
makyo.ink/assets/css/parts/_author-box.scss
Madison Scott-Clary 29be060697 Default dark mode
2019-06-08 00:39:10 -07:00

42 lines
689 B
SCSS

.author-box {
display: flex;
justify-content: center;
align-items: center;
margin-top: 30px;
padding-bottom: 30px;
border-bottom: 1px solid $dark-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: $light-gray;
&:hover {
opacity: .8;
}
}
}
}
}