30 lines
520 B
SCSS
30 lines
520 B
SCSS
@import "variables";
|
|
|
|
|
|
vn-entry-summary .summary {
|
|
max-width: $width-lg;
|
|
|
|
.dark-row {
|
|
background-color: lighten($color-marginal, 10%);
|
|
}
|
|
|
|
tbody tr:nth-child(1) {
|
|
border-top: $border-thin;
|
|
}
|
|
|
|
tbody tr:nth-child(1),
|
|
tbody tr:nth-child(2) {
|
|
border-left: $border-thin;
|
|
border-right: $border-thin
|
|
}
|
|
|
|
tbody tr:nth-child(3) {
|
|
height: inherit
|
|
}
|
|
|
|
tr {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
|
|
$color-font-link-medium: lighten($color-font-link, 20%) |