25 lines
391 B
SCSS
25 lines
391 B
SCSS
.region-featured {
|
|
position: relative;
|
|
|
|
&:after {
|
|
background-image: url('../images/dcb-bg.jpg');
|
|
background-size: cover;
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: -1;
|
|
}
|
|
}
|
|
|
|
.featured-footer {
|
|
background: black;
|
|
color: white;
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
padding: 1rem;
|
|
text-align: center;
|
|
}
|