92 lines
2.1 KiB
CSS
92 lines
2.1 KiB
CSS
@import url(./pink.css);
|
|
.RV-FlexRow__Container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
gap: 10px;
|
|
justify-content: space-around; }
|
|
.RV-FlexRow__Container--wrap {
|
|
flex-wrap: wrap; }
|
|
|
|
.RV-FlexRow__Item {
|
|
width: 100%; }
|
|
.RV-FlexRow__Item * {
|
|
text-align: unset;
|
|
display: flex;
|
|
flex-direction: row; }
|
|
.RV-FlexRow__Item--fixedSize {
|
|
flex: 0 0;
|
|
width: min-content; }
|
|
.RV-FlexRow__Item--center {
|
|
text-align: center; }
|
|
.RV-FlexRow__Item--center * {
|
|
justify-content: center; }
|
|
.RV-FlexRow__Item--left {
|
|
text-align: left; }
|
|
.RV-FlexRow__Item--left * {
|
|
justify-content: flex-start; }
|
|
.RV-FlexRow__Item--right {
|
|
text-align: right; }
|
|
.RV-FlexRow__Item--right * {
|
|
justify-content: flex-end; }
|
|
|
|
.RV-FlexGrid__Container {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
|
|
.RV-FlexGrid__Container--sameHeight {
|
|
grid-auto-rows: 1fr; }
|
|
.RV-FlexGrid__Container--spacing {
|
|
gap: 10px; }
|
|
|
|
.RV-FlexGrid__Item * {
|
|
text-align: unset;
|
|
display: flex;
|
|
flex-direction: row; }
|
|
|
|
.RV-FlexGrid__Item--fixedSize {
|
|
flex: 0 0;
|
|
width: min-content; }
|
|
|
|
.RV-FlexGrid__Item--center {
|
|
text-align: center; }
|
|
.RV-FlexGrid__Item--center * {
|
|
justify-content: center; }
|
|
|
|
.RV-FlexGrid__Item--left {
|
|
text-align: left; }
|
|
.RV-FlexGrid__Item--left * {
|
|
justify-content: flex-start; }
|
|
|
|
.RV-FlexGrid__Item--right {
|
|
text-align: right; }
|
|
.RV-FlexGrid__Item--right * {
|
|
justify-content: flex-end; }
|
|
|
|
.RV-ContentCrop__Container, .RV-ContentCrop__Container * {
|
|
overflow: hidden;
|
|
word-break: break-all; }
|
|
|
|
.RV-ContentCrop__Container img {
|
|
width: inherit;
|
|
height: inherit;
|
|
object-fit: cover;
|
|
object-position: center; }
|
|
|
|
.RV-ContentCrop__Container--left img {
|
|
object-position: left; }
|
|
|
|
.RV-ContentCrop__Container--right img {
|
|
object-position: right; }
|
|
|
|
.RV-ContentCrop__Container--top img {
|
|
object-position: top; }
|
|
|
|
.RV-ContentCrop__Container--bottom img {
|
|
object-position: bottom; }
|
|
|
|
.RV-Fan__Container {
|
|
display: flex; }
|
|
.RV-Fan__Container--horizontal {
|
|
flex-direction: row; }
|
|
.RV-Fan__Container--vertical {
|
|
flex-direction: column; }
|