43 lines
737 B
SCSS
43 lines
737 B
SCSS
@import "variables";
|
|
|
|
|
|
vn-entry-buy-index vn-card {
|
|
max-width: $width-xl;
|
|
|
|
.dark-row {
|
|
background-color: lighten($color-marginal, 10%);
|
|
}
|
|
|
|
thead tr {
|
|
border: 1px solid white;;
|
|
}
|
|
|
|
tbody tr:nth-child(1),
|
|
tbody tr:nth-child(2) {
|
|
border-left: 1px solid $color-spacer;
|
|
border-right: 1px solid $color-spacer;
|
|
}
|
|
|
|
tbody tr:nth-child(2) {
|
|
border-bottom: 1px solid $color-spacer;
|
|
}
|
|
|
|
tbody{
|
|
border-bottom: 1px solid $color-spacer;
|
|
}
|
|
|
|
tbody:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
tbody tr:nth-child(3) {
|
|
height: inherit
|
|
}
|
|
|
|
tr {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
|
|
$color-font-link-medium: lighten($color-font-link, 20%)
|