forked from prebid/prebid.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge github.com:prebid/prebid.github.io
* github.com:prebid/prebid.github.io: (987 commits) rubicon: updating preferred data type (prebid#2824) adding algolia section added docs for roundel alias (prebid#2808) IX adapter has priceFloors module support (prebid#2800) OpenX docs update (prebid#2799) Update sovrn docs to show floor module support (prebid#2795) Update rads.md (prebid#2790) addefend bid adapter documentation (prebid#2789) Improved documentation on Registering on Timeout (prebid#2787) update documention of doceree adapter (prebid#2780) Added support for userIds (prebid#2776) multibid docs (prebid#2757) Openx: Add new supported userIds (prebid#2816) Nextroll is now a Prebid.org member (prebid#2815) outbrain is now a prebid member (prebid#2814) GumGum updates zone and pubId descriptions (prebid#2805) assertiveYield.md updated domain/link (prebid#2804) floors.md Providers/Partners added Assertive Yield (prebid#2803) Delete publisher-api-reference-old.md highlighting PBJS cookie setting (prebid#2810) ...
- Loading branch information
Showing
809 changed files
with
47,168 additions
and
9,296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,5 @@ Gemfile.lock | |
/vendor | ||
/.bundle | ||
.jekyll-metadata | ||
*ads.txt.bkp* | ||
.sass-cache |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
prebid.org | ||
docs.prebid.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
$container-max-widths: ( | ||
sm: 540px, | ||
md: 720px, | ||
lg: 960px, | ||
xl: 1200px | ||
); | ||
|
||
$spacer: 1rem; | ||
$spacers: ( | ||
6: ($spacer * 3.75), | ||
7: ($spacer * 4.5), | ||
8: ($spacer * 5), | ||
); | ||
|
||
$grid-gutter-width: 20px; | ||
$body-bg: #eceeef; | ||
|
||
$card-border-radius: 0; | ||
$card-spacer-x: 30px; | ||
|
||
$table-accent-bg: $t-code-bg; | ||
$table-border-color: $t-divider-color; | ||
$table-color: $t-text-color; | ||
|
||
$navbar-padding-y: 0; | ||
$nav-link-padding-y: 0; | ||
$navbar-nav-link-padding-x: 0; | ||
$navbar-nav-link-padding-y: 0; | ||
$navbar-dark-color: adjust-color($t-text-color--reverse, $alpha: -0.3); | ||
|
||
$dropdown-border-radius: 0; | ||
$dropdown-border-width: 0; | ||
$dropdown-link-color: $t-text-color; | ||
$dropdown-link-hover-bg: transparent; | ||
$dropdown-link-hover-color: $t-anchor-color; | ||
$dropdown-spacer: 0; | ||
$dropdown-padding-y: 24px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
// Breakpoint Declarations | ||
// | ||
// Responsive breakpoint declarations | ||
// Breakpoints are matched in Responsive VC Design Options Plugin | ||
// http://actian/wp-admin/admin.php?page=bb_edo_all_devices | ||
// | ||
// Markup: | ||
// 'phone-xs': 320px, | ||
// 'phone-sm': 480px, | ||
// 'phone': 767px, // Page Builder Default | ||
// 'tablet': 960px, // Page Builder Default | ||
// 'desktop-sm': 1200px, | ||
// 'desktop': 1980px, | ||
// | ||
// Styleguide Layout.Breakpoints | ||
|
||
// Site width | ||
$t-site-width-pixels: 1180; | ||
$t-site-width: 1180px; | ||
$t-site-width--padded: 1210px; | ||
|
||
$t-phone-xs: 320px; | ||
$t-phone-sm: 480px; | ||
$t-phone-md: 640px; | ||
$t-phone: 767px; // Page Builder Default | ||
$t-tablet: 992px; // Page Builder Default | ||
$t-ipad-landscape: 1024px; | ||
$t-desktop-aio: 1257px; // Site width + scrollbar (17px) + margins (60px). *** This is where the content starts to shrink. *** | ||
$t-desktop: 1200px; // Page Builder Default | ||
$t-fullscreen: 1903px; // 1920 - 17px scrollbar | ||
|
||
$t-screen-sm-min: $t-phone; | ||
$t-screen-md-min: $t-tablet; | ||
$t-screen-lg-min: $t-desktop; | ||
|
||
$t-screen-xs-max: $t-screen-sm-min - 1; | ||
$t-screen-sm-max: $t-screen-md-min - 1; | ||
$t-screen-md-max: $t-screen-lg-min - 1; | ||
|
||
$breakpoints: ( | ||
'phone-xs': $t-phone-xs, | ||
'phone-sm': $t-phone-sm, | ||
'phone-md': $t-phone-md, | ||
'phone': $t-phone, | ||
'tablet': $t-tablet, | ||
'ipad-landscape': $t-ipad-landscape, | ||
'site-width': $t-site-width, | ||
'desktop': $t-desktop, | ||
'fullscreen': $t-fullscreen, | ||
) !default; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
// Colors | ||
// | ||
// These are named colors that are a part of the color palette or tint stack | ||
// for the design. Colors should be named by how they look, not by where they | ||
// are used. | ||
// | ||
// Markup: color-swatches.hbs | ||
// | ||
// Weight: -100 | ||
// | ||
// Styleguide Colors | ||
|
||
$color--black: #000; | ||
$color--white: #fff; | ||
$color--carbon: #333; | ||
$color--blue: #1BA9E1; | ||
$color--grey: #797F90; | ||
$color--orange: #FF6F00; | ||
$color--dark-grey: #505050; | ||
$color--dove-cry-gray: #707070; | ||
$color--aqua: #ECF3F5; | ||
$color--light-iron: #dddfe3; | ||
$color--cornflower-blue: #28AEE2; | ||
|
||
$sg-colors: ( | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
@function convert-angle($value, $unit) { | ||
$convertable-units: deg grad turn rad; | ||
$conversion-factors: 1 (10grad/9deg) (1turn/360deg) (3.1415926rad/180deg); | ||
@if index($convertable-units, unit($value)) and index($convertable-units, $unit) { | ||
@return $value | ||
/ nth($conversion-factors, index($convertable-units, unit($value))) | ||
* nth($conversion-factors, index($convertable-units, $unit)); | ||
} | ||
|
||
@warn "Cannot convert `#{unit($value)}` to `#{$unit}`."; | ||
} | ||
|
||
/// Test if `$value` is an angle | ||
/// @param {*} $value - Value to test | ||
/// @return {Bool} | ||
@function is-direction($value) { | ||
$is-direction: index((to top, to top right, to right top, to right, to bottom right, to right bottom, to bottom, to bottom left, to left bottom, to left, to left top, to top left), $value); | ||
$is-angle: type-of($value) == 'number' and index('deg' 'grad' 'turn' 'rad', unit($value)); | ||
|
||
@return $is-direction or $is-angle; | ||
} | ||
|
||
/// Convert a direction to legacy syntax | ||
/// @param {Keyword | Angle} $value - Value to convert | ||
/// @require {function} is-direction | ||
/// @require {function} convert-angle | ||
@function legacy-direction($value) { | ||
@if is-direction($value) == false { | ||
@warn "Cannot convert `#{$value}` to legacy syntax because it doesn't seem to be an angle or a direction"; | ||
} | ||
|
||
$conversion-map: ( | ||
to top : bottom, | ||
to top right : bottom left, | ||
to right top : left bottom, | ||
to right : left, | ||
to bottom right : top left, | ||
to right bottom : left top, | ||
to bottom : top, | ||
to bottom left : top right, | ||
to left bottom : right top, | ||
to left : right, | ||
to left top : right bottom, | ||
to top left : bottom right | ||
); | ||
|
||
@if map-has-key($conversion-map, $value) { | ||
@return map-get($conversion-map, $value); | ||
} | ||
|
||
@return 90deg - convert-angle($value, 'deg'); | ||
} |
Oops, something went wrong.