static-cms/src/components/UnpublishedListing.css

54 lines
653 B
CSS
Raw Normal View History

2016-09-13 16:00:24 -03:00
.container {
display: table;
width: 100%;
}
2016-09-09 17:15:58 -03:00
.column {
2016-09-13 16:00:24 -03:00
display: table-cell;
2016-09-09 17:15:58 -03:00
text-align: center;
2016-09-13 16:00:24 -03:00
width: 33%;
height: 100%;
transition: background-color .5s ease;
2016-09-13 12:32:26 -03:00
& h2 {
font-size: 16px;
}
2016-09-09 17:15:58 -03:00
}
2016-09-13 16:00:24 -03:00
.highlighted {
background-color: #e1eeea;
}
2016-09-09 17:15:58 -03:00
.column:not(:last-child) {
2016-09-13 16:00:24 -03:00
padding-right: 20px;
2016-09-09 17:15:58 -03:00
}
.card {
width: 100% !important;
margin: 7px 0;
2016-09-14 18:25:45 -03:00
& h2 {
2016-09-09 17:15:58 -03:00
font-size: 17px;
& small {
font-weight: normal;
}
}
& p {
color: #555;
font-size: 12px;
margin-top: 5px;
}
2016-09-14 18:25:45 -03:00
& button {
margin: 10px 10px 0 0;
float: right;
}
2016-09-09 17:15:58 -03:00
}
2016-09-13 16:00:24 -03:00
.clear::after {
content:"";
display:block;
clear:both;
}