lbry-desktop/ui/scss/component/_ads.scss

57 lines
1,021 B
SCSS
Raw Normal View History

2020-01-24 13:31:49 -05:00
.ads-wrapper {
@extend .navigation;
background-color: var(--color-ads-background);
padding-top: 0.5rem;
padding-right: 0.5rem;
2020-01-24 13:31:49 -05:00
p {
margin-left: 0.4rem; // The ads provider adds weird padding to their wrapper
font-size: var(--font-xsmall);
color: var(--color-ads-text);
}
.button--link {
color: var(--color-ads-link);
2020-01-24 13:31:49 -05:00
}
}
2020-03-26 17:47:07 -04:00
// Inline Video Ads
.ads__claim-item {
border-bottom: 1px solid var(--color-border);
2020-06-01 13:03:19 -04:00
padding: var(--spacing-m);
2020-03-26 17:47:07 -04:00
background-color: var(--color-ads-background);
display: flex;
> div {
2020-03-30 08:57:15 -04:00
width: 40%;
2020-03-26 17:47:07 -04:00
position: relative !important;
}
.avp-p-gui {
z-index: 1 !important;
}
2020-03-30 08:57:15 -04:00
@media (max-width: $breakpoint-small) {
flex-direction: column;
> div {
width: 100%;
}
2020-03-26 17:47:07 -04:00
}
}
.ads__claim-text {
display: flex;
flex-direction: column;
justify-content: center;
2020-06-01 13:03:19 -04:00
padding-left: var(--spacing-l);
2020-03-30 08:57:15 -04:00
@media (max-width: $breakpoint-small) {
padding-left: 0;
}
2020-03-26 17:47:07 -04:00
}
.ads__claim-text--small {
font-size: var(--font-small);
}