2020-01-24 19:31:49 +01:00
|
|
|
.ads-wrapper {
|
|
|
|
@extend .navigation;
|
2020-01-24 19:56:21 +01:00
|
|
|
background-color: var(--color-ads-background);
|
|
|
|
padding-top: 0.5rem;
|
|
|
|
padding-right: 0.5rem;
|
2020-01-24 19:31:49 +01:00
|
|
|
|
|
|
|
p {
|
|
|
|
margin-left: 0.4rem; // The ads provider adds weird padding to their wrapper
|
|
|
|
font-size: var(--font-xsmall);
|
2020-01-24 19:56:21 +01:00
|
|
|
color: var(--color-ads-text);
|
|
|
|
}
|
|
|
|
|
|
|
|
.button--link {
|
|
|
|
color: var(--color-ads-link);
|
2020-01-24 19:31:49 +01:00
|
|
|
}
|
|
|
|
}
|
2020-03-26 22:47:07 +01:00
|
|
|
|
2022-05-30 09:44:46 +02:00
|
|
|
.avp-p-wrapper {
|
|
|
|
// Hide by default, so that any stray floater won't be visible.
|
2022-05-31 12:39:14 +02:00
|
|
|
// We'll enable it only within our designated container (see below).
|
2022-05-30 09:44:46 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-03-26 22:47:07 +01:00
|
|
|
// Inline Video Ads
|
2022-03-07 13:11:28 +01:00
|
|
|
// The default is coded for list-layout;
|
|
|
|
// --tile and other modifiers adjust accordingly.
|
2020-03-26 22:47:07 +01:00
|
|
|
.ads__claim-item {
|
2022-02-11 19:50:55 +01:00
|
|
|
margin-top: var(--spacing-m);
|
2022-03-07 13:11:28 +01:00
|
|
|
margin-bottom: var(--spacing-m);
|
2020-06-01 19:03:19 +02:00
|
|
|
padding: var(--spacing-m);
|
2020-03-26 22:47:07 +01:00
|
|
|
background-color: var(--color-ads-background);
|
2022-02-11 19:50:55 +01:00
|
|
|
border-radius: var(--border-radius);
|
2022-03-07 13:11:28 +01:00
|
|
|
display: flex;
|
2020-10-20 23:52:44 +02:00
|
|
|
flex-direction: row;
|
2020-10-19 23:32:28 +02:00
|
|
|
width: 100%;
|
2020-03-26 22:47:07 +01:00
|
|
|
|
2022-03-07 07:56:56 +01:00
|
|
|
.ad__container {
|
2021-07-23 04:56:32 +02:00
|
|
|
aspect-ratio: 16 / 9;
|
2022-03-07 13:11:28 +01:00
|
|
|
$minWidth: calc(var(--file-list-thumbnail-width) * 0.8);
|
|
|
|
min-width: $minWidth;
|
2022-05-18 13:16:35 +02:00
|
|
|
background-color: #283263;
|
2022-05-20 15:07:32 +02:00
|
|
|
background-image: url('~ui/component/membershipSplash/astronaut_n_friends.png');
|
2022-05-18 13:16:35 +02:00
|
|
|
background-size: 100%;
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
box-shadow: 0 0 0 1px rgba(var(--color-primary-dynamic), 0.1) inset;
|
2022-03-07 13:11:28 +01:00
|
|
|
|
|
|
|
video {
|
|
|
|
width: 100% !important;
|
|
|
|
height: 100% !important;
|
2022-05-18 13:16:35 +02:00
|
|
|
border-radius: var(--border-radius) !important;
|
|
|
|
border: 1px solid rgba(var(--color-primary-dynamic), 0.1);
|
2022-03-07 13:11:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: $breakpoint-small) {
|
|
|
|
$width: calc(var(--file-list-thumbnail-width) * 0.8);
|
|
|
|
width: $width;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: $breakpoint-small) and (max-width: $breakpoint-large) {
|
|
|
|
$width: calc(var(--file-list-thumbnail-width) * 1.2);
|
|
|
|
width: $width;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: $breakpoint-large) {
|
|
|
|
$width: calc(var(--file-list-thumbnail-width) * 1.2);
|
|
|
|
width: $width;
|
|
|
|
}
|
|
|
|
|
2022-05-30 09:44:46 +02:00
|
|
|
.avp-p-wrapper {
|
|
|
|
// Only enable this within our container.
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2022-05-31 12:39:14 +02:00
|
|
|
.avp-p-wrapper.av-floating {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-03-07 13:11:28 +01:00
|
|
|
#aniBox,
|
|
|
|
#av-container {
|
2022-03-08 16:20:16 +01:00
|
|
|
border-radius: var(--border-radius);
|
2022-03-07 13:11:28 +01:00
|
|
|
}
|
2022-03-09 10:53:58 +01:00
|
|
|
|
|
|
|
.avp-p-wrapper > div {
|
2022-05-30 10:01:38 +02:00
|
|
|
border-radius: var(--border-radius);
|
2022-05-11 10:26:27 +02:00
|
|
|
}
|
2020-03-26 22:47:07 +01:00
|
|
|
}
|
2022-05-18 13:16:35 +02:00
|
|
|
|
|
|
|
&:hover {
|
2022-05-31 11:14:59 +02:00
|
|
|
.ads__title {
|
|
|
|
color: var(--color-primary);
|
|
|
|
}
|
2022-05-18 13:16:35 +02:00
|
|
|
.ad__container {
|
|
|
|
box-shadow: 0 0 0 1px rgba(var(--color-primary-dynamic), 1) inset;
|
|
|
|
}
|
|
|
|
video {
|
|
|
|
border: 1px solid rgba(var(--color-primary-dynamic), 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.claim-list {
|
|
|
|
.ads__claim-item--tile {
|
|
|
|
background-color: var(--color-ads-background);
|
|
|
|
margin-left: unset;
|
|
|
|
margin-bottom: var(--spacing-xxs);
|
|
|
|
width: 100%;
|
|
|
|
padding: var(--spacing-m);
|
|
|
|
flex: 1;
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.ad__container {
|
|
|
|
width: calc(var(--file-list-thumbnail-width) * 1.2);
|
|
|
|
// margin-left: var(--spacing-s);
|
|
|
|
margin-right: var(--spacing-s);
|
|
|
|
}
|
|
|
|
}
|
2022-03-07 13:11:28 +01:00
|
|
|
}
|
2020-03-26 22:47:07 +01:00
|
|
|
|
2022-03-07 13:11:28 +01:00
|
|
|
.ads__claim-item--tile {
|
|
|
|
@extend .card;
|
|
|
|
@extend .claim-preview--tile;
|
|
|
|
flex-direction: column;
|
2022-03-08 16:20:16 +01:00
|
|
|
|
|
|
|
padding: 0;
|
|
|
|
background-color: unset;
|
|
|
|
border-bottom: unset;
|
2022-03-07 13:11:28 +01:00
|
|
|
|
|
|
|
.ads__claim-text {
|
2022-05-18 13:16:35 +02:00
|
|
|
margin: var(--spacing-xs) 0 0 0;
|
2022-03-07 13:11:28 +01:00
|
|
|
display: flex;
|
2020-03-30 14:57:15 +02:00
|
|
|
flex-direction: column;
|
2022-03-07 13:11:28 +01:00
|
|
|
justify-content: center;
|
2022-05-18 13:16:35 +02:00
|
|
|
|
|
|
|
.ads__title {
|
|
|
|
color: var(--color-text);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ads__subtitle {
|
|
|
|
margin-top: var(--spacing-s);
|
2022-05-31 11:14:59 +02:00
|
|
|
color: rgba(var(--color-text-base), 0.6) !important;
|
2022-05-18 13:16:35 +02:00
|
|
|
font-weight: var(--font-weight-bold);
|
|
|
|
line-height: 1rem;
|
|
|
|
font-size: var(--font-xsmall);
|
|
|
|
|
|
|
|
.icon {
|
2022-05-31 11:14:59 +02:00
|
|
|
color: var(--color-text) !important;
|
2022-05-18 13:16:35 +02:00
|
|
|
width: 2.1rem;
|
|
|
|
height: 2.1rem;
|
|
|
|
float: left;
|
|
|
|
margin-right: var(--spacing-s);
|
|
|
|
}
|
|
|
|
}
|
2022-03-07 13:11:28 +01:00
|
|
|
}
|
|
|
|
|
2022-05-31 17:37:10 +02:00
|
|
|
.ads__claim-text--small {
|
|
|
|
.ads__title {
|
|
|
|
font-size: var(--font-small) !important;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-07 13:11:28 +01:00
|
|
|
.ad__container {
|
2022-03-09 10:53:58 +01:00
|
|
|
width: 100%;
|
2022-03-07 13:11:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ads__claim-text {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-05-18 13:16:35 +02:00
|
|
|
|
|
|
|
#close-btn {
|
|
|
|
left: unset !important;
|
|
|
|
right: 0 !important;
|
|
|
|
border: none !important;
|
|
|
|
border-radius: 0 var(--border-radius) 0 var(--border-radius) !important;
|
|
|
|
background-color: var(--color-primary) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.visible {
|
|
|
|
display: none !important;
|
|
|
|
position: absolute !important;
|
|
|
|
top: 0px !important;
|
|
|
|
z-index: 99 !important;
|
|
|
|
width: 3rem !important;
|
|
|
|
height: 3rem !important;
|
|
|
|
background-color: var(--color-primary) !important;
|
|
|
|
border-radius: 0 var(--border-radius) 0 var(--border-radius) !important;
|
|
|
|
background-size: 60% !important;
|
|
|
|
}
|
2022-03-07 13:11:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ads__claim-item--recommended {
|
2022-05-18 13:16:35 +02:00
|
|
|
// padding: var(--spacing-s);
|
|
|
|
padding: 0;
|
|
|
|
margin-top: var(--spacing-m);
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
border-bottom: unset;
|
|
|
|
|
|
|
|
.ad__container {
|
|
|
|
// width:100%;
|
|
|
|
width: var(--file-list-thumbnail-width);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ads__claim-text {
|
|
|
|
margin: 0;
|
|
|
|
padding-left: var(--spacing-s);
|
|
|
|
|
|
|
|
.ads__title {
|
2022-05-31 11:14:59 +02:00
|
|
|
color: var(--color-text);
|
|
|
|
font-size: var(--font-small);
|
|
|
|
font-weight: var(--font-weight-bold);
|
2022-05-18 13:16:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-03-07 13:11:28 +01:00
|
|
|
|
|
|
|
@media (min-width: $breakpoint-medium) {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2020-03-26 22:47:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ads__claim-text {
|
2022-03-07 13:11:28 +01:00
|
|
|
overflow: hidden;
|
|
|
|
max-width: 50%;
|
|
|
|
margin: var(--spacing-m) 0 var(--spacing-m) var(--spacing-s);
|
2020-03-26 22:47:07 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2022-03-09 10:53:58 +01:00
|
|
|
color: var(--color-text-subtitle);
|
2020-03-26 22:47:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ads__claim-text--small {
|
2022-05-31 11:14:59 +02:00
|
|
|
// font-size: var(--font-small);
|
|
|
|
color: var(--color-text);
|
|
|
|
font-weight: var(--font-weight-bold);
|
|
|
|
font-size: var(--font-body);
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.ads__title {
|
|
|
|
margin-bottom: var(--spacing-s);
|
|
|
|
}
|
2022-03-07 13:11:28 +01:00
|
|
|
|
2022-05-31 11:14:59 +02:00
|
|
|
.ads__subtitle {
|
|
|
|
color: rgba(var(--color-text-base), 0.6) !important;
|
|
|
|
font-size: var(--font-xsmall);
|
|
|
|
.icon {
|
|
|
|
color: var(--color-text) !important;
|
|
|
|
width: 2.1rem;
|
|
|
|
height: 2.1rem;
|
|
|
|
margin-right: var(--spacing-s);
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
display: block;
|
|
|
|
span {
|
|
|
|
display: unset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
span::after {
|
|
|
|
white-space: pre; /* or pre-wrap */
|
|
|
|
}
|
2022-03-07 13:11:28 +01:00
|
|
|
@media (max-width: $breakpoint-small) {
|
|
|
|
font-size: var(--font-xsmall);
|
|
|
|
}
|
2020-03-26 22:47:07 +01:00
|
|
|
}
|
2021-04-12 18:43:47 +02:00
|
|
|
|
|
|
|
// Pre-roll ads
|
|
|
|
.ads__video-nudge,
|
|
|
|
.ads__video-notify {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ads__video-nudge {
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background-color: var(--color-primary);
|
|
|
|
color: var(--color-white);
|
|
|
|
font-weight: bold;
|
|
|
|
padding: var(--spacing-xs);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ads__video-notify {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
background-color: black;
|
|
|
|
border-bottom-left-radius: var(--border-radius);
|
|
|
|
color: var(--color-white);
|
|
|
|
font-size: var(--font-small);
|
|
|
|
padding: var(--spacing-xs);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ads__video-link.button--secondary {
|
|
|
|
font-size: var(--font-small);
|
|
|
|
padding: var(--spacing-xs);
|
|
|
|
height: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ads__video-close {
|
|
|
|
margin-left: var(--spacing-s);
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
stroke: var(--color-white);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
stroke: var(--color-black);
|
|
|
|
background-color: var(--color-white);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-08 03:37:34 +02:00
|
|
|
|
|
|
|
.exp-ui__logo {
|
|
|
|
display: none;
|
|
|
|
}
|
2022-03-18 01:58:06 +01:00
|
|
|
|
|
|
|
// ****************************************************************************
|
|
|
|
// Outbrain
|
|
|
|
// ****************************************************************************
|
|
|
|
|
2022-05-18 13:16:35 +02:00
|
|
|
.OUTBRAIN {
|
|
|
|
border-radius: var(--border-radius) 0 0 0 !important;
|
|
|
|
height: unset !important;
|
|
|
|
|
|
|
|
.ob-widget .ob-unit.ob-rec-text {
|
|
|
|
font-size: 12px !important;
|
|
|
|
}
|
2022-05-31 11:19:21 +02:00
|
|
|
|
|
|
|
background-color: var(--color-ads-background);
|
2022-05-18 13:16:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.closeButton {
|
|
|
|
background-color: var(--color-primary) !important;
|
|
|
|
color: var(--color-primary-contrast) !important;
|
|
|
|
border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
|
|
|
|
top: -27px !important;
|
|
|
|
width: 2rem !important;
|
|
|
|
padding-top: 3px;
|
|
|
|
// padding-bottom:4px !important;
|
|
|
|
height: 27px !important;
|
|
|
|
}
|
|
|
|
|
2022-05-25 16:42:09 +02:00
|
|
|
/*
|
2022-05-18 13:16:35 +02:00
|
|
|
.ob-widget-footer {
|
|
|
|
position: absolute !important;
|
|
|
|
right: 32px;
|
|
|
|
top: -27px;
|
|
|
|
|
|
|
|
background: black;
|
|
|
|
border-radius: var(--border-radius) var(--border-radius) 0 0 !important;
|
|
|
|
padding-left: 4px;
|
|
|
|
padding-right: 6px;
|
|
|
|
padding-top: 3px;
|
|
|
|
padding-bottom: 0px;
|
|
|
|
|
|
|
|
.ob_what_resp {
|
|
|
|
padding: unset !important;
|
|
|
|
}
|
2022-05-18 16:26:10 +02:00
|
|
|
|
|
|
|
@media (max-width: $breakpoint-small) {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2022-05-18 13:16:35 +02:00
|
|
|
}
|
2022-05-25 16:42:09 +02:00
|
|
|
*/
|
2022-05-18 13:16:35 +02:00
|
|
|
|
2022-03-18 01:58:06 +01:00
|
|
|
.ob-widget-items-container {
|
|
|
|
padding-left: var(--spacing-xs);
|
|
|
|
padding-right: var(--spacing-xs);
|
2022-05-18 13:16:35 +02:00
|
|
|
border-radius: var(--border-radius) 0 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ****************************************************************************
|
|
|
|
// Neko Patch
|
|
|
|
// ****************************************************************************
|
|
|
|
|
|
|
|
.ad__container {
|
|
|
|
div {
|
|
|
|
max-width: unset !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#av-container #av-inner #gui::before {
|
|
|
|
background: unset !important;
|
|
|
|
#timeline #timeline-progress {
|
|
|
|
background: var(--color-primary) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#av-container #av-inner #gui #timeline #timeline-progress {
|
|
|
|
background: var(--color-primary) !important;
|
2022-03-18 01:58:06 +01:00
|
|
|
}
|
2022-04-14 16:12:53 +02:00
|
|
|
|
|
|
|
// ****************************************************************************
|
|
|
|
// Banner
|
|
|
|
// ****************************************************************************
|
|
|
|
|
|
|
|
$BANNER_BORDER: 1px;
|
|
|
|
|
|
|
|
.banner-ad {
|
|
|
|
margin-top: var(--spacing-l);
|
|
|
|
background-color: var(--color-ads-background);
|
|
|
|
border: $BANNER_BORDER solid var(--color-border);
|
|
|
|
border-radius: var(--border-radius);
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner-ad__container {
|
2022-05-11 03:47:49 +02:00
|
|
|
min-height: 250px;
|
|
|
|
|
2022-04-14 16:12:53 +02:00
|
|
|
padding: var(--spacing-xxs) var(--spacing-m);
|
|
|
|
@media (max-width: $breakpoint-small) {
|
|
|
|
padding: var(--spacing-xxs) var(--spacing-xxs);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: $breakpoint-small) {
|
|
|
|
margin: auto;
|
|
|
|
width: 100%;
|
2022-05-11 03:47:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: $breakpoint-xlarge) {
|
|
|
|
max-width: calc(#{$breakpoint-xlarge} * 3 / 4);
|
2022-04-14 16:12:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner-ad__driver {
|
2022-05-11 03:47:49 +02:00
|
|
|
display: flex;
|
2022-04-14 16:12:53 +02:00
|
|
|
flex-direction: row;
|
2022-05-11 03:47:49 +02:00
|
|
|
max-width: 50%;
|
2022-04-14 16:12:53 +02:00
|
|
|
|
|
|
|
border-left: $BANNER_BORDER solid var(--color-border);
|
2022-05-11 03:47:49 +02:00
|
|
|
border-bottom: $BANNER_BORDER solid var(--color-border);
|
|
|
|
border-radius: 0 var(--border-radius) 0 var(--border-radius);
|
2022-04-14 16:12:53 +02:00
|
|
|
float: right;
|
|
|
|
|
|
|
|
font-size: var(--font-xsmall);
|
|
|
|
@media (max-width: $breakpoint-small) {
|
|
|
|
font-size: var(--font-xxsmall);
|
|
|
|
}
|
|
|
|
|
|
|
|
> * {
|
|
|
|
padding: 0 var(--spacing-xxxs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner-ad__driver-label {
|
|
|
|
color: var(--color-text-subtitle);
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner-ad__driver-value {
|
|
|
|
color: var(--color-text-subtitle);
|
|
|
|
border-left: $BANNER_BORDER solid var(--color-border);
|
|
|
|
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
@supports (-webkit-line-clamp: 3) {
|
|
|
|
white-space: initial;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: 3;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: $breakpoint-small) {
|
|
|
|
line-height: 1.2;
|
|
|
|
padding: calc(var(--spacing-xxxs) / 2) var(--spacing-xxxs);
|
|
|
|
}
|
|
|
|
}
|