meses-messaging
Version:
Meses messaging SDK in JavaScript
34 lines (30 loc) • 598 B
CSS
.entry {
box-sizing: border-box;
width: 100%;
padding: 4px 8px;
cursor: pointer;
position: relative;
border-top: 1px solid #f7f8fa;
border-bottom: 1px solid #f7f8fa;
transition: background-color 0.5s, color 0.5s, border 0.5s;
}
.entry:hover {
background-color: #f7f8fa;
border-top: 1px solid #ebedf1;
border-bottom: 1px solid #ebedf1;
}
.entry:active {
background-color: #E8E8E8;
}
.entryHeading {
font-weight: bold;
max-width: 90%;
}
.entryBody {
max-width: 90%;
font-style: italic;
height: 2em;
line-height: 2em;
margin-bottom: 1em;
overflow: hidden;
}