mirror of
https://github.com/mastodon/documentation
synced 2025-04-11 22:56:17 +02:00

* Improve deprecation messaging for Application#vapid_key * Format JSON examples in Instance methods * Remove vapid_key from Apps API examples, since this property is deprecated on Application entity * Add documentation for new OAuth 2.0 features added in 4.3.0 * Improve documentation for oauth-scopes * Update content/en/api/oauth-scopes.md Co-authored-by: Matt Jankowski <matt@jankowski.online> * Update content/en/api/oauth-scopes.md Co-authored-by: Matt Jankowski <matt@jankowski.online> * Update content/en/api/oauth-scopes.md Co-authored-by: Matt Jankowski <matt@jankowski.online> * Update content/en/api/oauth-scopes.md Co-authored-by: Matt Jankowski <matt@jankowski.online> * Add deprecated and removed shortcode labels * Use deprecated and removed shortcodes * Improve OAuth documentation * More OAuth documentation improvements * Correct streaming API documentation after 4.2.0 changes * Add note about improved Push Subscription API validation in 4.3.0 * Fix inconsistent OAuth label formatting * Add note that there is a relationship between Accounts and the Application used to create them * Add note that application registration endpoint also supports JSON bodies * Be consistent in the formatting of placeholder values for Bearer tokens * code review changes * Slight changes in wording * Add documentation for PKCE * Removal of crypto oauth scope * Cross-link authorization's scope with the OAuth Scopes documentation * Update content/en/methods/oauth.md * Update content/en/api/oauth-scopes.md --------- Co-authored-by: Matt Jankowski <matt@jankowski.online> Co-authored-by: David Roetzel <david@roetzel.de>
1038 lines
16 KiB
SCSS
1038 lines
16 KiB
SCSS
@import 'roboto-mono.scss';
|
|
@import 'manrope.scss';
|
|
|
|
// Values from the Mastodon UI
|
|
$black: #000000; // Black
|
|
$white: #ffffff; // White
|
|
$red-600: #b7253d !default; // Deep Carmine
|
|
$red-500: #df405a !default; // Cerise
|
|
$blurple-600: #563acc; // Iris
|
|
$blurple-500: #6364ff; // Brand purple
|
|
$blurple-400: #7477fd; // Medium slate blue
|
|
$blurple-300: #858afa; // Faded Blue
|
|
$grey-600: hsl(240deg, 8%, 33%); // Trout
|
|
$grey-100: hsl(240deg, 51%, 90%); // Topaz
|
|
|
|
$success-green: #79bd9a !default; // Padua
|
|
$error-red: $red-500 !default; // Cerise
|
|
$warning-red: #ff5050 !default; // Sunset Orange
|
|
$gold-star: #ca8f04 !default; // Dark Goldenrod
|
|
|
|
$classic-base-color: hsl(240deg, 16%, 19%);
|
|
$classic-primary-color: hsl(240deg, 29%, 70%);
|
|
$classic-secondary-color: hsl(255deg, 25%, 88%);
|
|
$classic-highlight-color: $blurple-500;
|
|
|
|
// Custom values
|
|
|
|
$lightest: $white; // color2
|
|
$lighter: $classic-secondary-color; // color3
|
|
$darkest: darken($classic-base-color, 8%); // color1
|
|
$darker: $classic-primary-color;
|
|
|
|
$vibrant: lighten($blurple-500, 8%); // color4
|
|
$error: $warning-red; // color6
|
|
$warning: $gold-star;
|
|
$success: $success-green; // color7
|
|
|
|
$background-border-color: lighten($classic-base-color, 4%);
|
|
$highlight-border-color: $vibrant;
|
|
$warning-border-color: $gold-star;
|
|
$alert-border-color: $warning-red;
|
|
$success-border-color: $success-green;
|
|
|
|
$transition-in: 100ms linear;
|
|
$transition-out: 250ms linear;
|
|
|
|
$content-width: 1080px;
|
|
$mobile-width: 600px;
|
|
|
|
/* http://meyerweb.com/eric/tools/css/reset/
|
|
v2.0 | 20110126
|
|
License: none (public domain)
|
|
*/
|
|
|
|
html,
|
|
body,
|
|
div,
|
|
span,
|
|
applet,
|
|
object,
|
|
iframe,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
p,
|
|
blockquote,
|
|
pre,
|
|
a,
|
|
abbr,
|
|
acronym,
|
|
address,
|
|
big,
|
|
cite,
|
|
code,
|
|
del,
|
|
dfn,
|
|
em,
|
|
img,
|
|
ins,
|
|
kbd,
|
|
q,
|
|
s,
|
|
samp,
|
|
small,
|
|
strike,
|
|
strong,
|
|
sub,
|
|
sup,
|
|
tt,
|
|
var,
|
|
b,
|
|
u,
|
|
i,
|
|
center,
|
|
dl,
|
|
dt,
|
|
dd,
|
|
ol,
|
|
ul,
|
|
li,
|
|
fieldset,
|
|
form,
|
|
label,
|
|
legend,
|
|
table,
|
|
caption,
|
|
tbody,
|
|
tfoot,
|
|
thead,
|
|
tr,
|
|
th,
|
|
td,
|
|
article,
|
|
aside,
|
|
canvas,
|
|
details,
|
|
embed,
|
|
figure,
|
|
figcaption,
|
|
footer,
|
|
header,
|
|
hgroup,
|
|
menu,
|
|
nav,
|
|
output,
|
|
ruby,
|
|
section,
|
|
summary,
|
|
time,
|
|
mark,
|
|
audio,
|
|
video {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: 0;
|
|
font: inherit;
|
|
vertical-align: baseline;
|
|
}
|
|
|
|
/* HTML5 display-role reset for older browsers */
|
|
article,
|
|
aside,
|
|
details,
|
|
figcaption,
|
|
figure,
|
|
footer,
|
|
header,
|
|
hgroup,
|
|
menu,
|
|
nav,
|
|
section {
|
|
display: block;
|
|
}
|
|
|
|
body {
|
|
line-height: 1;
|
|
box-sizing: border-box;
|
|
text-rendering: optimizelegibility;
|
|
font-feature-settings: "kern";
|
|
-webkit-text-size-adjust: none;
|
|
text-size-adjust: none;
|
|
}
|
|
|
|
ol,
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
|
|
blockquote,
|
|
q {
|
|
quotes: none;
|
|
}
|
|
|
|
blockquote:before,
|
|
blockquote:after,
|
|
q:before,
|
|
q:after {
|
|
content: '';
|
|
content: none;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
a {
|
|
outline: 0;
|
|
}
|
|
|
|
body {
|
|
box-sizing: border-box;
|
|
font-family: 'Manrope', sans-serif;
|
|
text-rendering: optimizeLegibility;
|
|
background-color: $darkest;
|
|
color: $lighter;
|
|
font-size: 13px;
|
|
line-height: 18px;
|
|
font-weight: 400;
|
|
padding-top: 30px;
|
|
}
|
|
|
|
.container {
|
|
box-sizing: border-box;
|
|
max-width: $content-width;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.sidebar-layout {
|
|
display: grid;
|
|
grid-gap: 15px;
|
|
grid-template-columns: 260px minmax(300px, ($content-width - 260px));
|
|
grid-template-rows: auto;
|
|
margin-bottom: 30px;
|
|
|
|
@media screen and (max-width: $mobile-width) {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.sidebar {
|
|
@media screen and (max-width: $mobile-width) {
|
|
margin-bottom: 60px;
|
|
|
|
// css menu toggle for mobile.
|
|
// when the checkbox is checked, the menu shows,
|
|
// othewise it's hidden.
|
|
// it's important for it all to be scoped inside this media query,
|
|
// that way on larger screens the menu will always show even if the checkbox is unchecked.
|
|
input[type="checkbox"] {
|
|
display: none;
|
|
}
|
|
label {
|
|
font-size: 1.2rem;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin-bottom: 2rem;
|
|
}
|
|
label i {
|
|
margin-right: .25rem;
|
|
}
|
|
input[type="checkbox"]:not(:checked) + label > .menu-open {
|
|
display: none;
|
|
}
|
|
|
|
input[type="checkbox"]:checked + label > .menu-close {
|
|
display: none;
|
|
}
|
|
|
|
& > ul {
|
|
display: none;
|
|
}
|
|
|
|
#mobile-nav-toggle:checked ~ ul {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
// on viewport sizes larger than mobile, always hide the mobile nav toggle.
|
|
@media screen and (min-width: $mobile-width) {
|
|
.mobile-nav-toggle,
|
|
.mobile-nav-toggle + label {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
|
|
.brand {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
color: $darkest;
|
|
margin-top: 12px;
|
|
margin-bottom: 52px;
|
|
|
|
img {
|
|
height: 38px;
|
|
}
|
|
|
|
@media screen and (max-width: $mobile-width) {
|
|
justify-content: center;
|
|
|
|
img {
|
|
position: static;
|
|
}
|
|
}
|
|
}
|
|
|
|
&>ul>li {
|
|
margin-bottom: 26px;
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.sub-title {
|
|
display: block;
|
|
padding: 10px;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
color: $darker;
|
|
}
|
|
|
|
&>ul a {
|
|
display: block;
|
|
color: $lighter;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
padding: 10px;
|
|
|
|
&:hover {
|
|
color: $lightest;
|
|
}
|
|
}
|
|
|
|
.sub-menu {
|
|
a.active {
|
|
color: $vibrant;
|
|
}
|
|
|
|
&.collapsed {
|
|
display: none;
|
|
}
|
|
|
|
.sub-menu {
|
|
padding-left: 15px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
padding-bottom: 30px;
|
|
|
|
.legal {
|
|
margin-top: 30px;
|
|
|
|
&--right {
|
|
float: right;
|
|
text-align: right;
|
|
|
|
@media screen and (max-width: $mobile-width) {
|
|
float: none;
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: $darker;
|
|
text-decoration: none;
|
|
}
|
|
|
|
svg {
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
}
|
|
|
|
main {
|
|
h1 {
|
|
font-size: 36px;
|
|
line-height: 1.48;
|
|
font-weight: 600;
|
|
color: $lighter;
|
|
padding-bottom: 35px;
|
|
border-bottom: 1px solid $background-border-color;
|
|
margin-bottom: 35px;
|
|
margin-left: -2.63px;
|
|
text-align: left;
|
|
position: relative;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 26px;
|
|
margin-left: -1.63px;
|
|
line-height: 1.22;
|
|
text-align: left;
|
|
margin-top: 50px;
|
|
margin-bottom: 30px;
|
|
font-weight: 600;
|
|
color: $lighter;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 21px;
|
|
line-height: 1.22;
|
|
font-weight: 500;
|
|
color: $lighter;
|
|
margin-top: 25px;
|
|
margin-bottom: 30px;
|
|
margin-left: -1.75px;
|
|
text-align: left;
|
|
}
|
|
|
|
h4 {
|
|
font-size: 18px;
|
|
line-height: 1.22;
|
|
font-weight: 500;
|
|
color: $lighter;
|
|
margin-top: 25px;
|
|
margin-bottom: 30px;
|
|
margin-left: -1.75px;
|
|
text-align: left;
|
|
}
|
|
|
|
h5 {
|
|
font-size: 18px;
|
|
line-height: 1.22;
|
|
font-weight: 500;
|
|
color: $lighter;
|
|
margin-top: 25px;
|
|
margin-bottom: 30px;
|
|
margin-left: -1.75px;
|
|
text-align: left;
|
|
}
|
|
|
|
h6 {
|
|
font-weight: 700;
|
|
margin-top: 25px;
|
|
margin-left: -1.75px;
|
|
text-align: left;
|
|
color: $lighter;
|
|
font-size: 16px;
|
|
line-height: 28px;
|
|
margin-bottom: 26px;
|
|
}
|
|
|
|
blockquote {
|
|
color: $lightest;
|
|
font-size: 16px;
|
|
line-height: 28px;
|
|
font-style: italic;
|
|
border-left: 3px solid $vibrant;
|
|
padding-left: 20px;
|
|
margin-left: -23px;
|
|
padding-bottom: 2px;
|
|
margin-bottom: 26px;
|
|
|
|
p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
p {
|
|
color: $lightest;
|
|
font-size: 16px;
|
|
line-height: 28px;
|
|
font-weight: normal;
|
|
margin-bottom: 26px;
|
|
-webkit-hyphens: auto;
|
|
hyphens: auto;
|
|
}
|
|
|
|
a {
|
|
color: $darker;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
margin: 0 auto;
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.image-large {
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.image-pull-left {
|
|
float: left;
|
|
}
|
|
|
|
em {
|
|
font-style: italic;
|
|
}
|
|
|
|
strong {
|
|
font-weight: 600;
|
|
color: #fff;
|
|
}
|
|
|
|
ul,
|
|
ol {
|
|
counter-reset: post;
|
|
margin-bottom: 26px;
|
|
}
|
|
|
|
ul li,
|
|
ol li {
|
|
margin-left: 30px;
|
|
margin-bottom: 14px;
|
|
color: $lightest;
|
|
font-size: 16px;
|
|
line-height: 28px;
|
|
|
|
&::before {
|
|
position: absolute;
|
|
display: inline-block;
|
|
-webkit-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
width: 78px;
|
|
margin-left: -78px;
|
|
text-align: right;
|
|
padding-right: 15px;
|
|
content: '\2022';
|
|
}
|
|
}
|
|
|
|
ol>li {
|
|
&::before {
|
|
padding-top: 0;
|
|
content: counter(post) ". ";
|
|
counter-increment: post;
|
|
}
|
|
}
|
|
|
|
li>ul,
|
|
li>ol {
|
|
margin-top: 14px;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
margin-bottom: 26px;
|
|
color: $lightest;
|
|
border-collapse: separate;
|
|
border-spacing: 0;
|
|
border: 1px solid $background-border-color;
|
|
border-radius: 4px;
|
|
|
|
th,
|
|
td {
|
|
font-size: 16px;
|
|
line-height: 28px;
|
|
padding: 10px 15px;
|
|
vertical-align: middle;
|
|
border-bottom: 1px solid $background-border-color;
|
|
|
|
.fa-check {
|
|
color: $success;
|
|
}
|
|
|
|
.fa-times {
|
|
color: $error;
|
|
}
|
|
}
|
|
|
|
thead th {
|
|
font-weight: 500;
|
|
}
|
|
|
|
tr:first-child th {
|
|
font-weight: bold;
|
|
}
|
|
|
|
tr:last-child td {
|
|
border-bottom: 0;
|
|
}
|
|
}
|
|
|
|
figure {
|
|
figcaption {
|
|
margin-top: 8px;
|
|
text-align: center;
|
|
|
|
&,
|
|
p {
|
|
color: $darker;
|
|
}
|
|
}
|
|
}
|
|
|
|
hr {
|
|
background: transparent;
|
|
border: 0;
|
|
border-top: 1px solid $background-border-color;
|
|
margin: 26px 0;
|
|
}
|
|
|
|
pre {
|
|
margin-bottom: 26px;
|
|
font-size: 16px;
|
|
line-height: 28px;
|
|
background-color: lighten($darkest, 4%);
|
|
border-radius: 4px;
|
|
padding: 16px;
|
|
overflow: auto;
|
|
}
|
|
|
|
figure pre {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
code {
|
|
padding: 0.2em 0.4em;
|
|
margin: 0;
|
|
font-size: 85%;
|
|
font-family: 'Roboto Mono', monospace;
|
|
background-color: lighten($darkest, 4%);
|
|
border-radius: 4px;
|
|
-webkit-hyphens: none;
|
|
hyphens: none;
|
|
white-space: pre;
|
|
}
|
|
|
|
pre code {
|
|
background: transparent;
|
|
padding: 0;
|
|
}
|
|
|
|
dl {
|
|
color: $lightest;
|
|
font-size: 16px;
|
|
line-height: 28px;
|
|
font-weight: normal;
|
|
margin-bottom: 26px;
|
|
-webkit-hyphens: auto;
|
|
hyphens: auto;
|
|
|
|
dt {
|
|
font-weight: 700;
|
|
background: lighten($darkest, 8%);
|
|
padding: 2px 16px;
|
|
max-width: max-content;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
dd {
|
|
margin-left: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
}
|
|
|
|
.mastodon-embed,
|
|
iframe {
|
|
width: 100%;
|
|
display: block;
|
|
margin: 0 auto;
|
|
margin-bottom: 26px;
|
|
border-radius: 4px;
|
|
box-shadow: 4px 6px 18px rgba(0, 0, 0, 0.35);
|
|
}
|
|
}
|
|
|
|
.mascot {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
margin-bottom: 60px;
|
|
|
|
@media screen and (max-width: $mobile-width) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
#TableOfContents {
|
|
color: $darker;
|
|
|
|
ul li {
|
|
color: inherit;
|
|
}
|
|
|
|
&>ul>li {
|
|
margin-left: 0;
|
|
|
|
&::before {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: $darker;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
padding-bottom: 35px - 14px;
|
|
border-bottom: 1px solid $background-border-color;
|
|
margin-bottom: 35px;
|
|
}
|
|
|
|
.cta-banner {
|
|
background: $vibrant;
|
|
border-radius: 4px;
|
|
text-align: center;
|
|
padding: 40px;
|
|
|
|
h4 {
|
|
font-size: 24px;
|
|
line-height: 1.08;
|
|
font-weight: 600;
|
|
margin-bottom: 20px;
|
|
color: #fff;
|
|
}
|
|
|
|
p {
|
|
color: #fff;
|
|
font-size: 18px;
|
|
line-height: 1.22;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
&>a {
|
|
font-weight: 500;
|
|
color: $vibrant;
|
|
background: #fff;
|
|
border-radius: 4px;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
font-family: inherit;
|
|
display: inline-block;
|
|
text-align: center;
|
|
font-size: 16px;
|
|
text-decoration: none;
|
|
line-height: 36px;
|
|
padding: 4px 16px;
|
|
margin: 0 auto;
|
|
border: 0;
|
|
cursor: pointer;
|
|
|
|
&.secondary {
|
|
padding: 2px 14px;
|
|
border: 2px solid $white;
|
|
background: transparent;
|
|
margin-left: 4px;
|
|
color: $white;
|
|
}
|
|
|
|
@media screen and (max-width: 375px) {
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.hint {
|
|
margin: 26px 0;
|
|
padding: 16px 16px 16px 66px;
|
|
position: relative;
|
|
border-radius: 4px;
|
|
border: 1px solid $background-border-color;
|
|
color: $white;
|
|
font-size: 16px;
|
|
line-height: 28px;
|
|
|
|
&-info {
|
|
border-color: $highlight-border-color;
|
|
|
|
.hint-icon {
|
|
color: $highlight-border-color;
|
|
}
|
|
}
|
|
|
|
&-warning {
|
|
border-color: $warning-border-color;
|
|
|
|
.hint-icon {
|
|
color: $warning-border-color;
|
|
}
|
|
}
|
|
|
|
&-success {
|
|
border-color: $success-border-color;
|
|
|
|
.hint-icon {
|
|
color: $success-border-color;
|
|
}
|
|
}
|
|
|
|
&-danger {
|
|
border-color: $alert-border-color;
|
|
|
|
.hint-icon {
|
|
color: $alert-border-color;
|
|
}
|
|
}
|
|
|
|
&-icon {
|
|
position: absolute;
|
|
top: 14px;
|
|
left: 18px;
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
|
|
.page-ref {
|
|
display: block;
|
|
background: lighten($darkest, 4%);
|
|
color: $vibrant;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
font-size: 18px;
|
|
position: relative;
|
|
margin: 26px 0;
|
|
padding: 24px 24px 24px 50px;
|
|
border-radius: 4px;
|
|
|
|
&-icon {
|
|
position: absolute;
|
|
top: 16px;
|
|
left: 16px;
|
|
font-size: 24px;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
background: lighten($darkest, 8%);
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.api-method {
|
|
display: flex;
|
|
align-items: center;
|
|
font-weight: 500;
|
|
font-size: 18px;
|
|
|
|
&-method {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
padding: 2px 0;
|
|
border-radius: 9999px;
|
|
height: 21px;
|
|
color: $white;
|
|
background: $vibrant;
|
|
margin: 0;
|
|
margin-right: 8px;
|
|
|
|
span {
|
|
display: inline-block;
|
|
padding: 0 8px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1px;
|
|
line-height: 15px;
|
|
}
|
|
}
|
|
|
|
&-url {
|
|
background: lighten($darkest, 4%);
|
|
border-radius: 4px;
|
|
padding: 8px;
|
|
font-size: 16px;
|
|
margin: 26px 0;
|
|
line-height: 1.7;
|
|
}
|
|
|
|
&-host {
|
|
color: $darker;
|
|
}
|
|
|
|
&-path {
|
|
font-weight: 700;
|
|
color: $white;
|
|
}
|
|
}
|
|
|
|
.api-method-parameters-list {
|
|
border: 1px solid $background-border-color;
|
|
border-radius: 4px;
|
|
margin-bottom: 26px;
|
|
}
|
|
|
|
.api-method-parameters-type {
|
|
font-weight: 400;
|
|
color: $darker;
|
|
}
|
|
|
|
.api-method-parameters-type,
|
|
.api-method-response-example h5 {
|
|
font-size: 16px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.api-method-parameter {
|
|
display: flex;
|
|
border-bottom: 1px solid $background-border-color;
|
|
|
|
&:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
&-cell {
|
|
box-sizing: border-box;
|
|
padding: 16px 10px;
|
|
color: $white;
|
|
}
|
|
|
|
&-required {
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: $error;
|
|
}
|
|
|
|
&-removed {
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: $error;
|
|
}
|
|
|
|
&-deprecated {
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: $warning;
|
|
}
|
|
|
|
&-optional {
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
color: $darker;
|
|
}
|
|
|
|
&-name {
|
|
width: 180px;
|
|
font-size: 16px;
|
|
|
|
&>div:first-child {
|
|
margin-bottom: 2px;
|
|
}
|
|
}
|
|
|
|
&-type {
|
|
width: 100px;
|
|
}
|
|
|
|
&-description {
|
|
flex: 1 1 0%;
|
|
font-size: 15px;
|
|
}
|
|
}
|
|
|
|
.api-method-response-example {
|
|
&-indicator {
|
|
display: inline-block;
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
background: $success;
|
|
|
|
&-error {
|
|
background: $error;
|
|
}
|
|
}
|
|
}
|
|
|
|
.sponsorship {
|
|
border-radius: 4px;
|
|
border: 1px solid $background-border-color;
|
|
padding: 40px 0;
|
|
|
|
h2 {
|
|
line-height: 21px;
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
color: $darker;
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.logo-grid {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: row;
|
|
|
|
&>div {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: row;
|
|
}
|
|
|
|
a {
|
|
display: inline-block;
|
|
text-decoration: none;
|
|
padding: 0 10px;
|
|
|
|
img {
|
|
display: block;
|
|
margin: 0;
|
|
height: 28px;
|
|
width: auto;
|
|
opacity: 0.8;
|
|
transition: all $transition-in;
|
|
filter: grayscale(100%);
|
|
}
|
|
|
|
&:hover {
|
|
img {
|
|
opacity: 0.9;
|
|
transition: all $transition-out;
|
|
filter: grayscale(0%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
h2 {
|
|
color: $lightest;
|
|
}
|
|
|
|
.logo-grid>div {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.logo-grid a {
|
|
padding: 20px;
|
|
}
|
|
}
|
|
|
|
.heading {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
&__anchor-link {
|
|
display: inline-flex;
|
|
align-content: center;
|
|
margin-left: 0.25em;
|
|
}
|
|
}
|