lumeweb.com/src/components/Donate/How/How.scss

51 lines
1016 B
SCSS
Raw Normal View History

@import "/src/styles/vars.scss";
2023-05-30 22:08:42 +00:00
2023-06-01 22:15:49 +00:00
#how {
position: relative;
2023-05-30 22:08:42 +00:00
display: flex;
flex-direction: column;
justify-content: center;
margin-top: 8em;
2023-06-12 17:47:49 +00:00
padding: 14em 7.5% 16em;
2023-05-30 22:08:42 +00:00
.custom-bg {
position: absolute;
top: 0;
right: -12.5%;
bottom: 0;
left: -12.5%;
margin: 2% 0;
background: $color-blue-charcoal;
transform: matrix(1, 0.04, -0.04, 1, 0, 0);
z-index: -1;
overflow: hidden;
&::after {
content: "";
position: absolute;
top: 3%;
bottom: -9%;
left: 10%;
right: 10%;
background-image: url("/src/assets/donate-gfx-right.png");
background-position: 100% 100%;
background-repeat: no-repeat;
background-size: contain;
transform: rotate(-2.25deg);
}
2023-05-30 22:08:42 +00:00
}
.feature-group {
max-width: 64em;
2023-05-30 22:08:42 +00:00
}
@media screen and (max-width: 80rem) {
2023-05-30 22:08:42 +00:00
p {
background: rgba($color-blue-charcoal, 0.75);
2023-05-30 22:08:42 +00:00
border-radius: 0.5em;
padding: 0.3em 0.5em;
margin: -0.3em -0.5em;
}
}
}