scss-library/public/rcss.css

568 lines
15 KiB
CSS
Raw Normal View History

2021-01-19 23:38:27 +01:00
.RV-ContentCrop {
display: block;
overflow: hidden;
height: calc(100% - (2 * var(--inner-spacing)) - (2 * var(--outer-spacing)));
width: calc(100% - calc(2 * var(--inner-spacing)) - calc(2 * var(--outer-spacing)));
2021-01-02 20:31:02 +01:00
}
2021-01-19 23:38:27 +01:00
.RV-ContentCrop .RV-Image {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
2021-01-02 20:31:02 +01:00
}
2021-01-19 23:38:27 +01:00
.RV-ContentCrop .RV-Text {
overflow: hidden;
display: block;
2021-01-03 12:57:30 +01:00
position: relative;
2021-01-19 23:38:27 +01:00
text-overflow: ellipsis;
2021-01-03 12:57:30 +01:00
background-color: #fff;
2021-01-19 23:38:27 +01:00
line-height: 1.1;
max-height: 334.40000000000003px;
padding: 0;
2021-01-19 23:38:27 +01:00
margin: 0;
2021-01-02 20:31:02 +01:00
}
.RV-ContentCrop--bottom .RV-Image * {
object-position: bottom;
2021-01-02 20:31:02 +01:00
}
.RV-ContentCrop--top .RV-Image * {
object-position: top;
2021-01-02 20:31:02 +01:00
}
.RV-ContentCrop--right .RV-Image * {
object-position: right;
2021-01-02 20:31:02 +01:00
}
.RV-ContentCrop--left .RV-Image * {
object-position: left;
2021-01-02 20:31:02 +01:00
}
.RV-ContentCrop--center .RV-Image * {
object-position: center;
2021-01-02 20:31:02 +01:00
}
.RV-ContentCrop--square {
width: 100%;
padding-top: 100%;
position: relative;
}
.RV-ContentCrop--square .RV-Image *,
.RV-ContentCrop--square div {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
2021-01-02 20:31:02 +01:00
}
2021-01-19 23:38:27 +01:00
.RV-ContentCrop--circle {
border-radius: 50%;
2021-01-02 20:31:02 +01:00
width: 100%;
2021-01-19 23:38:27 +01:00
padding-top: 100%;
2021-01-02 20:31:02 +01:00
position: relative;
2021-01-03 15:33:36 +01:00
}
2021-01-19 23:38:27 +01:00
.RV-ContentCrop--circle .RV-Image *,
.RV-ContentCrop--circle div {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
2021-01-02 20:31:02 +01:00
}
2021-01-19 23:38:27 +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;
}
2021-01-19 23:38:27 +01:00
.RV-ContentCrop__--fade:after {
background-image: linear-gradient(180deg, rgba(255,255,255,0), #fff);
display: block;
content: ' ';
opacity: 0.8;
2021-01-02 20:31:02 +01:00
position: relative;
top: -25%;
2021-01-02 20:31:02 +01:00
width: 100%;
height: 25%;
z-index: 10;
2021-01-02 20:31:02 +01:00
}
.RV-FullWidthContent {
2021-01-02 20:31:02 +01:00
width: 100%;
}
.RV-FullWidthContent__Item {
width: 100%;
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow {
display: flex;
height: 100%;
--width: 100px;
--localBreakPoint: 500px;
--mediaBreakPoint: 100vw;
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--auto {
flex-direction: row;
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--vertical {
flex-direction: column;
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint {
flex-wrap: wrap;
margin: 0;
padding: 0;
2021-01-02 20:31:02 +01:00
top: 0;
bottom: 0;
left: 0;
2021-01-02 20:31:02 +01:00
right: 0;
border: none;
gap: 0;
2021-01-19 23:38:27 +01:00
--inner-spacing: 0px;
--outer-spacing: 0px;
gap: 0px;
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(1),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(1)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (1 - 1))) / 1 - (2 * var(--spacing-inner)));
2021-01-08 17:55:56 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(2),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(2)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (2 - 1))) / 2 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(3),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(3)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (3 - 1))) / 3 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(4),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(4)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (4 - 1))) / 4 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(5),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(5)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (5 - 1))) / 5 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(6),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(6)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (6 - 1))) / 6 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(7),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(7)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (7 - 1))) / 7 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(8),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(8)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (8 - 1))) / 8 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(9),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(9)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (9 - 1))) / 9 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(10),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(10)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (10 - 1))) / 10 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(11),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(11)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (11 - 1))) / 11 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(12),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(12)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (12 - 1))) / 12 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(13),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(13)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (13 - 1))) / 13 - (2 * var(--spacing-inner)));
2021-01-03 15:33:36 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(14),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(14)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (14 - 1))) / 14 - (2 * var(--spacing-inner)));
2021-01-03 15:33:36 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(15),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(15)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (15 - 1))) / 15 - (2 * var(--spacing-inner)));
2021-01-03 15:33:36 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(16),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(16)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (16 - 1))) / 16 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(17),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(17)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (17 - 1))) / 17 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(18),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(18)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (18 - 1))) / 18 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(19),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(19)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (19 - 1))) / 19 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint *:first-child:nth-last-child(20),
.RV-FlexRow--breakPoint *:first-child:nth-last-child(20)~* {
min-width: calc((var(--localBreakPoint) - (var(--spacing-inner) * (20 - 1))) / 20 - (2 * var(--spacing-inner)));
2021-01-02 20:31:02 +01:00
}
@media (max-width: var(--mediaBreakPoint)) {
.RV-FlexRow--breakPoint {
flex-direction: row;
}
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow--breakPoint .RV-FlexRow__Item {
min-width: initial;
flex-basis: calc(var(--localBreakPoint) * 999 - 100% * 999);
overflow: hidden;
}
.RV-FlexRow--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 {
flex-basis: max-content;
flex-grow: 3;
flex-shrink: 3;
2021-01-02 20:31:02 +01:00
}
.RV-FlexRow__Item--narrower {
flex-grow: 1;
flex-shrink: 5;
2021-01-02 20:31:02 +01:00
}
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;
}
.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;
}
.RV-FlexRow__Item--narrower {
flex-grow: 1;
flex-shrink: 5;
2021-01-02 20:31:02 +01:00
}
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%;
}
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%;
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%;
}
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;
flex-basis: max-content;
}
.RV-FlexGrid {
--item-height: 300px;
--item-width: 300px;
display: grid;
2021-01-19 23:38:27 +01:00
grid-template-columns: repeat(auto-fill, var(--item-width));
2021-01-02 20:31:02 +01:00
}
.RV-FlexGrid--autoWidth {
grid-template-columns: repeat(auto-fill, minmax(var(--item-width), 1fr));
grid-template-rows: repeat(auto-fill, minmax(var(--item-height), 1fr));
grid-auto-rows: minmax(var(--item-height), 1fr);
2021-01-02 20:31:02 +01:00
}
.RV-FlexGrid--fixedSize {
grid-template-rows: repeat(auto-fill, minmax(var(--item-height), 1fr));
grid-auto-rows: minmax(var(--item-height), 1fr);
grid-template-columns: repeat(auto-fill, var(--item-width));
justify-content: space-between;
2021-01-02 20:31:02 +01:00
}
.RV-FlexGrid--masonry {
2021-01-02 20:31:02 +01:00
display: block;
column-count: auto;
column-width: var(--item-width);
2021-01-02 20:31:02 +01:00
}
.RV-FlexGrid--masonry .RV-FlexGrid__Item {
2021-01-19 23:38:27 +01:00
display: inline-block;
height: unset;
margin-bottom: var(--inner-spacing);
2021-01-02 20:31:02 +01:00
}
2021-01-19 23:38:27 +01:00
.RV-FlexGrid--masonry .RV-FlexGrid__Item > * {
height: auto;
}
.RV-FlexGrid__Item {
height: calc(var(--item-height) - calc(2*var(--inner-spacing)));
}
.RV-FlexGrid__Item > * {
height: 100%;
width: 100%;
2021-01-02 20:31:02 +01:00
}
.RV-Fan {
--base-height: 280px;
--base-width: 320px;
2021-01-19 23:38:27 +01:00
--inner-spacing: 0px;
2021-01-03 15:33:36 +01:00
display: flex;
2021-01-19 23:38:27 +01:00
position: relative;
2021-01-03 15:33:36 +01:00
}
.RV-Fan--fullWidth {
flex-flow: row wrap;
2021-01-03 15:33:36 +01:00
}
.RV-Fan--fullWidth .RV-Fan__Surface {
2021-01-19 23:38:27 +01:00
min-width: calc(calc(var(--base-width)) - calc(2 * var(--inner-spacing)) - calc(2 * var(--outer-spacing)));
width: calc(calc(100% - var(--base-width)) - calc(2 * var(--inner-spacing)) - calc(2 * var(--outer-spacing)));
height: calc(var(--base-height) - (2 * var(--inner-spacing)) - (2 * var(--outer-spacing)));
2021-01-03 15:33:36 +01:00
}
.RV-Fan--fullWidth .RV-Fan__Base {
flex-grow: 1;
2021-01-03 15:33:36 +01:00
}
.RV-Fan--fullWidth .RV-Fan__Surface {
flex-grow: 1;
2021-01-03 15:33:36 +01:00
}
.RV-Fan--vertical {
flex-direction: column;
width: max-content;
2021-01-03 15:33:36 +01:00
}
.RV-Fan--vertical .RV-Fan__Surface {
2021-01-19 23:38:27 +01:00
width: calc(var(--base-width) - calc(2 * var(--inner-spacing)) - calc(2 * var(--outer-spacing)));
min-height: var(--base-height);
2021-01-08 17:55:56 +01:00
}
.RV-Fan--horizontal {
flex-direction: row;
2021-01-08 17:55:56 +01:00
}
.RV-Fan--horizontal .RV-Fan__Surface {
2021-01-19 23:38:27 +01:00
min-width: calc(var(--base-width) - calc(2 * var(--inner-spacing)) - calc(2 * var(--outer-spacing)));
height: calc(var(--base-height) - (2 * var(--inner-spacing)) - (2 * var(--outer-spacing)));
2021-01-08 17:55:56 +01:00
}
.RV-Fan--auto {
flex-flow: row wrap;
2021-01-08 17:55:56 +01:00
}
.RV-Fan--auto .RV-Fan__Surface {
2021-01-19 23:38:27 +01:00
min-width: calc(calc(var(--base-width)) - calc(2 * var(--inner-spacing)) - calc(2 * var(--outer-spacing)));
width: calc(calc(100% - var(--base-width)) - calc(2 * var(--inner-spacing)) - calc(2 * var(--outer-spacing)));
height: calc(var(--base-height) - (2 * var(--inner-spacing)) - (2 * var(--outer-spacing)));
2021-01-08 17:55:56 +01:00
}
.RV-Fan__Surface {
display: block;
overflow: hidden;
2021-01-19 23:38:27 +01:00
height: calc(100% - (2 * var(--inner-spacing)) - (2 * var(--outer-spacing)));
width: calc(100% - calc(2 * var(--inner-spacing)) - calc(2 * var(--outer-spacing)));
overflow: hidden;
height: calc(var(--base-height) - (2 * var(--inner-spacing)) - (2 * var(--outer-spacing)));
width: calc(100% - calc(2 * var(--inner-spacing)) - calc(2 * var(--outer-spacing)));
}
.RV-Fan__Surface .RV-Image {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
2021-01-03 15:33:36 +01:00
}
.RV-Fan__Surface .RV-Text {
overflow: hidden;
display: block;
position: relative;
2021-01-19 23:38:27 +01:00
text-overflow: ellipsis;
background-color: #fff;
2021-01-19 23:38:27 +01:00
line-height: 1.1;
max-height: 334.40000000000003px;
2021-01-03 15:33:36 +01:00
padding: 0;
margin: 0;
}
.RV-Fan__Surface--fixedWidth {
2021-01-19 23:38:27 +01:00
max-width: calc(var(--base-width) - calc(2 * var(--inner-spacing)) - calc(2 * var(--outer-spacing)));
2021-01-03 15:33:36 +01:00
}
.RV-Fan__Surface--fixedHeight {
2021-01-19 23:38:27 +01:00
height: calc(var(--base-height) - (2 * var(--inner-spacing)) - (2 * var(--outer-spacing)));
2021-01-03 15:33:36 +01:00
}
.RV-Fan__Base {
2021-01-19 23:38:27 +01:00
height: calc(var(--base-height) - (2 * var(--inner-spacing)) - (2 * var(--outer-spacing)));
width: calc(var(--base-width) - calc(2 * var(--inner-spacing)) - calc(2 * var(--outer-spacing)));
flex: 0 0 auto;
2021-01-03 15:33:36 +01:00
}
.RV-Alignment {
2021-01-03 15:33:36 +01:00
display: grid;
}
.RV-Alignment--top {
2021-01-03 15:33:36 +01:00
align-content: start;
}
.RV-Alignment--bottom {
2021-01-03 15:33:36 +01:00
align-content: end;
}
.RV-Alignment--left {
2021-01-03 15:33:36 +01:00
justify-content: start;
}
.RV-Alignment--right {
2021-01-03 15:33:36 +01:00
justify-content: end;
}
2021-01-19 23:38:27 +01:00
.RV-Alignment--horizontalCenter {
2021-01-03 15:33:36 +01:00
justify-content: center;
}
2021-01-19 23:38:27 +01:00
.RV-Alignment--verticalCenter {
2021-01-03 15:33:36 +01:00
align-items: center;
}
.RV-Alignment--center {
2021-01-03 15:33:36 +01:00
align-items: center;
2021-01-19 23:38:27 +01:00
justify-content: center;
}
.RV-Dummy--square {
height: 350px;
width: 350px;
}
.RV-Dummy--portrait {
height: 350px;
width: 150px;
}
.RV-Dummy--landscape {
width: 350px;
height: 150px;
}
.RV-Dummy--red {
background-color: #d8583e;
}
.RV-Spacing__Outer--small {
margin: 10px;
--outer-spacing: 10px;
}
.RV-Spacing__Outer--medium {
margin: 25px;
--outer-spacing: 25px;
}
.RV-Spacing__Outer--large {
margin: 35px;
--outer-spacing: 35px;
}
.RV-Spacing__Inner--small {
padding: 10px;
gap: 10px;
column-gap: 10px;
--inner-spacing: 10px;
}
.RV-Spacing__Inner--medium {
padding: 25px;
gap: 25px;
column-gap: 25px;
--inner-spacing: 25px;
}
.RV-Spacing__Inner--large {
padding: 35px;
gap: 35px;
column-gap: 35px;
--inner-spacing: 35px;
}
.RV-BoxShadow {
--color: #6b5690;
position: relative;
background-color: #fff;
}
.RV-BoxShadow:before,
.RV-BoxShadow:after {
content: '';
position: absolute;
z-index: -2;
}
.RV-BoxShadow--simple {
box-shadow: 0 0 10px 3px var(--color);
}
.RV-BoxShadow--liftedCorners:before,
.RV-BoxShadow--liftedCorners:after {
bottom: 15px;
left: 10px;
width: 50%;
height: 20%;
box-shadow: 0 15px 8px var(--color);
transform: rotate(-5deg);
}
.RV-BoxShadow--liftedCorners:after {
right: 10px;
left: auto;
transform: rotate(5deg);
}
.RV-BoxShadow--levitating {
box-shadow: var(--color) 0px 1px 1px 0px inset, var(--color) 0px 40px 80px -15px, var(--color) 0px 30px 60px -30px;
}
.RV-BoxShadow--stacked {
--color: 107, 86, 144;
box-shadow: rgba(var(--color), 0.4) 0px 5px, rgba(var(--color), 0.3) 0px 10px, rgba(var(--color), 0.2) 0px 15px, rgba(var(--color), 0.1) 0px 20px, rgba(var(--color), 0.05) 0px 25px;
}
.RV-BoxShadow--drop {
position: relative;
box-shadow: 0 1px 4px var(--color);
}
.RV-BoxShadow--drop:after {
box-shadow: 0 0 40px var(--color);
bottom: 0px;
left: 10%;
right: 10%;
width: 80%;
height: 50%;
border-radius: 100%;
}
.RV-BoxShadow--solid {
border: 8px solid var(--color);
border-radius: 14px;
padding: 8px;
margin: -8px;
}
.RV-Iconized--extraSmall .RV-Iconized__Icon {
width: 1em;
height: 1em;
position: relative;
top: 0.125em;
}
.RV-Iconized--small {
top: -0.25em;
}
.RV-Iconized--small .RV-Iconized__Icon {
width: 1.5em;
height: 1.5em;
position: relative;
top: 0.45em;
}
.RV-Iconized--medium {
top: -0.5em;
}
.RV-Iconized--medium .RV-Iconized__Icon {
width: 2em;
height: 2em;
position: relative;
top: 0.625em;
}
.RV-Iconized--large {
top: -1.03073em;
}
.RV-Iconized--large .RV-Iconized__Icon {
width: 3em;
height: 3em;
position: relative;
top: 1.15573em;
}
.RV-Iconized--huge {
top: -2.05em;
}
.RV-Iconized--huge .RV-Iconized__Icon {
width: 5em;
height: 5em;
position: relative;
top: 2.175em;
}
.RV-Iconized__Icon {
margin: 0;
padding: 0;
top: 0;
bottom: 0;
left: 0;
right: 0;
border: none;
gap: 0;
--inner-spacing: 0px;
--outer-spacing: 0px;
2021-01-03 15:33:36 +01:00
}
* {
2021-01-03 15:33:36 +01:00
margin: 0;
padding: 0;
2021-01-08 17:55:56 +01:00
top: 0;
bottom: 0;
left: 0;
2021-01-08 17:55:56 +01:00
right: 0;
border: none;
gap: 0;
2021-01-19 23:38:27 +01:00
--inner-spacing: 0px;
--outer-spacing: 0px;
2021-01-03 17:02:32 +01:00
}