Newer
Older
.flex-cards {
display: flex;
flex-flow: wrap;
justify-content: space-evenly;
margin-top: 0rem;
margin-bottom: 0rem;
.badge {
@include drop-shadow(
$offset-x: 0.2rem,
$offset-y: 0.2rem,
$color: rgba(black, 0.25)
);
}
justify-content: center;
align-items: center;
padding: .5rem;
.card-title {
margin-bottom: .5rem;
margin-top: .5rem;
}
}
.card-img-equal {
width: 100%;
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
.image-card {
@include drop-shadow;
max-height: 9rem;
border: 0;
.card-text {
text-shadow: 2px 2px 8px black;
}
.card-img {
height: 100%;
width: 100%;
object-fit: cover;
mix-blend-mode: hard-light;
filter: brightness(50%);
}
.card-img-overlay {
display: flex;
flex-direction: column;
justify-content: flex-start;
}
a {
color: white;
&:hover {
color: $color-helmholtz-bright-blue;
}
}
h4 {
margin: 0;
}
}