Feature: [accompanying-course-work] add new page to show an accompanying-course work

This commit is contained in:
2022-12-14 14:53:24 +01:00
parent 2a9ebe436e
commit f17c08f530
16 changed files with 309 additions and 98 deletions

View File

@@ -5,9 +5,12 @@ div.accompanying-course-work {
border-collapse: collapse;
border-radius: 5px;
width: 100%;
margin-top: 1em;
margin-bottom: 1em;
&, tr, th, td {
border: 1px solid lightgray;
padding: 0.3em;
background-color: $white;
}
th {
h4.title_label {
@@ -26,6 +29,11 @@ div.accompanying-course-work {
}
td.eval {
width: 100%;
div.download {
.row > * {
transform: scale(0.85);
}
}
}
}
@@ -47,10 +55,32 @@ div.accompanying-course-work {
}
}
div.item-bloc {
&.short {}
&.long {}
&.uniq {}
&.extended {
table.obj-res-eval {
margin-top: 0;
&:last-child {
margin-bottom: 0;
}
}
}
&.colored {
background-color: $chill-llight-gray;
}
}
}
div.flex-table div.item-bloc:nth-child(2n) table.obj-res-eval {
&, tr, th, td {
background-color: $chill-llight-gray;
/// item-bloc with background-color altern: even case
div.flex-table div.item-bloc:nth-child(2n) {
// set table background
table.obj-res-eval {
&, tr, th, td {
background-color: $chill-llight-gray;
}
}
}