2019-04-03 00:17:00 -04:00
|
|
|
.yrbl__wrap {
|
2019-01-26 19:23:47 -05:00
|
|
|
display: flex;
|
2020-08-26 12:24:07 -04:00
|
|
|
align-items: center;
|
2020-12-11 13:33:27 -05:00
|
|
|
flex-direction: column;
|
2020-08-26 12:24:07 -04:00
|
|
|
flex-wrap: wrap;
|
2019-01-26 19:23:47 -05:00
|
|
|
justify-content: center;
|
2019-03-07 16:46:15 -05:00
|
|
|
text-align: left;
|
2020-08-26 12:24:07 -04:00
|
|
|
|
|
|
|
.section__actions {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
margin-bottom: var(--spacing-s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: $breakpoint-small) {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
2019-01-26 19:23:47 -05:00
|
|
|
}
|
|
|
|
|
2019-01-22 13:29:45 -05:00
|
|
|
.yrbl {
|
2020-08-26 12:24:07 -04:00
|
|
|
display: none;
|
2020-12-11 13:33:27 -05:00
|
|
|
height: 10rem;
|
2019-12-18 00:27:08 -05:00
|
|
|
|
2020-08-26 12:24:07 -04:00
|
|
|
@media (min-width: $breakpoint-small) {
|
|
|
|
display: block;
|
|
|
|
height: 20rem;
|
|
|
|
margin-right: calc(var(--spacing-xl) * 2);
|
2019-12-18 00:27:08 -05:00
|
|
|
}
|
2019-01-22 13:29:45 -05:00
|
|
|
}
|
|
|
|
|
2020-12-11 13:33:27 -05:00
|
|
|
.yrbl--always-show {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-12-03 19:10:23 -05:00
|
|
|
.yrbl--small {
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
@media (min-width: $breakpoint-small) {
|
|
|
|
display: block;
|
|
|
|
height: 8rem;
|
|
|
|
margin-right: calc(var(--spacing-xl));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-03 00:17:00 -04:00
|
|
|
.yrbl__content {
|
2020-04-22 15:07:38 -04:00
|
|
|
max-width: 400px;
|
2019-04-03 00:17:00 -04:00
|
|
|
}
|
|
|
|
|
2019-01-22 13:29:45 -05:00
|
|
|
.yrbl--first-run {
|
|
|
|
align-self: center;
|
2019-01-26 19:23:47 -05:00
|
|
|
height: 250px;
|
2019-01-22 13:29:45 -05:00
|
|
|
width: auto;
|
2020-06-01 13:03:19 -04:00
|
|
|
margin: 0 var(--spacing-l);
|
2019-01-22 13:29:45 -05:00
|
|
|
}
|
2019-01-23 10:38:40 -05:00
|
|
|
|
2019-02-14 21:52:10 -04:00
|
|
|
.yrbl--search {
|
|
|
|
justify-content: flex-start;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
.yrbl {
|
|
|
|
height: 18rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-23 10:38:40 -05:00
|
|
|
// Get weird here
|
|
|
|
.yrbl--enhanced {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 9999;
|
|
|
|
height: 95vh;
|
|
|
|
width: 95vh;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
opacity: 0.5;
|
|
|
|
animation-name: enhancedAnimation;
|
|
|
|
animation-duration: 2s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-direction: alternate;
|
|
|
|
animation-timing-function: ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
@-webkit-keyframes enhancedAnimation {
|
|
|
|
from {
|
|
|
|
left: 0;
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
left: 50vw;
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|