63 lines
1.1 KiB
CSS
63 lines
1.1 KiB
CSS
/*------------------------------------*
|
|
$AUTHOR BOX
|
|
*------------------------------------*/
|
|
#author-bio {
|
|
position: relative;
|
|
margin-top: 30px;
|
|
padding: 30px 0 0 130px;
|
|
border-top-width: 1px;
|
|
border-style: solid;
|
|
border-color: #f1f1f1;
|
|
}
|
|
|
|
#author-bio .author-bio-avatar,
|
|
#author-bio .author-bio-avatar img {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
#author-bio .author-bio-avatar {
|
|
position: absolute;
|
|
top: 30px;
|
|
left: 20px;
|
|
border: 3px solid #e9e9e9;
|
|
}
|
|
|
|
#author-bio .author-bio-avatar img {
|
|
width: 80px;
|
|
height: 80px;
|
|
}
|
|
|
|
#author-bio .author-bio-content {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#author-bio .author-bio-title {
|
|
display: inline-block;
|
|
font-size: 18px;
|
|
margin: 0 0 10px;
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
#author-bio .author-bio-description p:last-child {
|
|
margin: 0;
|
|
}
|
|
|
|
.author #author-bio {
|
|
margin: 0 0 30px;
|
|
padding-bottom: 30px;
|
|
border-bottom-width: 1px;
|
|
}
|
|
|
|
/*------------------------------------*
|
|
Phone Landscape
|
|
*------------------------------------*/
|
|
@media only screen and (max-width: 480px) {
|
|
/* author bio */
|
|
#author-bio {
|
|
padding: 30px 0 0 0;
|
|
}
|
|
#author-bio .author-bio-avatar {
|
|
display: none;
|
|
}
|
|
} |