reviews.css in Reviews 1.0.x
Same filename and directory in other branches
.review {
box-sizing: border-box;
padding: 10px 20px;
}
.review::after {
clear: both;
content: " ";
display: table;
}
.review > div {
float: left;
}
.review .review-metadata {
width: 20%;
}
.review .review-data {
margin-left: 5%;
width: 75%;
}
.review .review-data .field--name-title {
font-weight: bold;
}
.review:not(:last-child) {
border-bottom: 1px dotted #000000;
}
.review:nth-child(odd) {
background-color: #f8f8f8;
}
File
css/reviews.cssView source
- .review {
- box-sizing: border-box;
- padding: 10px 20px;
- }
-
- .review::after {
- clear: both;
- content: " ";
- display: table;
- }
-
- .review > div {
- float: left;
- }
-
- .review .review-metadata {
- width: 20%;
- }
-
- .review .review-data {
- margin-left: 5%;
- width: 75%;
- }
-
- .review .review-data .field--name-title {
- font-weight: bold;
- }
-
- .review:not(:last-child) {
- border-bottom: 1px dotted #000000;
- }
-
- .review:nth-child(odd) {
- background-color: #f8f8f8;
- }