34 lines
696 B
SCSS
34 lines
696 B
SCSS
.profilepic {
|
|
text-align: center;
|
|
display: block;
|
|
border: 5px solid $colorF;
|
|
border-radius: 300px;
|
|
width: 128px;
|
|
height: 128px;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
overflow: hidden;
|
|
background: #88acdb;
|
|
transition: all 0.2s ease-in;
|
|
text-align: center;
|
|
}
|
|
.header-author {
|
|
text-align: center;
|
|
margin: 0.67em 0;
|
|
font-size: 30px;
|
|
transition: 0.3s;
|
|
}
|
|
.header-subtitle {
|
|
text-align: center;
|
|
color: #999;
|
|
font-size: 14px;
|
|
line-height: 25px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
.header-subtitle {
|
|
padding: 0 24px;
|
|
} |