scss-library/public/rcss.css

829 lines
15 KiB
CSS
Raw Normal View History

2021-01-02 20:31:02 +01:00
@import './pink.css';
2021-01-03 12:36:12 +01:00
.RV-Spacing__Outer--small {
margin: 10px;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-Spacing__Outer--medium {
margin: 25px;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-Spacing__Outer--large {
margin: 35px;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-Spacing__Inner--small {
padding: 10px;
gap: 10px;
column-gap: 10px;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-Spacing__Inner--medium {
padding: 25px;
gap: 25px;
column-gap: 25px;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-Spacing__Inner--large {
padding: 35px;
gap: 35px;
column-gap: 35px;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:57:30 +01:00
.RV-BoxShadow {
position: relative;
float: left;
background-color: #fff;
}
.RV-BoxShadow:before,
.RV-BoxShadow:after {
content: "";
position: absolute;
z-index: -2;
}
.RV-BoxShadow--simple {
box-shadow: 0 0 10px #6b5690;
}
.RV-BoxShadow--raised:after {
box-shadow: 0 15px 10px -10px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.3), 0 0 40px rgba(0,0,0,0.1) inset;
}
.RV-BoxShadow--liftedCorners:before,
.RV-BoxShadow--liftedCorners:after {
bottom: 15px;
left: 10px;
width: 50%;
height: 20%;
max-width: 300px;
box-shadow: 0 15px 10px rgba(0,0,0,0.7);
transform: rotate(-3deg);
}
.RV-BoxShadow--liftedCorners:after {
right: 10px;
left: auto;
transform: rotate(3deg);
}
.RV-Iconized {
margin: 0;
padding: 0;
top: 0;
bottom: 0;
left: 0;
right: 0;
border: none;
}
.RV-Iconized__Container {
position: relative;
}
.RV-Iconized__Container--small {
top: -0.25em;
}
.RV-Iconized__Container--medium {
top: -0.5em;
}
.RV-Iconized__Container--large {
top: -1.03073em;
}
.RV-Iconized__Container--huge {
top: -2.05em;
}
.RV-Iconized__Container--extraSmall .RV-Iconized__Icon {
width: 1em;
height: 1em;
position: relative;
top: 0.125em;
}
.RV-Iconized__Container--small .RV-Iconized__Icon {
width: 1.5em;
height: 1.5em;
position: relative;
top: 0.45em;
}
.RV-Iconized__Container--medium .RV-Iconized__Icon {
width: 2em;
height: 2em;
position: relative;
top: 0.625em;
}
.RV-Iconized__Container--large .RV-Iconized__Icon {
width: 3em;
height: 3em;
position: relative;
top: 1.15573em;
}
.RV-Iconized__Container--huge .RV-Iconized__Icon {
width: 5em;
height: 5em;
position: relative;
top: 2.175em;
}
2021-01-03 12:36:12 +01:00
.RV-Sizes--half {
2021-01-02 20:31:02 +01:00
flex-grow: 0;
flex-shrink: 0;
flex-basis: 50%;
width: 50%;
}
2021-01-03 12:36:12 +01:00
.RV-Sizes--third {
2021-01-02 20:31:02 +01:00
flex-grow: 0;
flex-shrink: 0;
2021-01-03 12:36:12 +01:00
flex-basis: 33.333333333333336%;
width: 33.333333333333336%;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-Sizes--quarter {
2021-01-02 20:31:02 +01:00
flex-grow: 0;
flex-shrink: 0;
flex-basis: 25%;
width: 25%;
}
2021-01-03 12:36:12 +01:00
.RV-Alignment {
2021-01-02 20:31:02 +01:00
display: grid;
}
2021-01-03 12:36:12 +01:00
.RV-Alignment--top {
2021-01-02 20:31:02 +01:00
display: grid;
align-content: start;
}
2021-01-03 12:36:12 +01:00
.RV-Alignment--bottom {
2021-01-02 20:31:02 +01:00
display: grid;
align-content: end;
}
2021-01-03 12:36:12 +01:00
.RV-Alignment--left {
2021-01-02 20:31:02 +01:00
display: grid;
justify-content: start;
}
2021-01-03 12:36:12 +01:00
.RV-Alignment--right {
2021-01-02 20:31:02 +01:00
display: grid;
justify-content: end;
}
2021-01-03 12:36:12 +01:00
.RV-Alignment--horizontalCenter {
2021-01-02 20:31:02 +01:00
display: grid;
justify-content: center;
}
2021-01-03 12:36:12 +01:00
.RV-Alignment--verticalCenter {
2021-01-02 20:31:02 +01:00
display: grid;
align-items: center;
}
2021-01-03 12:36:12 +01:00
.RV-Alignment--center {
2021-01-02 20:31:02 +01:00
display: grid;
justify-content: center;
display: grid;
align-items: center;
}
2020-12-29 19:11:14 +01:00
.RV-ContentCrop {
display: block;
2021-01-02 20:31:02 +01:00
overflow: hidden;
}
.RV-ContentCrop img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.RV-ContentCrop p {
overflow: hidden;
display: block;
text-overflow: ellipsis;
padding: 0;
margin: 0;
line-height: 1.21;
z-index: -20;
position: relative;
2021-01-03 12:36:12 +01:00
background-color: #fff;
height: 96.80000000000001%;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-ContentCrop--fade:after {
background-image: linear-gradient(180deg, rgba(255,255,255,0), #fff);
2021-01-02 20:31:02 +01:00
display: block;
2021-01-03 12:36:12 +01:00
content: ' ';
2021-01-02 20:31:02 +01:00
opacity: 0.8;
position: relative;
top: -25%;
width: 100%;
height: 25%;
z-index: -10;
}
2021-01-03 12:36:12 +01:00
.RV-ContentCrop--ellipsis:after {
2021-01-02 20:31:02 +01:00
position: relative;
display: block;
bottom: 1.2em;
left: calc(100% - 3ch);
2021-01-03 12:36:12 +01:00
content: '...';
2021-01-02 20:31:02 +01:00
font-size: 1.2em;
min-width: 2em;
2021-01-03 12:36:12 +01:00
background-color: #fff;
2021-01-02 20:31:02 +01:00
padding: 0 2px;
}
.RV-ContentCrop--square {
width: 100%;
padding-top: 100%;
position: relative;
}
.RV-ContentCrop--square img,
.RV-ContentCrop--square div {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.RV-ContentCrop--circle {
width: 100%;
padding-top: 100%;
position: relative;
border-radius: 50%;
}
.RV-ContentCrop--circle img,
.RV-ContentCrop--circle div {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.RV-ContentCrop--1to2 {
width: 100%;
padding-top: 200%;
position: relative;
}
.RV-ContentCrop--1to2 img {
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.RV-ContentCrop--2to1 {
width: 100%;
padding-top: 50%;
position: relative;
}
.RV-ContentCrop--2to1 img {
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.RV-ContentCrop--4to3 {
width: 100%;
padding-top: 75%;
position: relative;
}
.RV-ContentCrop--4to3 img {
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.RV-ContentCrop--16to9 {
width: 100%;
padding-top: 56.25%;
position: relative;
}
.RV-ContentCrop--16to9 img {
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.RV-ContentCrop--3to2 {
width: 100%;
2021-01-03 12:36:12 +01:00
padding-top: 66.66666666666666%;
2021-01-02 20:31:02 +01:00
position: relative;
}
.RV-ContentCrop--3to2 img {
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.RV-ContentCrop--left img {
object-position: left;
}
.RV-ContentCrop--center img {
object-position: center;
}
.RV-ContentCrop--top img {
object-position: top;
}
.RV-ContentCrop--bottom img {
object-position: bottom;
}
.RV-ContentCrop--center img {
object-position: center;
}
2020-08-23 14:40:14 +02:00
.RV-Fan__Container--vertical {
flex-direction: column;
2021-01-02 20:31:02 +01:00
width: max-content;
}
2020-08-23 14:40:14 +02:00
.RV-Fan__Container--vertical .RV-Fan__Surface {
width: 320px;
2021-01-02 20:31:02 +01:00
min-height: 280px;
}
2020-08-23 14:40:14 +02:00
.RV-Fan__Container--horizontal {
2021-01-02 20:31:02 +01:00
flex-direction: row;
}
2020-08-23 14:40:14 +02:00
.RV-Fan__Container--horizontal .RV-Fan__Surface {
min-width: 320px;
2021-01-02 20:31:02 +01:00
height: 280px;
}
2020-08-23 14:40:14 +02:00
.RV-Fan__Container--auto {
2021-01-02 20:31:02 +01:00
flex-flow: row wrap;
}
2020-08-23 14:40:14 +02:00
.RV-Fan__Container--auto .RV-Fan__Surface {
width: calc(100% - 320px);
min-width: 320px;
2021-01-02 20:31:02 +01:00
height: 280px;
}
2021-01-03 12:36:12 +01:00
.RV-Fan__Container--fullWidth .RV-Fan__Base,
.RV-Fan__Container--fullWidth .RV-Fan__Surface {
2021-01-02 20:31:02 +01:00
flex-grow: 1;
}
2020-08-21 17:51:22 +02:00
.RV-Fan__Container {
2021-01-02 20:31:02 +01:00
display: flex;
}
2020-08-23 11:39:19 +02:00
.RV-Fan__Base {
height: 280px;
width: 320px;
2021-01-02 20:31:02 +01:00
flex: 0 0 auto;
}
2020-12-29 19:11:14 +01:00
.RV-Fan__Surface {
display: block;
2021-01-02 20:31:02 +01:00
overflow: hidden;
}
.RV-Fan__Surface img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.RV-Fan__Surface p {
overflow: hidden;
display: block;
text-overflow: ellipsis;
padding: 0;
margin: 0;
line-height: 1.21;
z-index: -20;
position: relative;
2021-01-03 12:36:12 +01:00
background-color: #fff;
height: 96.80000000000001%;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-Fan__Surface--fade:after {
background-image: linear-gradient(180deg, rgba(255,255,255,0), #fff);
2021-01-02 20:31:02 +01:00
display: block;
2021-01-03 12:36:12 +01:00
content: ' ';
2021-01-02 20:31:02 +01:00
opacity: 0.8;
position: relative;
top: -25%;
width: 100%;
height: 25%;
z-index: -10;
}
2021-01-03 12:36:12 +01:00
.RV-Fan__Surface--ellipsis:after {
2021-01-02 20:31:02 +01:00
position: relative;
display: block;
bottom: 1.2em;
left: calc(100% - 3ch);
2021-01-03 12:36:12 +01:00
content: '...';
2021-01-02 20:31:02 +01:00
font-size: 1.2em;
min-width: 2em;
2021-01-03 12:36:12 +01:00
background-color: #fff;
2021-01-02 20:31:02 +01:00
padding: 0 2px;
}
.RV-Fan__Surface--square {
width: 100%;
padding-top: 100%;
position: relative;
}
.RV-Fan__Surface--square img,
.RV-Fan__Surface--square div {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.RV-Fan__Surface--circle {
width: 100%;
padding-top: 100%;
position: relative;
border-radius: 50%;
}
.RV-Fan__Surface--circle img,
.RV-Fan__Surface--circle div {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.RV-Fan__Surface--1to2 {
width: 100%;
padding-top: 200%;
position: relative;
}
.RV-Fan__Surface--1to2 img {
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.RV-Fan__Surface--2to1 {
width: 100%;
padding-top: 50%;
position: relative;
}
.RV-Fan__Surface--2to1 img {
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.RV-Fan__Surface--4to3 {
width: 100%;
padding-top: 75%;
position: relative;
}
.RV-Fan__Surface--4to3 img {
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.RV-Fan__Surface--16to9 {
width: 100%;
padding-top: 56.25%;
position: relative;
}
.RV-Fan__Surface--16to9 img {
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.RV-Fan__Surface--3to2 {
width: 100%;
2021-01-03 12:36:12 +01:00
padding-top: 66.66666666666666%;
2021-01-02 20:31:02 +01:00
position: relative;
}
.RV-Fan__Surface--3to2 img {
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.RV-Fan__Surface--left img {
object-position: left;
}
.RV-Fan__Surface--center img {
object-position: center;
}
.RV-Fan__Surface--top img {
object-position: top;
}
.RV-Fan__Surface--bottom img {
object-position: bottom;
}
.RV-Fan__Surface--center img {
object-position: center;
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Container {
display: grid;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Container--autoWidth {
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-template-rows: repeat(auto-fill, minmax(300px, 1fr));
grid-auto-rows: minmax(300px, 1fr);
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Container--fixedSize {
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-template-rows: repeat(auto-fill, minmax(300px, 1fr));
grid-auto-rows: minmax(300px, 1fr);
grid-template-columns: repeat(auto-fill, 300px);
justify-content: space-between;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Container--masonry {
2021-01-02 20:31:02 +01:00
display: block;
2021-01-03 12:36:12 +01:00
column-count: auto;
column-width: 300px;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Item {
display: grid;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Item--top {
display: grid;
align-content: start;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Item--bottom {
display: grid;
align-content: end;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Item--left {
display: grid;
justify-content: start;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Item--right {
display: grid;
justify-content: end;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Item--horizontalCenter {
display: grid;
justify-content: center;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Item--verticalCenter {
display: grid;
align-items: center;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Item--center {
display: grid;
justify-content: center;
display: grid;
align-items: center;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Container {
2020-12-29 19:11:14 +01:00
display: flex;
height: 100%;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item {
2021-01-02 20:31:02 +01:00
flex-basis: max-content;
flex-grow: 3;
flex-shrink: 3;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Container--breakPoint {
2021-01-02 20:31:02 +01:00
flex-wrap: wrap;
margin: 0;
padding: 0;
top: 0;
bottom: 0;
left: 0;
right: 0;
border: none;
gap: 0px;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Container--breakPoint * {
2021-01-02 20:31:02 +01:00
flex-basis: calc(500px * 999 - 100% * 999);
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Container--horizontal {
2021-01-02 20:31:02 +01:00
flex-direction: row;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Container--vertical {
2021-01-02 20:31:02 +01:00
flex-direction: column;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Container--auto {
2021-01-02 20:31:02 +01:00
flex-direction: row;
flex-wrap: wrap;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item {
2021-01-02 20:31:02 +01:00
display: grid;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--top {
2021-01-02 20:31:02 +01:00
display: grid;
align-content: start;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--bottom {
2021-01-02 20:31:02 +01:00
display: grid;
align-content: end;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--left {
2021-01-02 20:31:02 +01:00
display: grid;
justify-content: start;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--right {
2021-01-02 20:31:02 +01:00
display: grid;
justify-content: end;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--horizontalCenter {
2021-01-02 20:31:02 +01:00
display: grid;
justify-content: center;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--verticalCenter {
2021-01-02 20:31:02 +01:00
display: grid;
align-items: center;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--center {
2021-01-02 20:31:02 +01:00
display: grid;
justify-content: center;
display: grid;
align-items: center;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--narrower {
2021-01-02 20:31:02 +01:00
flex-grow: 1;
flex-shrink: 5;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--narrow {
2021-01-02 20:31:02 +01:00
flex-grow: 2;
flex-shrink: 4;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--wide() {
2021-01-02 20:31:02 +01:00
flex-grow: 4;
flex-shrink: 2;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--wider {
2021-01-02 20:31:02 +01:00
flex-grow: 5;
flex-shrink: 1;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--fixedSize {
2021-01-02 20:31:02 +01:00
flex-grow: 0;
flex-shrink: 0;
width: min-content;
flex-basis: 100px;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--half {
2021-01-02 20:31:02 +01:00
flex-grow: 0;
flex-shrink: 0;
flex-basis: 50%;
width: 50%;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--third {
2021-01-02 20:31:02 +01:00
flex-grow: 0;
flex-shrink: 0;
2021-01-03 12:36:12 +01:00
flex-basis: 33.333333333333336%;
width: 33.333333333333336%;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--quarter {
2021-01-02 20:31:02 +01:00
flex-grow: 0;
flex-shrink: 0;
flex-basis: 25%;
width: 25%;
}
2021-01-03 12:36:12 +01:00
.RV-FlexRow__Item--content {
2021-01-02 20:31:02 +01:00
flex-grow: 0;
flex-shrink: 0;
width: max-content;
flex-basis: max-content;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Container {
width: 100%;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item {
width: 100%;
2020-12-29 19:11:14 +01:00
display: block;
2021-01-02 20:31:02 +01:00
overflow: hidden;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item img {
2021-01-02 20:31:02 +01:00
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item p {
2021-01-02 20:31:02 +01:00
overflow: hidden;
display: block;
text-overflow: ellipsis;
padding: 0;
margin: 0;
line-height: 1.21;
z-index: -20;
position: relative;
2021-01-03 12:36:12 +01:00
background-color: #fff;
height: 96.80000000000001%;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--fade:after {
background-image: linear-gradient(180deg, rgba(255,255,255,0), #fff);
2021-01-02 20:31:02 +01:00
display: block;
2021-01-03 12:36:12 +01:00
content: ' ';
2021-01-02 20:31:02 +01:00
opacity: 0.8;
position: relative;
top: -25%;
width: 100%;
height: 25%;
z-index: -10;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--ellipsis:after {
2021-01-02 20:31:02 +01:00
position: relative;
display: block;
bottom: 1.2em;
left: calc(100% - 3ch);
2021-01-03 12:36:12 +01:00
content: '...';
2021-01-02 20:31:02 +01:00
font-size: 1.2em;
min-width: 2em;
2021-01-03 12:36:12 +01:00
background-color: #fff;
2021-01-02 20:31:02 +01:00
padding: 0 2px;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--square {
2021-01-02 20:31:02 +01:00
width: 100%;
padding-top: 100%;
position: relative;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--square img,
.RV-FullWidthContent__Item--square div {
2021-01-02 20:31:02 +01:00
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--circle {
2021-01-02 20:31:02 +01:00
width: 100%;
padding-top: 100%;
position: relative;
border-radius: 50%;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--circle img,
.RV-FullWidthContent__Item--circle div {
2021-01-02 20:31:02 +01:00
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--1to2 {
2021-01-02 20:31:02 +01:00
width: 100%;
padding-top: 200%;
position: relative;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--1to2 img {
2021-01-02 20:31:02 +01:00
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--2to1 {
2021-01-02 20:31:02 +01:00
width: 100%;
padding-top: 50%;
position: relative;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--2to1 img {
2021-01-02 20:31:02 +01:00
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--4to3 {
2021-01-02 20:31:02 +01:00
width: 100%;
padding-top: 75%;
position: relative;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--4to3 img {
2021-01-02 20:31:02 +01:00
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--16to9 {
2021-01-02 20:31:02 +01:00
width: 100%;
padding-top: 56.25%;
position: relative;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--16to9 img {
2021-01-02 20:31:02 +01:00
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--3to2 {
2021-01-02 20:31:02 +01:00
width: 100%;
2021-01-03 12:36:12 +01:00
padding-top: 66.66666666666666%;
2021-01-02 20:31:02 +01:00
position: relative;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--3to2 img {
2021-01-02 20:31:02 +01:00
object-fit: cover;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--left img {
2021-01-02 20:31:02 +01:00
object-position: left;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--center img {
2021-01-02 20:31:02 +01:00
object-position: center;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--top img {
2021-01-02 20:31:02 +01:00
object-position: top;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--bottom img {
2021-01-02 20:31:02 +01:00
object-position: bottom;
}
2021-01-03 12:36:12 +01:00
.RV-FullWidthContent__Item--center img {
2021-01-02 20:31:02 +01:00
object-position: center;
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Container--masonry.RV-Spacing__Inner--small * {
margin-bottom: 10px;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Container--masonry.RV-Spacing__Inner--medium * {
margin-bottom: 25px;
2021-01-02 20:31:02 +01:00
}
2021-01-03 12:36:12 +01:00
.RV-FlexGrid__Container--masonry.RV-Spacing__Inner--large * {
margin-bottom: 35px;
2021-01-02 20:31:02 +01:00
}