forked from verdnatura/hedera-web
42 lines
469 B
CSS
42 lines
469 B
CSS
.news
|
|
{
|
|
padding: 1em;
|
|
}
|
|
.news .box
|
|
{
|
|
max-width: 35em;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Items */
|
|
|
|
.news .item
|
|
{
|
|
padding: 1em;
|
|
border-bottom: 1px solid #DDD;
|
|
}
|
|
.news .item > p
|
|
{
|
|
margin: .1em 0;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
.news .item > p.important
|
|
{
|
|
font-size: 1.2em;
|
|
}
|
|
.news .item > .photo
|
|
{
|
|
float: left;
|
|
margin-right: 1em;
|
|
height: 4.2em;
|
|
width: 4.2em;
|
|
border-radius: .3em;
|
|
}
|
|
.news .item > button
|
|
{
|
|
float: right;
|
|
margin: 0;
|
|
}
|