ഫലകം:AuthorCard/styles.css
അഭിപ്രായവേദി സംരംഭത്തിൽ നിന്ന്
.author-card {
width: 260px;
float: left;
margin: 10px;
padding: 15px;
text-align: center;
border: 1px solid #ddd;
border-radius: 8px;
background: #fff;
box-shadow: 0 2px 5px rgba(0,0,0,.08);
overflow: hidden;
}
.author-card-photo {
margin-bottom: 10px;
}
.author-card-photo img {
max-width: 100%;
height: auto;
border: 1px solid #ddd;
}
.author-card-name {
margin: 5px 0 10px;
font-size: 1.3rem;
line-height: 1.3;
}
.author-card-bio {
font-size: 0.9rem;
color: #666;
line-height: 1.5;
height: 6em;
margin-bottom: 12px;
overflow: hidden;
}
.author-card-profile {
margin-top: 10px;
font-size: 0.9rem;
}
.author-card-profile a {
font-weight: 600;
}
.author-card {
transition: box-shadow .2s ease;
}
.author-card:hover {
box-shadow: 0 4px 12px rgba(0,0,0,.12);
}