2022-03-28 12:12:06 +00:00
|
|
|
$medium-breakpoint: 900px;
|
|
|
|
$large-breakpoint: 1200px;
|
|
|
|
|
|
|
|
@mixin responsive-container {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: $large-breakpoint;
|
|
|
|
|
|
|
|
@media (max-width: $large-breakpoint) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2022-03-28 12:46:44 +00:00
|
|
|
|
|
|
|
@mixin patterned-shadow($size) {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
--shadow-size: #{$size};
|
|
|
|
|
|
|
|
background: url('/assets/shadow-pattern.png') repeat;
|
|
|
|
content: '';
|
|
|
|
height: 100%;
|
|
|
|
left: var(--shadow-size);
|
|
|
|
position: absolute;
|
|
|
|
top: var(--shadow-size);
|
|
|
|
width: 100%;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
}
|