/home/preegmxb/byeaglytics-co.com/administrator/templates/atum/scss/pages/_com_modules.scss
.new-modules {
.card-columns {
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
}
.new-module {
display: flex;
overflow: hidden;
color: hsl(var(--hue),30%,40%);
background-color: hsl(var(--hue), 60%, 97%);
border: 1px solid hsl(var(--hue), 50%, 93%);
border-radius: $border-radius;
* {
transition: all .25s ease;
}
&-details {
flex: 1 0;
padding: 1rem;
}
&-title {
margin-bottom: .25rem;
font-size: 1rem;
font-weight: 700;
}
&-caption {
display: box;
margin: 0;
overflow: hidden;
font-size: .875rem;
/* stylelint-disable property-no-unknown */
box-orient: vertical;
-webkit-line-clamp: 3;
}
&-link {
display: flex;
align-items: flex-end;
justify-content: center;
width: 2.5rem;
font-size: 1.2rem;
background: hsl(var(--hue), 50%, 93%);
span {
margin-bottom: 10px;
color: hsl(var(--hue), 30%, 40%);
}
.new-module:hover & {
background: var(--template-bg-dark);
span {
color: $white;
}
}
}
}