78 lines
1.4 KiB
SCSS
78 lines
1.4 KiB
SCSS
.ImageSection {
|
|
border-radius: 0.5rem;
|
|
width: 100%;
|
|
@media (max-width: 1100px) {
|
|
max-width: 80vw;
|
|
}
|
|
|
|
position: relative;
|
|
|
|
background-size: contain;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
//background-color: rgba(183, 183, 183, 0.5);
|
|
//backdrop-filter: blur(5px);
|
|
//background-image: url("https://static.moonleay.net/img/lilJuddWeb/bgs/tapes-bg.png"),
|
|
// linear-gradient(
|
|
// 180deg,
|
|
// rgba(2, 0, 36, 0.1) 0%,
|
|
// rgba(0, 0, 0, 0) 35%,
|
|
// rgba(0, 0, 0, 0.25) 100%
|
|
// );
|
|
|
|
&.centered {
|
|
grid-column: 1/-1;
|
|
width: 50%;
|
|
justify-self: center;
|
|
}
|
|
|
|
.firstHalf {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
|
|
.imgDiv {
|
|
//background-color: rgba(0, 0, 0, 0.4);
|
|
//backdrop-filter: blur(5px);
|
|
|
|
padding: 0.5rem;
|
|
margin-left: 3rem;
|
|
margin-right: 3rem;
|
|
border-radius: 0.5rem;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
img {
|
|
border-radius: 0.5rem;
|
|
max-width: 80%;
|
|
max-height: 280px;
|
|
}
|
|
|
|
p {
|
|
padding-top: 2px;
|
|
font-size: 0.8rem;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.noteP {
|
|
line-height: 1.5;
|
|
vertical-align: middle;
|
|
|
|
margin: auto;
|
|
font-size: 1rem;
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
p {
|
|
margin: auto;
|
|
padding: 2rem;
|
|
}
|
|
}
|
|
}
|