accourse banner: use bootstrap carousel to display vue_accourse social-issues and associated-persons as slides

This commit is contained in:
2021-11-18 17:59:03 +01:00
parent aba47600ff
commit af339aa7f0
7 changed files with 173 additions and 38 deletions

View File

@@ -127,3 +127,32 @@ div.activity-list {
}
}
}
/// AccompanyingCourse: HeaderSlider Carousel
div#header-accompanying_course-details {
button.carousel-control-prev,
button.carousel-control-next {
width: 8%;
opacity: inherit;
}
span.to-social-issues,
span.to-persons-associated {
display: inline-block;
border-radius: 15px;
width: 24px;
height: 24px;
box-shadow: 0 0 3px 0 grey;
opacity: 0.8;
&:hover {
opacity: 1;
}
}
span.to-social-issues {
background-color: #4bafe8;
border-left: 8px solid #32749a;
}
span.to-persons-associated {
background-color: #16d9b4;
border-right: 8px solid #ffffff;
}
}