<style>
.aui-buttons {
display: flex;
font-size: 0;
justify-content: center;
}
.searchBar form div {
width: 300px;
margin: auto;
}
p.confiforms-no-items {
text-align: center;
margin: 20px 0px;
}
#comments-section {
display: none;
}
.announcementcard {
display: flex;
padding: 10px;
background-color: #fdfdfd;
border-radius: 16px;
width: 900px;
height: 250px;
box-shadow: -2.9px 4px 2.4px 0.2px rgba(0, 0, 0, 0.08);
cursor: pointer;
margin: auto;
margin-bottom: 20px;
}
.announcementcard:hover{
box-shadow: -2.9px 4px 10px 0 rgba(0, 0, 0, 0.18);
}
.a-card-title {
color: #0B7FBA;
font-size: 20px;
font-weight: 600;
padding: 15px 0px 0px 0px;
text-align:left;
}
.a-card-date {
font-size: 15px;
font-weight: 600;
padding: 15px 0px 0px 0px;
}
.a-card-description {
font-size: 15px;
font-weight: 200;
color: #000000;
padding: 20px 10px 0px 0px;
}
.a-card-specifics {
font-size: 15px;
font-weight: 600;
padding: 10px 0px 0px 0px;
}
.announcementcard img {
width: 100%;
height: 225px;
object-fit: cover;
padding-top: 13px;
}
div.text-container {
display: flex;
flex-direction: column;
}
div.link-container {
display: flex;
flex-direction: column;
padding: 10px 0px 0px 0px;
}
div.text-encompasser {
display: flex;
width: 55%;
flex-direction: column;
padding: 0px 0px 0px 10px;
}
.imgalign {
display: flex;
flex-direction: column;
width: 45%;
height: 300px;
}
.date-container {
position: relative;
top: -225px;
width: 45%;
left: 0px;
padding: 10px;
text-align: center;
background-color: #eb9029;
display:none;
}
/* carousel styling */
/* Slideshow container */
#announcements-wrapper {
max-width: 1000px;
position: relative;
margin: auto;
}
/* Hide the images by default */
.announcementcard {
display: none;
}
/* Next previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
margin-top: -22px;
padding: 8px;
color: var(--primary-color) !important;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 3px;
user-select: none;
}
/* Position the "next button" to the right */
.next {
right: 0;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: var(--mobile-menu-background);
text-decoration: none !important;
}
/* The dots/bullets/indicators */
.cdot {
cursor: pointer;
height: 10px;
width: 10px;
margin: 0 2px;
background-color: var(--primary-color);
opacity: .5;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .cdot:hover {
background-color: var(--primary-color);
opacity: 1;
}
/* Fading animation */
.fade {
-webkit-animation-name: fade;
-webkit-animation-duration: 1.5s;
animation-name: fade;
animation-duration: 1.5s;
}
@-webkit-keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
@media only screen and (max-width: 480px) and (min-width: 320px){
.announcementcard {
flex-direction: column;
height: 600px;
width: 75%;
}
.imgalign {
width: 100%;
height: 250px;
}
.date-container {
width: 50%;
}
div.text-encompasser {
width: 100%;
}
}
</style>
|