417 lines
9.5 KiB
CSS
417 lines
9.5 KiB
CSS
|
.pink {
|
||
|
background-color: pink; }
|
||
|
|
||
|
.RV-Alignment__Container {
|
||
|
display: grid; }
|
||
|
.RV-Alignment__Container--top {
|
||
|
display: grid;
|
||
|
align-content: start; }
|
||
|
.RV-Alignment__Container--bottom {
|
||
|
display: grid;
|
||
|
align-content: end; }
|
||
|
.RV-Alignment__Container--left {
|
||
|
display: grid;
|
||
|
justify-content: start; }
|
||
|
.RV-Alignment__Container--right {
|
||
|
display: grid;
|
||
|
justify-content: end; }
|
||
|
.RV-Alignment__Container--horizontalCenter {
|
||
|
display: grid;
|
||
|
justify-content: center; }
|
||
|
.RV-Alignment__Container--verticalCenter {
|
||
|
display: grid;
|
||
|
align-content: center; }
|
||
|
.RV-Alignment__Container--center {
|
||
|
display: grid;
|
||
|
justify-content: center;
|
||
|
display: grid;
|
||
|
align-content: center; }
|
||
|
|
||
|
.RV-FlexRow__Container {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: space-around; }
|
||
|
.RV-FlexRow__Container--multiRow {
|
||
|
flex-wrap: wrap; }
|
||
|
|
||
|
.RV-FlexRow__Item {
|
||
|
min-width: 0;
|
||
|
width: 100%; }
|
||
|
.RV-FlexRow__Item__Container {
|
||
|
display: grid; }
|
||
|
.RV-FlexRow__Item__Container--top {
|
||
|
display: grid;
|
||
|
align-content: start; }
|
||
|
.RV-FlexRow__Item__Container--bottom {
|
||
|
display: grid;
|
||
|
align-content: end; }
|
||
|
.RV-FlexRow__Item__Container--left {
|
||
|
display: grid;
|
||
|
justify-content: start; }
|
||
|
.RV-FlexRow__Item__Container--right {
|
||
|
display: grid;
|
||
|
justify-content: end; }
|
||
|
.RV-FlexRow__Item__Container--horizontalCenter {
|
||
|
display: grid;
|
||
|
justify-content: center; }
|
||
|
.RV-FlexRow__Item__Container--verticalCenter {
|
||
|
display: grid;
|
||
|
align-content: center; }
|
||
|
.RV-FlexRow__Item__Container--center {
|
||
|
display: grid;
|
||
|
justify-content: center;
|
||
|
display: grid;
|
||
|
align-content: center; }
|
||
|
.RV-FlexRow__Item, .RV-FlexRow__Item--normal {
|
||
|
flex-grow: 3;
|
||
|
flex-shrink: 3; }
|
||
|
.RV-FlexRow__Item--narrower {
|
||
|
flex-grow: 1;
|
||
|
flex-shrink: 5; }
|
||
|
.RV-FlexRow__Item--narrow {
|
||
|
flex-grow: 2;
|
||
|
flex-shrink: 4; }
|
||
|
.RV-FlexRow__Item--wide {
|
||
|
flex-grow: 4;
|
||
|
flex-shrink: 2; }
|
||
|
.RV-FlexRow__Item--wider {
|
||
|
flex-grow: 5;
|
||
|
flex-shrink: 1; }
|
||
|
.RV-FlexRow__Item--fixedSize {
|
||
|
flex-grow: 0;
|
||
|
flex-shrink: 0;
|
||
|
width: min-content; }
|
||
|
|
||
|
.RV-FlexGrid__Container {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
||
|
grid-template-rows: repeat(auto-fill, 300px);
|
||
|
grid-auto-rows: 300px; }
|
||
|
|
||
|
.RV-FlexGrid__Item__Container {
|
||
|
display: grid; }
|
||
|
.RV-FlexGrid__Item__Container--top {
|
||
|
display: grid;
|
||
|
align-content: start; }
|
||
|
.RV-FlexGrid__Item__Container--bottom {
|
||
|
display: grid;
|
||
|
align-content: end; }
|
||
|
.RV-FlexGrid__Item__Container--left {
|
||
|
display: grid;
|
||
|
justify-content: start; }
|
||
|
.RV-FlexGrid__Item__Container--right {
|
||
|
display: grid;
|
||
|
justify-content: end; }
|
||
|
.RV-FlexGrid__Item__Container--horizontalCenter {
|
||
|
display: grid;
|
||
|
justify-content: center; }
|
||
|
.RV-FlexGrid__Item__Container--verticalCenter {
|
||
|
display: grid;
|
||
|
align-content: center; }
|
||
|
.RV-FlexGrid__Item__Container--center {
|
||
|
display: grid;
|
||
|
justify-content: center;
|
||
|
display: grid;
|
||
|
align-content: center; }
|
||
|
|
||
|
.RV-ContentCrop__Container, .RV-ContentCrop__Container * {
|
||
|
overflow: hidden;
|
||
|
word-break: break-all; }
|
||
|
|
||
|
.RV-ContentCrop__Container img {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
object-fit: cover; }
|
||
|
|
||
|
.RV-ContentCrop__Container--left img {
|
||
|
object-position: left; }
|
||
|
|
||
|
.RV-ContentCrop__Container--center img {
|
||
|
object-position: center; }
|
||
|
|
||
|
.RV-ContentCrop__Container--top img {
|
||
|
object-position: top; }
|
||
|
|
||
|
.RV-ContentCrop__Container--bottom img {
|
||
|
object-position: botom; }
|
||
|
|
||
|
.RV-ContentCrop__Container--center img {
|
||
|
object-position: center; }
|
||
|
|
||
|
.RV-Fan__Container--vertical {
|
||
|
flex-direction: column;
|
||
|
width: max-content; }
|
||
|
|
||
|
.RV-Fan__Container--vertical .RV-Fan__Surface {
|
||
|
width: 320px;
|
||
|
min-height: 280px; }
|
||
|
|
||
|
.RV-Fan__Container--horizontal {
|
||
|
flex-direction: row; }
|
||
|
|
||
|
.RV-Fan__Container--horizontal .RV-Fan__Surface {
|
||
|
min-width: 320px;
|
||
|
height: 280px; }
|
||
|
|
||
|
.RV-Fan__Container--auto {
|
||
|
flex-flow: row wrap; }
|
||
|
|
||
|
.RV-Fan__Container--auto .RV-Fan__Surface {
|
||
|
width: calc(100% - 320px);
|
||
|
min-width: 320px;
|
||
|
height: 280px; }
|
||
|
|
||
|
.RV-Fan__Container--fullWidth .RV-Fan__Base, .RV-Fan__Container--fullWidth .RV-Fan__Surface {
|
||
|
flex-grow: 1; }
|
||
|
|
||
|
.RV-Fan__Container {
|
||
|
display: flex; }
|
||
|
|
||
|
.RV-Fan__Base {
|
||
|
height: 280px;
|
||
|
width: 320px;
|
||
|
flex: 0 0 auto; }
|
||
|
|
||
|
.RV-Fan__Surface, .RV-Fan__Surface * {
|
||
|
overflow: hidden;
|
||
|
word-break: break-all; }
|
||
|
|
||
|
.RV-Fan__Surface img {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
object-fit: cover; }
|
||
|
|
||
|
.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: botom; }
|
||
|
|
||
|
.RV-Fan__Surface--center img {
|
||
|
object-position: center; }
|
||
|
|
||
|
.RV-FullWidthContent__Container {
|
||
|
width: 100%; }
|
||
|
|
||
|
.RV-FullWidthContent__Item {
|
||
|
width: 100%; }
|
||
|
.RV-FullWidthContent__Item, .RV-FullWidthContent__Item * {
|
||
|
overflow: hidden;
|
||
|
word-break: break-all; }
|
||
|
.RV-FullWidthContent__Item img {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
object-fit: cover; }
|
||
|
.RV-FullWidthContent__Item--left img {
|
||
|
object-position: left; }
|
||
|
.RV-FullWidthContent__Item--center img {
|
||
|
object-position: center; }
|
||
|
.RV-FullWidthContent__Item--top img {
|
||
|
object-position: top; }
|
||
|
.RV-FullWidthContent__Item--bottom img {
|
||
|
object-position: botom; }
|
||
|
.RV-FullWidthContent__Item--center img {
|
||
|
object-position: center; }
|
||
|
|
||
|
.RV-BoxShadow {
|
||
|
position: relative;
|
||
|
float: left;
|
||
|
width: 40%;
|
||
|
margin: 2em 10px 4em;
|
||
|
background: #fff;
|
||
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset; }
|
||
|
.RV-BoxShadow:before, .RV-BoxShadow:after {
|
||
|
content: "";
|
||
|
position: absolute;
|
||
|
z-index: -2; }
|
||
|
.RV-BoxShadow--simple {
|
||
|
box-shadow: 0 0 20px #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-ElementList__Container {
|
||
|
list-style-type: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
border: none; }
|
||
|
|
||
|
.RV-ElementList__Item {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
border: none; }
|
||
|
|
||
|
.RV-Spacing__Outer--small {
|
||
|
margin: 10px; }
|
||
|
|
||
|
.RV-Spacing__Outer--medium {
|
||
|
margin: 25px; }
|
||
|
|
||
|
.RV-Spacing__Outer--large {
|
||
|
margin: 35px; }
|
||
|
|
||
|
.RV-Spacing__Inner--small {
|
||
|
padding: 10px; }
|
||
|
.RV-Spacing__Inner--small {
|
||
|
gap: 10px; }
|
||
|
|
||
|
.RV-Spacing__Inner--medium {
|
||
|
padding: 25px; }
|
||
|
.RV-Spacing__Inner--medium {
|
||
|
gap: 25px; }
|
||
|
|
||
|
.RV-Spacing__Inner--large {
|
||
|
padding: 35px; }
|
||
|
.RV-Spacing__Inner--large {
|
||
|
gap: 35px; }
|
||
|
|
||
|
.RV-Iconized__Container {
|
||
|
position: relative; }
|
||
|
.RV-Iconized__Container--medium {
|
||
|
top: -.5em; }
|
||
|
.RV-Iconized__Container--large {
|
||
|
top: -1.03073em; }
|
||
|
.RV-Iconized__Container--huge {
|
||
|
top: -2.05em; }
|
||
|
|
||
|
.RV-Iconized__Icon {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
border: none; }
|
||
|
|
||
|
.RV-Iconized__Container--small .RV-Iconized__Icon {
|
||
|
width: 1em;
|
||
|
height: 1em;
|
||
|
position: relative;
|
||
|
top: .125em; }
|
||
|
|
||
|
.RV-Iconized__Container--medium .RV-Iconized__Icon {
|
||
|
width: 2em;
|
||
|
height: 2em;
|
||
|
position: relative;
|
||
|
top: .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; }
|
||
|
|
||
|
.RV-ImageGrid__Container {
|
||
|
list-style-type: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
border: none; }
|
||
|
|
||
|
.RV-ImageGrid__Item {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
top: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
right: 0;
|
||
|
border: none; }
|
||
|
|
||
|
.RV-ImageGrid__Container {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
||
|
grid-template-rows: repeat(auto-fill, 300px);
|
||
|
grid-auto-rows: 300px; }
|
||
|
|
||
|
.RV-ImageGrid__Item__Container {
|
||
|
display: grid; }
|
||
|
.RV-ImageGrid__Item__Container--top {
|
||
|
display: grid;
|
||
|
align-content: start; }
|
||
|
.RV-ImageGrid__Item__Container--bottom {
|
||
|
display: grid;
|
||
|
align-content: end; }
|
||
|
.RV-ImageGrid__Item__Container--left {
|
||
|
display: grid;
|
||
|
justify-content: start; }
|
||
|
.RV-ImageGrid__Item__Container--right {
|
||
|
display: grid;
|
||
|
justify-content: end; }
|
||
|
.RV-ImageGrid__Item__Container--horizontalCenter {
|
||
|
display: grid;
|
||
|
justify-content: center; }
|
||
|
.RV-ImageGrid__Item__Container--verticalCenter {
|
||
|
display: grid;
|
||
|
align-content: center; }
|
||
|
.RV-ImageGrid__Item__Container--center {
|
||
|
display: grid;
|
||
|
justify-content: center;
|
||
|
display: grid;
|
||
|
align-content: center; }
|
||
|
|
||
|
.RV-ImageGrid__Container {
|
||
|
padding: 25px; }
|
||
|
.RV-ImageGrid__Container__Container {
|
||
|
gap: 25px; }
|
||
|
|
||
|
.RV-ImageGrid__Item, .RV-ImageGrid__Item * {
|
||
|
overflow: hidden;
|
||
|
word-break: break-all; }
|
||
|
|
||
|
.RV-ImageGrid__Item img {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
object-fit: cover; }
|
||
|
|
||
|
.RV-ImageGrid__Item--left img {
|
||
|
object-position: left; }
|
||
|
|
||
|
.RV-ImageGrid__Item--center img {
|
||
|
object-position: center; }
|
||
|
|
||
|
.RV-ImageGrid__Item--top img {
|
||
|
object-position: top; }
|
||
|
|
||
|
.RV-ImageGrid__Item--bottom img {
|
||
|
object-position: botom; }
|
||
|
|
||
|
.RV-ImageGrid__Item--center img {
|
||
|
object-position: center; }
|
||
|
|
||
|
.RV-ImageGrid__Item img {
|
||
|
object-position: center; }
|