Created
July 20, 2020 11:46
-
-
Save jeffreycwitt/dfcd6653512daed1c520fe10a654ae49 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
@charset "UTF-8"; | |
/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */ | |
/** | |
* 1. Set default font family to sans-serif. | |
* 2. Prevent iOS text size adjust after orientation change, without disabling | |
* user zoom. | |
*/ | |
html { | |
font-family: sans-serif; | |
/* 1 */ | |
-ms-text-size-adjust: 100%; | |
/* 2 */ | |
-webkit-text-size-adjust: 100%; | |
/* 2 */ } | |
/** | |
* Remove default margin. | |
*/ | |
body { | |
margin: 0; } | |
/* HTML5 display definitions | |
========================================================================== */ | |
/** | |
* Correct `block` display not defined for any HTML5 element in IE 8/9. | |
* Correct `block` display not defined for `details` or `summary` in IE 10/11 | |
* and Firefox. | |
* Correct `block` display not defined for `main` in IE 11. | |
*/ | |
article, | |
aside, | |
details, | |
figcaption, | |
figure, | |
footer, | |
header, | |
hgroup, | |
main, | |
menu, | |
nav, | |
section, | |
summary { | |
display: block; } | |
/** | |
* 1. Correct `inline-block` display not defined in IE 8/9. | |
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. | |
*/ | |
audio, | |
canvas, | |
progress, | |
video { | |
display: inline-block; | |
/* 1 */ | |
vertical-align: baseline; | |
/* 2 */ } | |
/** | |
* Prevent modern browsers from displaying `audio` without controls. | |
* Remove excess height in iOS 5 devices. | |
*/ | |
audio:not([controls]) { | |
display: none; | |
height: 0; } | |
/** | |
* Address `[hidden]` styling not present in IE 8/9/10. | |
* Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. | |
*/ | |
[hidden], | |
template { | |
display: none; } | |
/* Links | |
========================================================================== */ | |
/** | |
* Remove the gray background color from active links in IE 10. | |
*/ | |
a { | |
background-color: transparent; } | |
/** | |
* Improve readability when focused and also mouse hovered in all browsers. | |
*/ | |
a:active, | |
a:hover { | |
outline: 0; } | |
/* Text-level semantics | |
========================================================================== */ | |
/** | |
* Address styling not present in IE 8/9/10/11, Safari, and Chrome. | |
*/ | |
abbr[title] { | |
border-bottom: 1px dotted; } | |
/** | |
* Address style set to `bolder` in Firefox 4+, Safari, and Chrome. | |
*/ | |
b, | |
strong { | |
font-weight: bold; } | |
/** | |
* Address styling not present in Safari and Chrome. | |
*/ | |
dfn { | |
font-style: italic; } | |
/** | |
* Address variable `h1` font-size and margin within `section` and `article` | |
* contexts in Firefox 4+, Safari, and Chrome. | |
*/ | |
h1 { | |
font-size: 2em; | |
margin: 0.67em 0; } | |
/** | |
* Address styling not present in IE 8/9. | |
*/ | |
mark { | |
background: #ff0; | |
color: #000; } | |
/** | |
* Address inconsistent and variable font size in all browsers. | |
*/ | |
small { | |
font-size: 80%; } | |
/** | |
* Prevent `sub` and `sup` affecting `line-height` in all browsers. | |
*/ | |
sub, | |
sup { | |
font-size: 75%; | |
line-height: 0; | |
position: relative; | |
vertical-align: baseline; } | |
sup { | |
top: -0.5em; } | |
sub { | |
bottom: -0.25em; } | |
/* Embedded content | |
========================================================================== */ | |
/** | |
* Remove border when inside `a` element in IE 8/9/10. | |
*/ | |
img { | |
border: 0; } | |
/** | |
* Correct overflow not hidden in IE 9/10/11. | |
*/ | |
svg:not(:root) { | |
overflow: hidden; } | |
/* Grouping content | |
========================================================================== */ | |
/** | |
* Address margin not present in IE 8/9 and Safari. | |
*/ | |
figure { | |
margin: 1em 40px; } | |
/** | |
* Address differences between Firefox and other browsers. | |
*/ | |
hr { | |
-moz-box-sizing: content-box; | |
box-sizing: content-box; | |
height: 0; } | |
/** | |
* Contain overflow in all browsers. | |
*/ | |
pre { | |
overflow: auto; } | |
/** | |
* Address odd `em`-unit font size rendering in all browsers. | |
*/ | |
code, | |
kbd, | |
pre, | |
samp { | |
font-family: monospace, monospace; | |
font-size: 1em; } | |
/* Forms | |
========================================================================== */ | |
/** | |
* Known limitation: by default, Chrome and Safari on OS X allow very limited | |
* styling of `select`, unless a `border` property is set. | |
*/ | |
/** | |
* 1. Correct color not being inherited. | |
* Known issue: affects color of disabled elements. | |
* 2. Correct font properties not being inherited. | |
* 3. Address margins set differently in Firefox 4+, Safari, and Chrome. | |
*/ | |
button, | |
input, | |
optgroup, | |
select, | |
textarea { | |
color: inherit; | |
/* 1 */ | |
font: inherit; | |
/* 2 */ | |
margin: 0; | |
/* 3 */ } | |
/** | |
* Address `overflow` set to `hidden` in IE 8/9/10/11. | |
*/ | |
button { | |
overflow: visible; } | |
/** | |
* Address inconsistent `text-transform` inheritance for `button` and `select`. | |
* All other form control elements do not inherit `text-transform` values. | |
* Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. | |
* Correct `select` style inheritance in Firefox. | |
*/ | |
button, | |
select { | |
text-transform: none; } | |
/** | |
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` | |
* and `video` controls. | |
* 2. Correct inability to style clickable `input` types in iOS. | |
* 3. Improve usability and consistency of cursor style between image-type | |
* `input` and others. | |
*/ | |
button, | |
html input[type="button"], | |
input[type="reset"], | |
input[type="submit"] { | |
-webkit-appearance: button; | |
/* 2 */ | |
cursor: pointer; | |
/* 3 */ } | |
/** | |
* Re-set default cursor for disabled elements. | |
*/ | |
button[disabled], | |
html input[disabled] { | |
cursor: default; } | |
/** | |
* Remove inner padding and border in Firefox 4+. | |
*/ | |
button::-moz-focus-inner, | |
input::-moz-focus-inner { | |
border: 0; | |
padding: 0; } | |
/** | |
* Address Firefox 4+ setting `line-height` on `input` using `!important` in | |
* the UA stylesheet. | |
*/ | |
input { | |
line-height: normal; } | |
/** | |
* It's recommended that you don't attempt to style these elements. | |
* Firefox's implementation doesn't respect box-sizing, padding, or width. | |
* | |
* 1. Address box sizing set to `content-box` in IE 8/9/10. | |
* 2. Remove excess padding in IE 8/9/10. | |
*/ | |
input[type="checkbox"], | |
input[type="radio"] { | |
box-sizing: border-box; | |
/* 1 */ | |
padding: 0; | |
/* 2 */ } | |
/** | |
* Fix the cursor style for Chrome's increment/decrement buttons. For certain | |
* `font-size` values of the `input`, it causes the cursor style of the | |
* decrement button to change from `default` to `text`. | |
*/ | |
input[type="number"]::-webkit-inner-spin-button, | |
input[type="number"]::-webkit-outer-spin-button { | |
height: auto; } | |
/** | |
* 1. Address `appearance` set to `searchfield` in Safari and Chrome. | |
* 2. Address `box-sizing` set to `border-box` in Safari and Chrome | |
* (include `-moz` to future-proof). | |
*/ | |
input[type="search"] { | |
-webkit-appearance: textfield; | |
/* 1 */ | |
-moz-box-sizing: content-box; | |
-webkit-box-sizing: content-box; | |
/* 2 */ | |
box-sizing: content-box; } | |
/** | |
* Remove inner padding and search cancel button in Safari and Chrome on OS X. | |
* Safari (but not Chrome) clips the cancel button when the search input has | |
* padding (and `textfield` appearance). | |
*/ | |
input[type="search"]::-webkit-search-cancel-button, | |
input[type="search"]::-webkit-search-decoration { | |
-webkit-appearance: none; } | |
/** | |
* Define consistent border, margin, and padding. | |
*/ | |
fieldset { | |
border: 1px solid #c0c0c0; | |
margin: 0 2px; | |
padding: 0.35em 0.625em 0.75em; } | |
/** | |
* 1. Correct `color` not being inherited in IE 8/9/10/11. | |
* 2. Remove padding so people aren't caught out if they zero out fieldsets. | |
*/ | |
legend { | |
border: 0; | |
/* 1 */ | |
padding: 0; | |
/* 2 */ } | |
/** | |
* Remove default vertical scrollbar in IE 8/9/10/11. | |
*/ | |
textarea { | |
overflow: auto; } | |
/** | |
* Don't inherit the `font-weight` (applied by a rule above). | |
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X. | |
*/ | |
optgroup { | |
font-weight: bold; } | |
/* Tables | |
========================================================================== */ | |
/** | |
* Remove most spacing between table cells. | |
*/ | |
table { | |
border-collapse: collapse; | |
border-spacing: 0; } | |
td, | |
th { | |
padding: 0; } | |
* { | |
box-sizing: border-box; } | |
::selection { | |
color: #fff; | |
background: #7253ed; } | |
html { | |
font-size: 14px !important; } | |
@media (min-width: 31.25rem) { | |
html { | |
font-size: 16px !important; } } | |
body { | |
font-family: -apple-system, BlinkMacSystemFont, "helvetica neue", helvetica, roboto, noto, "segoe ui", arial, sans-serif; | |
font-size: inherit; | |
line-height: 1.4; | |
color: #5c5962; | |
background-color: #fff; } | |
p, | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6, | |
ol, | |
ul, | |
pre, | |
address, | |
blockquote, | |
dl, | |
div, | |
fieldset, | |
form, | |
hr, | |
noscript, | |
table { | |
margin-top: 0; } | |
h1, | |
h2, | |
h3, | |
h4, | |
h5, | |
h6 { | |
margin-top: 1.2em; | |
margin-bottom: 0.8em; | |
font-weight: 500; | |
line-height: 1.15; | |
color: #27262b; } | |
p { | |
margin-bottom: 1em; } | |
a { | |
color: #7253ed; | |
text-decoration: none; } | |
a:not([class]) { | |
text-decoration: none; | |
background-image: linear-gradient(#eeebee 0%, #eeebee 100%); | |
background-repeat: repeat-x; | |
background-position: 0 100%; | |
background-size: 1px 1px; } | |
a:not([class]):hover { | |
background-image: linear-gradient(rgba(114, 83, 237, 0.45) 0%, rgba(114, 83, 237, 0.45) 100%); | |
background-size: 1px 1px; } | |
code { | |
font-family: "SFMono-Regular", Menlo, Consolas, Monospace; | |
font-size: 12px; | |
line-height: 1.4; } | |
figure, | |
pre { | |
margin: 0; } | |
li { | |
margin: 0.25em 0; } | |
img { | |
max-width: 100%; | |
height: auto; } | |
hr { | |
height: 1px; | |
padding: 0; | |
margin: 2rem 0; | |
background-color: #eeebee; | |
border: 0; } | |
@media (min-width: 50rem) { | |
.page-wrap { | |
position: absolute; | |
top: 0; | |
left: 0; | |
display: flex; | |
width: 100%; | |
height: 100%; | |
overflow-x: hidden; | |
overflow-y: hidden; } } | |
.side-bar { | |
z-index: 100; | |
display: flex; | |
flex-wrap: wrap; | |
background-color: #f5f6fa; } | |
@media (min-width: 50rem) { | |
.side-bar { | |
flex-wrap: nowrap; | |
position: absolute; | |
width: 248px; | |
height: 100%; | |
flex-direction: column; | |
border-right: 1px solid #eeebee; | |
align-items: flex-end; } } | |
@media (min-width: 66.5rem) { | |
.side-bar { | |
width: calc((100% - 1064px) / 2 + 264px); | |
min-width: 264px; } } | |
@media (min-width: 50rem) { | |
.main-content-wrap { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
-webkit-overflow-scrolling: touch; | |
overflow-x: hidden; | |
overflow-y: scroll; } } | |
@media (min-width: 50rem) { | |
.main-content { | |
position: relative; | |
max-width: 800px; | |
margin-left: 248px; } } | |
@media (min-width: 66.5rem) { | |
.main-content { | |
margin-left: calc((100% - 1064px) / 2 + 264px); } } | |
.js-main-content:focus { | |
outline: none; } | |
.page { | |
padding-right: 1rem; | |
padding-left: 1rem; | |
padding-top: 1rem; | |
padding-bottom: 1rem; } | |
@media (min-width: 50rem) { | |
.page { | |
padding-right: 2rem; | |
padding-left: 2rem; } } | |
@media (min-width: 50rem) { | |
.page { | |
padding-top: 2rem; | |
padding-bottom: 2rem; } } | |
.page-header { | |
padding-right: 1rem; | |
padding-left: 1rem; | |
display: none; | |
padding-top: 1rem; | |
padding-bottom: 1rem; | |
background-color: #f5f6fa; } | |
@media (min-width: 50rem) { | |
.page-header { | |
padding-right: 2rem; | |
padding-left: 2rem; } } | |
@media (min-width: 50rem) { | |
.page-header { | |
display: flex; | |
justify-content: flex-end; | |
height: 60px; | |
background-color: #fff; | |
border-bottom: 1px solid #eeebee; } } | |
.page-header.nav-open { | |
display: block; } | |
@media (min-width: 50rem) { | |
.page-header.nav-open { | |
display: flex; } } | |
.navigation, | |
.site-header, | |
.site-footer { | |
width: 100%; } | |
@media (min-width: 66.5rem) { | |
.navigation, | |
.site-header, | |
.site-footer { | |
width: 264px; } } | |
.navigation { | |
padding-right: 1rem; | |
padding-left: 1rem; } | |
@media (min-width: 50rem) { | |
.navigation { | |
padding-right: 2rem; | |
padding-left: 2rem; } } | |
@media (min-width: 50rem) { | |
.navigation { | |
padding-top: 3rem; | |
padding-bottom: 1rem; | |
overflow-y: auto; | |
flex: 1 1 auto; } } | |
.site-header { | |
display: flex; | |
min-height: 60px; | |
align-items: center; } | |
@media (min-width: 50rem) { | |
.site-header { | |
z-index: 101; | |
height: 60px; | |
max-height: 60px; | |
border-bottom: 1px solid #eeebee; } } | |
.site-title { | |
padding-right: 1rem; | |
padding-left: 1rem; | |
flex-grow: 1; | |
display: flex; | |
height: 100%; | |
align-items: center; | |
padding-top: 0.75rem; | |
padding-bottom: 0.75rem; | |
color: #27262b; | |
font-size: 18px !important; } | |
@media (min-width: 50rem) { | |
.site-title { | |
padding-right: 2rem; | |
padding-left: 2rem; } } | |
@media (min-width: 31.25rem) { | |
.site-title { | |
font-size: 24px !important; } } | |
@media (min-width: 50rem) { | |
.site-title { | |
padding-top: 0.5rem; | |
padding-bottom: 0.5rem; } } | |
.menu-button { | |
appearance: none; | |
display: flex; | |
height: 100%; | |
padding: 1rem; | |
align-items: center; | |
color: #7253ed; | |
text-transform: uppercase; | |
background: transparent; | |
border: 0; } | |
@media (min-width: 50rem) { | |
.menu-button { | |
display: none; } } | |
body { | |
position: relative; | |
padding-bottom: 4rem; } | |
@media (min-width: 50rem) { | |
body { | |
position: static; | |
padding-bottom: 0; } } | |
.site-footer { | |
padding-right: 1rem; | |
padding-left: 1rem; | |
position: absolute; | |
bottom: 0; | |
left: 0; | |
padding-top: 1rem; | |
padding-bottom: 1rem; } | |
@media (min-width: 50rem) { | |
.site-footer { | |
padding-right: 2rem; | |
padding-left: 2rem; } } | |
@media (min-width: 50rem) { | |
.site-footer { | |
position: static; | |
justify-self: end; } } | |
.page-content { | |
line-height: 1.5; } | |
.page-content a { | |
overflow: hidden; | |
text-overflow: ellipsis; | |
white-space: nowrap; } | |
.page-content ul, | |
.page-content ol { | |
padding-left: 1.5em; } | |
.page-content ol { | |
list-style-type: none; | |
counter-reset: step-counter; } | |
.page-content ol > li { | |
position: relative; } | |
.page-content ol > li::before { | |
position: absolute; | |
top: 0.2em; | |
left: -1.6em; | |
color: #959396; | |
content: counter(step-counter); | |
counter-increment: step-counter; | |
font-size: 12px !important; } | |
@media (min-width: 31.25rem) { | |
.page-content ol > li::before { | |
font-size: 14px !important; } } | |
@media (min-width: 31.25rem) { | |
.page-content ol > li::before { | |
top: 0.11em; } } | |
.page-content ol > li ol { | |
counter-reset: sub-counter; } | |
.page-content ol > li ol li::before { | |
content: counter(sub-counter,lower-alpha); | |
counter-increment: sub-counter; } | |
.page-content ul { | |
list-style: none; } | |
.page-content ul > li::before { | |
position: absolute; | |
margin-left: -1.4em; | |
color: #959396; | |
content: "•"; } | |
.page-content .task-list { | |
padding-left: 0; } | |
.page-content .task-list-item { | |
display: flex; | |
align-items: center; } | |
.page-content .task-list-item::before { | |
content: ""; } | |
.page-content .task-list-item-checkbox { | |
margin-right: 0.6em; } | |
.page-content hr + * { | |
margin-top: 0; } | |
.page-content h1:first-of-type { | |
margin-top: 0.5em; } | |
.page-content dl { | |
display: grid; | |
grid-template-columns: max-content 1fr; } | |
.page-content dt, | |
.page-content dd { | |
margin: 0.25em 0; } | |
.page-content dt { | |
text-align: right; } | |
.page-content dt::after { | |
content: ":"; } | |
.page-content dd { | |
margin-left: 1em; | |
font-weight: 500; } | |
.page-content .anchor-heading { | |
position: absolute; | |
right: -1rem; | |
width: 1.5rem; | |
height: 100%; | |
padding-right: 0.25rem; | |
padding-left: 0.25rem; | |
overflow: visible; } | |
@media (min-width: 50rem) { | |
.page-content .anchor-heading { | |
right: auto; | |
left: -1.5rem; } } | |
.page-content .anchor-heading svg { | |
display: inline-block; | |
width: 100%; | |
height: 100%; | |
fill: #7253ed; | |
visibility: hidden; } | |
.page-content .anchor-heading:hover svg, | |
.page-content h1:hover > .anchor-heading svg, | |
.page-content h2:hover > .anchor-heading svg, | |
.page-content h3:hover > .anchor-heading svg, | |
.page-content h4:hover > .anchor-heading svg, | |
.page-content h5:hover > .anchor-heading svg, | |
.page-content h6:hover > .anchor-heading svg { | |
visibility: visible; } | |
.page-content h1, | |
.page-content h2, | |
.page-content h3, | |
.page-content h4, | |
.page-content h5, | |
.page-content h6 { | |
position: relative; } | |
.navigation-list { | |
padding: 0; | |
margin-top: 0; | |
margin-bottom: 0; | |
list-style: none; } | |
.navigation-list-child-list { | |
padding-left: 0.75rem; | |
list-style: none; } | |
.navigation-list-child-list .navigation-list-link { | |
color: #5c5962; } | |
.navigation-list-child-list .navigation-list-item { | |
position: relative; } | |
.navigation-list-child-list .navigation-list-item::before { | |
position: absolute; | |
margin-top: 0.3em; | |
margin-left: -0.8em; | |
color: rgba(92, 89, 98, 0.3); | |
content: "- "; } | |
.navigation-list-child-list .navigation-list-item.active::before { | |
color: #5c5962; } | |
.navigation-list-item { | |
font-size: 14px !important; | |
margin: 0; } | |
@media (min-width: 31.25rem) { | |
.navigation-list-item { | |
font-size: 16px !important; } } | |
@media (min-width: 50rem) { | |
.navigation-list-item { | |
font-size: 12px !important; } } | |
@media (min-width: 50rem) and (min-width: 31.25rem) { | |
.navigation-list-item { | |
font-size: 14px !important; } } | |
.navigation-list-item .navigation-list-child-list { | |
display: none; } | |
.navigation-list-item.active .navigation-list-child-list { | |
display: block; } | |
.navigation-list-link { | |
display: block; | |
padding-top: 0.25rem; | |
padding-bottom: 0.25rem; } | |
.navigation-list-link.active { | |
font-weight: 600; | |
color: #27262b; | |
text-decoration: none; } | |
.main-nav { | |
display: none; } | |
.main-nav.nav-open { | |
display: block; } | |
@media (min-width: 50rem) { | |
.main-nav { | |
display: block; } } | |
.aux-nav { | |
align-self: center; } | |
@media (min-width: 50rem) { | |
.breadcrumb-nav { | |
margin-top: -1rem; } } | |
.breadcrumb-nav-list { | |
padding-left: 0; | |
margin-bottom: 0.75rem; | |
list-style: none; } | |
.breadcrumb-nav-list-item { | |
display: table-cell; | |
font-size: 11px !important; } | |
@media (min-width: 31.25rem) { | |
.breadcrumb-nav-list-item { | |
font-size: 12px !important; } } | |
.breadcrumb-nav-list-item::before { | |
display: none; } | |
.breadcrumb-nav-list-item::after { | |
display: inline-block; | |
margin-right: 0.5rem; | |
margin-left: 0.5rem; | |
color: #959396; | |
content: "/"; } | |
.breadcrumb-nav-list-item:last-child::after { | |
content: ""; } | |
h1, | |
.text-alpha { | |
font-size: 32px !important; | |
font-weight: 300; } | |
@media (min-width: 31.25rem) { | |
h1, | |
.text-alpha { | |
font-size: 36px !important; } } | |
h2, | |
.text-beta { | |
font-size: 18px !important; } | |
@media (min-width: 31.25rem) { | |
h2, | |
.text-beta { | |
font-size: 24px !important; } } | |
h3, | |
.text-gamma { | |
font-size: 16px !important; } | |
@media (min-width: 31.25rem) { | |
h3, | |
.text-gamma { | |
font-size: 18px !important; } } | |
h4, | |
.text-delta { | |
font-size: 11px !important; | |
font-weight: 300; | |
text-transform: uppercase; | |
letter-spacing: 0.1em; } | |
@media (min-width: 31.25rem) { | |
h4, | |
.text-delta { | |
font-size: 12px !important; } } | |
h5, | |
.text-epsilon { | |
font-size: 12px !important; | |
color: #44434d; } | |
@media (min-width: 31.25rem) { | |
h5, | |
.text-epsilon { | |
font-size: 14px !important; } } | |
h6, | |
.text-zeta { | |
font-size: 11px !important; | |
color: #44434d; } | |
@media (min-width: 31.25rem) { | |
h6, | |
.text-zeta { | |
font-size: 12px !important; } } | |
li .highlight { | |
margin-top: 0.5rem; } | |
.text-small { | |
font-size: 11px !important; } | |
@media (min-width: 31.25rem) { | |
.text-small { | |
font-size: 12px !important; } } | |
.text-mono { | |
font-family: "SFMono-Regular", Menlo, Consolas, Monospace !important; } | |
.text-center { | |
text-align: center !important; } | |
.label, | |
.label-blue { | |
display: inline-block; | |
padding-top: 0.16em; | |
padding-right: 0.42em; | |
padding-bottom: 0.16em; | |
padding-left: 0.42em; | |
margin-right: 0.25rem; | |
margin-left: 0.25rem; | |
color: #fff; | |
text-transform: uppercase; | |
vertical-align: middle; | |
background-color: #2869e6; | |
font-size: 11px !important; } | |
@media (min-width: 31.25rem) { | |
.label, | |
.label-blue { | |
font-size: 12px !important; } } | |
.label-green { | |
background-color: #009c7b; } | |
.label-purple { | |
background-color: #5e41d0; } | |
.label-red { | |
background-color: #e94c4c; } | |
.label-yellow { | |
color: #44434d; | |
background-color: #f7d12e; } | |
.btn { | |
display: inline-block; | |
box-sizing: border-box; | |
padding-top: 0.3em; | |
padding-right: 1em; | |
padding-bottom: 0.3em; | |
padding-left: 1em; | |
margin: 0; | |
font-family: inherit; | |
font-size: inherit; | |
font-weight: 500; | |
line-height: 1.5; | |
color: #7253ed; | |
text-decoration: none; | |
vertical-align: baseline; | |
cursor: pointer; | |
background-color: #f7f7f7; | |
border-width: 0; | |
border-radius: 4px; | |
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08); | |
appearance: none; } | |
.btn:focus { | |
text-decoration: none; | |
outline: none; | |
box-shadow: 0 0 0 3px rgba(0, 0, 255, 0.25); } | |
.btn:focus:hover, .btn.selected:focus { | |
box-shadow: 0 0 0 3px rgba(0, 0, 255, 0.25); } | |
.btn:hover, .btn.zeroclipboard-is-hover { | |
color: #6a4aec; } | |
.btn:hover, .btn:active, .btn.zeroclipboard-is-hover, .btn.zeroclipboard-is-active { | |
text-decoration: none; | |
background-color: #f4f4f4; } | |
.btn:active, .btn.selected, .btn.zeroclipboard-is-active { | |
background-color: #efefef; | |
background-image: none; | |
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15); } | |
.btn.selected:hover { | |
background-color: #cfcfcf; } | |
.btn:disabled, .btn:disabled:hover, .btn.disabled, .btn.disabled:hover { | |
color: rgba(102, 102, 102, 0.5); | |
cursor: default; | |
background-color: rgba(229, 229, 229, 0.5); | |
background-image: none; | |
box-shadow: none; } | |
.btn-outline { | |
color: #7253ed; | |
background: transparent; | |
box-shadow: inset 0 0 0 2px #e6e1e8; } | |
.btn-outline:hover, .btn-outline:active, .btn-outline.zeroclipboard-is-hover, .btn-outline.zeroclipboard-is-active { | |
color: #6341eb; | |
text-decoration: none; | |
background-color: transparent; | |
box-shadow: inset 0 0 0 3px #e6e1e8; } | |
.btn-outline:focus { | |
text-decoration: none; | |
outline: none; | |
box-shadow: inset 0 0 0 2px #5c5962, 0 0 0 3px rgba(0, 0, 255, 0.25); } | |
.btn-outline:focus:hover, .btn-outline.selected:focus { | |
box-shadow: inset 0 0 0 2px #5c5962; } | |
.btn-primary { | |
color: #fff; | |
background-color: #5739ce; | |
background-image: linear-gradient(#6f55d5, #5739ce); | |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.12); } | |
.btn-primary:hover, .btn-primary.zeroclipboard-is-hover { | |
color: #fff; | |
background-color: #5132cb; | |
background-image: linear-gradient(#6549d2, #5132cb); } | |
.btn-primary:active, .btn-primary.selected, .btn-primary.zeroclipboard-is-active { | |
background-color: #4f31c6; | |
background-image: none; | |
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15); } | |
.btn-primary.selected:hover { | |
background-color: #472cb2; } | |
.btn-purple { | |
color: #fff; | |
background-color: #5739ce; | |
background-image: linear-gradient(#6f55d5, #5739ce); | |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.12); } | |
.btn-purple:hover, .btn-purple.zeroclipboard-is-hover { | |
color: #fff; | |
background-color: #5132cb; | |
background-image: linear-gradient(#6549d2, #5132cb); } | |
.btn-purple:active, .btn-purple.selected, .btn-purple.zeroclipboard-is-active { | |
background-color: #4f31c6; | |
background-image: none; | |
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15); } | |
.btn-purple.selected:hover { | |
background-color: #472cb2; } | |
.btn-blue { | |
color: #fff; | |
background-color: #227efa; | |
background-image: linear-gradient(#4593fb, #227efa); | |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.12); } | |
.btn-blue:hover, .btn-blue.zeroclipboard-is-hover { | |
color: #fff; | |
background-color: #1878fa; | |
background-image: linear-gradient(#368afa, #1878fa); } | |
.btn-blue:active, .btn-blue.selected, .btn-blue.zeroclipboard-is-active { | |
background-color: #1375f9; | |
background-image: none; | |
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15); } | |
.btn-blue.selected:hover { | |
background-color: #0669ed; } | |
.btn-green { | |
color: #fff; | |
background-color: #10ac7d; | |
background-image: linear-gradient(#13cc95, #10ac7d); | |
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.12); } | |
.btn-green:hover, .btn-green.zeroclipboard-is-hover { | |
color: #fff; | |
background-color: #0fa276; | |
background-image: linear-gradient(#12be8b, #0fa276); } | |
.btn-green:active, .btn-green.selected, .btn-green.zeroclipboard-is-active { | |
background-color: #0f9e73; | |
background-image: none; | |
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15); } | |
.btn-green.selected:hover { | |
background-color: #0d8662; } | |
.search { | |
position: relative; | |
z-index: 99; | |
flex-grow: 1; | |
height: 100%; | |
margin-bottom: 0.75rem; } | |
@media (min-width: 50rem) { | |
.search { | |
margin-bottom: 0; } } | |
.search-input-wrap { | |
display: flex; | |
height: 100%; | |
padding: 0.5rem; | |
background-color: #fff; | |
border-radius: 4px; | |
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08); } | |
@media (min-width: 50rem) { | |
.search-input-wrap { | |
padding-top: 0; | |
padding-right: 0; | |
padding-bottom: 0; | |
padding-left: 0; | |
background-color: #fff; | |
border-radius: 0; | |
box-shadow: none; } } | |
.search-input { | |
align-self: center; | |
width: 100%; | |
padding-top: 0.25rem; | |
padding-bottom: 0.25rem; | |
background-color: #fff; | |
border-top: 0; | |
border-right: 0; | |
border-bottom: 0; | |
border-left: 0; | |
order: 2; | |
font-size: 14px !important; } | |
@media (min-width: 31.25rem) { | |
.search-input { | |
font-size: 16px !important; } } | |
.search-input:focus { | |
outline: 0; | |
box-shadow: none; } | |
.search-input:focus + .search-icon { | |
fill: #7253ed; } | |
@media (min-width: 50rem) { | |
.search-input { | |
background-color: #fff; | |
font-size: 12px !important; } } | |
@media (min-width: 50rem) and (min-width: 31.25rem) { | |
.search-input { | |
font-size: 14px !important; } } | |
.search-icon { | |
align-self: center; | |
margin-right: 0.5rem; | |
fill: #959396; | |
order: 1; } | |
.search-results-wrap { | |
position: absolute; | |
z-index: 100; | |
display: none; | |
width: 100%; | |
background: #fff; | |
border-radius: 4px; | |
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08); } | |
.search-results-wrap.active { | |
display: block; } | |
@media (min-width: 50rem) { | |
.search-results-wrap { | |
width: 500px; } } | |
.search-results-list { | |
padding-left: 0; | |
margin-top: 0.25rem; | |
margin-bottom: 0.25rem; | |
list-style: none; | |
font-size: 14px !important; } | |
@media (min-width: 31.25rem) { | |
.search-results-list { | |
font-size: 16px !important; } } | |
@media (min-width: 50rem) { | |
.search-results-list { | |
font-size: 12px !important; } } | |
@media (min-width: 50rem) and (min-width: 31.25rem) { | |
.search-results-list { | |
font-size: 14px !important; } } | |
.search-results-list-item { | |
padding: 0; | |
margin: 0; } | |
.search-result { | |
display: block; | |
padding-top: 0.25rem; | |
padding-right: 0.75rem; | |
padding-bottom: 0.25rem; | |
padding-left: 0.75rem; } | |
.search-result:hover, .search-result.active { | |
background-color: #f5f6fa; } | |
@media (min-width: 50rem) { | |
.search-result { | |
padding-right: 1rem; | |
padding-left: 1rem; } } | |
.search-result-title { | |
display: block; | |
padding-top: 0.5rem; | |
padding-right: 1rem; | |
padding-bottom: 0.5rem; } | |
@media (min-width: 31.25rem) { | |
.search-result-title { | |
display: inline-block; | |
width: 40%; | |
word-wrap: break-word; | |
vertical-align: top; } } | |
.search-result-rel-url { | |
display: block; | |
overflow: hidden; | |
color: #959396; | |
text-overflow: ellipsis; | |
white-space: nowrap; | |
font-size: 9px !important; } | |
@media (min-width: 31.25rem) { | |
.search-result-rel-url { | |
font-size: 10px !important; } } | |
.search-result-preview { | |
display: block; | |
padding-top: 0.5rem; | |
padding-bottom: 0.5rem; | |
padding-left: 1rem; | |
color: #959396; | |
border-left: 1px solid; | |
border-left-color: #eeebee; | |
font-size: 11px !important; } | |
@media (min-width: 31.25rem) { | |
.search-result-preview { | |
font-size: 12px !important; } } | |
@media (min-width: 31.25rem) { | |
.search-result-preview { | |
display: inline-block; | |
width: 60%; | |
vertical-align: top; } } | |
.search-result-highlight { | |
font-weight: bold; | |
color: #7253ed; } | |
.table-wrapper { | |
display: block; | |
width: 100%; | |
max-width: 100%; | |
margin-bottom: 1.5rem; | |
overflow-x: auto; | |
border-radius: 4px; | |
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08); } | |
table { | |
display: table; | |
min-width: 100%; | |
border-collapse: separate; } | |
th, | |
td { | |
font-size: 12px !important; | |
min-width: 120px; | |
padding-top: 0.5rem; | |
padding-right: 0.75rem; | |
padding-bottom: 0.5rem; | |
padding-left: 0.75rem; | |
background-color: #fff; | |
border-bottom: 1px solid rgba(238, 235, 238, 0.5); | |
border-left: 1px solid #eeebee; } | |
@media (min-width: 31.25rem) { | |
th, | |
td { | |
font-size: 14px !important; } } | |
th:first-of-type, | |
td:first-of-type { | |
border-left: 0; } | |
tbody tr:last-of-type th, | |
tbody tr:last-of-type td { | |
border-bottom: 0; } | |
tbody tr:last-of-type td { | |
padding-bottom: 0.75rem; } | |
thead th { | |
border-bottom: 1px solid #eeebee; } | |
code { | |
padding: 0.2em 0.15em; | |
font-weight: 400; | |
background-color: #f5f6fa; | |
border: 1px solid #eeebee; | |
border-radius: 4px; } | |
pre.highlight, | |
figure.highlight { | |
padding: 0.75rem; | |
margin-bottom: 0; | |
-webkit-overflow-scrolling: touch; | |
background-color: #f5f6fa; } | |
pre.highlight code, | |
figure.highlight code { | |
padding: 0; | |
border: 0; } | |
.highlighter-rouge { | |
margin-bottom: 0.75rem; | |
overflow: hidden; | |
border-radius: 4px; } | |
.highlight .c { | |
color: #586e75; } | |
.highlight .err { | |
color: #93a1a1; } | |
.highlight .g { | |
color: #93a1a1; } | |
.highlight .k { | |
color: #859900; } | |
.highlight .l { | |
color: #93a1a1; } | |
.highlight .n { | |
color: #93a1a1; } | |
.highlight .o { | |
color: #859900; } | |
.highlight .x { | |
color: #cb4b16; } | |
.highlight .p { | |
color: #93a1a1; } | |
.highlight .cm { | |
color: #586e75; } | |
.highlight .cp { | |
color: #859900; } | |
.highlight .c1 { | |
color: #586e75; } | |
.highlight .cs { | |
color: #859900; } | |
.highlight .gd { | |
color: #2aa198; } | |
.highlight .ge { | |
font-style: italic; | |
color: #93a1a1; } | |
.highlight .gr { | |
color: #dc322f; } | |
.highlight .gh { | |
color: #cb4b16; } | |
.highlight .gi { | |
color: #859900; } | |
.highlight .go { | |
color: #93a1a1; } | |
.highlight .gp { | |
color: #93a1a1; } | |
.highlight .gs { | |
font-weight: bold; | |
color: #93a1a1; } | |
.highlight .gu { | |
color: #cb4b16; } | |
.highlight .gt { | |
color: #93a1a1; } | |
.highlight .kc { | |
color: #cb4b16; } | |
.highlight .kd { | |
color: #268bd2; } | |
.highlight .kn { | |
color: #859900; } | |
.highlight .kp { | |
color: #859900; } | |
.highlight .kr { | |
color: #268bd2; } | |
.highlight .kt { | |
color: #dc322f; } | |
.highlight .ld { | |
color: #93a1a1; } | |
.highlight .m { | |
color: #2aa198; } | |
.highlight .s { | |
color: #2aa198; } | |
.highlight .na { | |
color: #555; } | |
.highlight .nb { | |
color: #b58900; } | |
.highlight .nc { | |
color: #268bd2; } | |
.highlight .no { | |
color: #cb4b16; } | |
.highlight .nd { | |
color: #268bd2; } | |
.highlight .ni { | |
color: #cb4b16; } | |
.highlight .ne { | |
color: #cb4b16; } | |
.highlight .nf { | |
color: #268bd2; } | |
.highlight .nl { | |
color: #555; } | |
.highlight .nn { | |
color: #93a1a1; } | |
.highlight .nx { | |
color: #555; } | |
.highlight .py { | |
color: #93a1a1; } | |
.highlight .nt { | |
color: #268bd2; } | |
.highlight .nv { | |
color: #268bd2; } | |
.highlight .ow { | |
color: #859900; } | |
.highlight .w { | |
color: #93a1a1; } | |
.highlight .mf { | |
color: #2aa198; } | |
.highlight .mh { | |
color: #2aa198; } | |
.highlight .mi { | |
color: #2aa198; } | |
.highlight .mo { | |
color: #2aa198; } | |
.highlight .sb { | |
color: #586e75; } | |
.highlight .sc { | |
color: #2aa198; } | |
.highlight .sd { | |
color: #93a1a1; } | |
.highlight .s2 { | |
color: #2aa198; } | |
.highlight .se { | |
color: #cb4b16; } | |
.highlight .sh { | |
color: #93a1a1; } | |
.highlight .si { | |
color: #2aa198; } | |
.highlight .sx { | |
color: #2aa198; } | |
.highlight .sr { | |
color: #dc322f; } | |
.highlight .s1 { | |
color: #2aa198; } | |
.highlight .ss { | |
color: #2aa198; } | |
.highlight .bp { | |
color: #268bd2; } | |
.highlight .vc { | |
color: #268bd2; } | |
.highlight .vg { | |
color: #268bd2; } | |
.highlight .vi { | |
color: #268bd2; } | |
.highlight .il { | |
color: #2aa198; } | |
.code-example { | |
padding: 0.75rem; | |
margin-bottom: 0.75rem; | |
overflow: auto; | |
border: 1px solid #eeebee; | |
border-radius: 4px; } | |
.code-example + .highlighter-rouge, | |
.code-example + figure.highlight { | |
position: relative; | |
margin-top: -1rem; | |
border-right: 1px solid #eeebee; | |
border-bottom: 1px solid #eeebee; | |
border-left: 1px solid #eeebee; | |
border-top-left-radius: 0; | |
border-top-right-radius: 0; } | |
.text-grey-dk-000 { | |
color: #959396 !important; } | |
.text-grey-dk-100 { | |
color: #5c5962 !important; } | |
.text-grey-dk-200 { | |
color: #44434d !important; } | |
.text-grey-dk-250 { | |
color: #302d36 !important; } | |
.text-grey-dk-300 { | |
color: #27262b !important; } | |
.text-grey-lt-000 { | |
color: #f5f6fa !important; } | |
.text-grey-lt-100 { | |
color: #eeebee !important; } | |
.text-grey-lt-200 { | |
color: #ecebed !important; } | |
.text-grey-lt-300 { | |
color: #e6e1e8 !important; } | |
.text-blue-000 { | |
color: #2c84fa !important; } | |
.text-blue-100 { | |
color: #2869e6 !important; } | |
.text-blue-200 { | |
color: #264caf !important; } | |
.text-blue-300 { | |
color: #183385 !important; } | |
.text-green-000 { | |
color: #41d693 !important; } | |
.text-green-100 { | |
color: #11b584 !important; } | |
.text-green-200 { | |
color: #009c7b !important; } | |
.text-green-300 { | |
color: #026e57 !important; } | |
.text-purple-000 { | |
color: #7253ed !important; } | |
.text-purple-100 { | |
color: #5e41d0 !important; } | |
.text-purple-200 { | |
color: #4e26af !important; } | |
.text-purple-300 { | |
color: #381885 !important; } | |
.text-yellow-000 { | |
color: #ffeb82 !important; } | |
.text-yellow-100 { | |
color: #fadf50 !important; } | |
.text-yellow-200 { | |
color: #f7d12e !important; } | |
.text-yellow-300 { | |
color: #e7af06 !important; } | |
.text-red-000 { | |
color: #f77e7e !important; } | |
.text-red-100 { | |
color: #f96e65 !important; } | |
.text-red-200 { | |
color: #e94c4c !important; } | |
.text-red-300 { | |
color: #dd2e2e !important; } | |
.bg-grey-dk-000 { | |
background-color: #959396 !important; } | |
.bg-grey-dk-100 { | |
background-color: #5c5962 !important; } | |
.bg-grey-dk-200 { | |
background-color: #44434d !important; } | |
.bg-grey-dk-250 { | |
background-color: #302d36 !important; } | |
.bg-grey-dk-300 { | |
background-color: #27262b !important; } | |
.bg-grey-lt-000 { | |
background-color: #f5f6fa !important; } | |
.bg-grey-lt-100 { | |
background-color: #eeebee !important; } | |
.bg-grey-lt-200 { | |
background-color: #ecebed !important; } | |
.bg-grey-lt-300 { | |
background-color: #e6e1e8 !important; } | |
.bg-blue-000 { | |
background-color: #2c84fa !important; } | |
.bg-blue-100 { | |
background-color: #2869e6 !important; } | |
.bg-blue-200 { | |
background-color: #264caf !important; } | |
.bg-blue-300 { | |
background-color: #183385 !important; } | |
.bg-green-000 { | |
background-color: #41d693 !important; } | |
.bg-green-100 { | |
background-color: #11b584 !important; } | |
.bg-green-200 { | |
background-color: #009c7b !important; } | |
.bg-green-300 { | |
background-color: #026e57 !important; } | |
.bg-purple-000 { | |
background-color: #7253ed !important; } | |
.bg-purple-100 { | |
background-color: #5e41d0 !important; } | |
.bg-purple-200 { | |
background-color: #4e26af !important; } | |
.bg-purple-300 { | |
background-color: #381885 !important; } | |
.bg-yellow-000 { | |
background-color: #ffeb82 !important; } | |
.bg-yellow-100 { | |
background-color: #fadf50 !important; } | |
.bg-yellow-200 { | |
background-color: #f7d12e !important; } | |
.bg-yellow-300 { | |
background-color: #e7af06 !important; } | |
.bg-red-000 { | |
background-color: #f77e7e !important; } | |
.bg-red-100 { | |
background-color: #f96e65 !important; } | |
.bg-red-200 { | |
background-color: #e94c4c !important; } | |
.bg-red-300 { | |
background-color: #dd2e2e !important; } | |
.d-block { | |
display: block !important; } | |
.d-flex { | |
display: flex !important; } | |
.d-inline { | |
display: inline !important; } | |
.d-inline-block { | |
display: inline-block !important; } | |
.d-none { | |
display: none !important; } | |
@media (min-width: 20rem) { | |
.d-xs-block { | |
display: block !important; } | |
.d-xs-flex { | |
display: flex !important; } | |
.d-xs-inline { | |
display: inline !important; } | |
.d-xs-inline-block { | |
display: inline-block !important; } | |
.d-xs-none { | |
display: none !important; } } | |
@media (min-width: 20rem) { | |
.d-xs-block { | |
display: block !important; } | |
.d-xs-flex { | |
display: flex !important; } | |
.d-xs-inline { | |
display: inline !important; } | |
.d-xs-inline-block { | |
display: inline-block !important; } | |
.d-xs-none { | |
display: none !important; } } | |
@media (min-width: 20rem) { | |
.d-xs-block { | |
display: block !important; } | |
.d-xs-flex { | |
display: flex !important; } | |
.d-xs-inline { | |
display: inline !important; } | |
.d-xs-inline-block { | |
display: inline-block !important; } | |
.d-xs-none { | |
display: none !important; } } | |
@media (min-width: 20rem) { | |
.d-xs-block { | |
display: block !important; } | |
.d-xs-flex { | |
display: flex !important; } | |
.d-xs-inline { | |
display: inline !important; } | |
.d-xs-inline-block { | |
display: inline-block !important; } | |
.d-xs-none { | |
display: none !important; } } | |
@media (min-width: 20rem) { | |
.d-xs-block { | |
display: block !important; } | |
.d-xs-flex { | |
display: flex !important; } | |
.d-xs-inline { | |
display: inline !important; } | |
.d-xs-inline-block { | |
display: inline-block !important; } | |
.d-xs-none { | |
display: none !important; } } | |
@media (min-width: 20rem) { | |
.d-xs-block { | |
display: block !important; } | |
.d-xs-flex { | |
display: flex !important; } | |
.d-xs-inline { | |
display: inline !important; } | |
.d-xs-inline-block { | |
display: inline-block !important; } | |
.d-xs-none { | |
display: none !important; } } | |
@media (min-width: 20rem) { | |
.d-xs-block { | |
display: block !important; } | |
.d-xs-flex { | |
display: flex !important; } | |
.d-xs-inline { | |
display: inline !important; } | |
.d-xs-inline-block { | |
display: inline-block !important; } | |
.d-xs-none { | |
display: none !important; } } | |
@media (min-width: 20rem) { | |
.d-xs-block { | |
display: block !important; } | |
.d-xs-flex { | |
display: flex !important; } | |
.d-xs-inline { | |
display: inline !important; } | |
.d-xs-inline-block { | |
display: inline-block !important; } | |
.d-xs-none { | |
display: none !important; } } | |
@media (min-width: 20rem) { | |
.d-xs-block { | |
display: block !important; } | |
.d-xs-flex { | |
display: flex !important; } | |
.d-xs-inline { | |
display: inline !important; } | |
.d-xs-inline-block { | |
display: inline-block !important; } | |
.d-xs-none { | |
display: none !important; } } | |
@media (min-width: 20rem) { | |
.d-xs-block { | |
display: block !important; } | |
.d-xs-flex { | |
display: flex !important; } | |
.d-xs-inline { | |
display: inline !important; } | |
.d-xs-inline-block { | |
display: inline-block !important; } | |
.d-xs-none { | |
display: none !important; } } | |
@media (min-width: 20rem) { | |
.d-xs-block { | |
display: block !important; } | |
.d-xs-flex { | |
display: flex !important; } | |
.d-xs-inline { | |
display: inline !important; } | |
.d-xs-inline-block { | |
display: inline-block !important; } | |
.d-xs-none { | |
display: none !important; } } | |
@media (min-width: 31.25rem) { | |
.d-sm-block { | |
display: block !important; } | |
.d-sm-flex { | |
display: flex !important; } | |
.d-sm-inline { | |
display: inline !important; } | |
.d-sm-inline-block { | |
display: inline-block !important; } | |
.d-sm-none { | |
display: none !important; } } | |
@media (min-width: 31.25rem) { | |
.d-sm-block { | |
display: block !important; } | |
.d-sm-flex { | |
display: flex !important; } | |
.d-sm-inline { | |
display: inline !important; } | |
.d-sm-inline-block { | |
display: inline-block !important; } | |
.d-sm-none { | |
display: none !important; } } | |
@media (min-width: 31.25rem) { | |
.d-sm-block { | |
display: block !important; } | |
.d-sm-flex { | |
display: flex !important; } | |
.d-sm-inline { | |
display: inline !important; } | |
.d-sm-inline-block { | |
display: inline-block !important; } | |
.d-sm-none { | |
display: none !important; } } | |
@media (min-width: 31.25rem) { | |
.d-sm-block { | |
display: block !important; } | |
.d-sm-flex { | |
display: flex !important; } | |
.d-sm-inline { | |
display: inline !important; } | |
.d-sm-inline-block { | |
display: inline-block !important; } | |
.d-sm-none { | |
display: none !important; } } | |
@media (min-width: 31.25rem) { | |
.d-sm-block { | |
display: block !important; } | |
.d-sm-flex { | |
display: flex !important; } | |
.d-sm-inline { | |
display: inline !important; } | |
.d-sm-inline-block { | |
display: inline-block !important; } | |
.d-sm-none { | |
display: none !important; } } | |
@media (min-width: 31.25rem) { | |
.d-sm-block { | |
display: block !important; } | |
.d-sm-flex { | |
display: flex !important; } | |
.d-sm-inline { | |
display: inline !important; } | |
.d-sm-inline-block { | |
display: inline-block !important; } | |
.d-sm-none { | |
display: none !important; } } | |
@media (min-width: 31.25rem) { | |
.d-sm-block { | |
display: block !important; } | |
.d-sm-flex { | |
display: flex !important; } | |
.d-sm-inline { | |
display: inline !important; } | |
.d-sm-inline-block { | |
display: inline-block !important; } | |
.d-sm-none { | |
display: none !important; } } | |
@media (min-width: 31.25rem) { | |
.d-sm-block { | |
display: block !important; } | |
.d-sm-flex { | |
display: flex !important; } | |
.d-sm-inline { | |
display: inline !important; } | |
.d-sm-inline-block { | |
display: inline-block !important; } | |
.d-sm-none { | |
display: none !important; } } | |
@media (min-width: 31.25rem) { | |
.d-sm-block { | |
display: block !important; } | |
.d-sm-flex { | |
display: flex !important; } | |
.d-sm-inline { | |
display: inline !important; } | |
.d-sm-inline-block { | |
display: inline-block !important; } | |
.d-sm-none { | |
display: none !important; } } | |
@media (min-width: 31.25rem) { | |
.d-sm-block { | |
display: block !important; } | |
.d-sm-flex { | |
display: flex !important; } | |
.d-sm-inline { | |
display: inline !important; } | |
.d-sm-inline-block { | |
display: inline-block !important; } | |
.d-sm-none { | |
display: none !important; } } | |
@media (min-width: 31.25rem) { | |
.d-sm-block { | |
display: block !important; } | |
.d-sm-flex { | |
display: flex !important; } | |
.d-sm-inline { | |
display: inline !important; } | |
.d-sm-inline-block { | |
display: inline-block !important; } | |
.d-sm-none { | |
display: none !important; } } | |
@media (min-width: 50rem) { | |
.d-md-block { | |
display: block !important; } | |
.d-md-flex { | |
display: flex !important; } | |
.d-md-inline { | |
display: inline !important; } | |
.d-md-inline-block { | |
display: inline-block !important; } | |
.d-md-none { | |
display: none !important; } } | |
@media (min-width: 50rem) { | |
.d-md-block { | |
display: block !important; } | |
.d-md-flex { | |
display: flex !important; } | |
.d-md-inline { | |
display: inline !important; } | |
.d-md-inline-block { | |
display: inline-block !important; } | |
.d-md-none { | |
display: none !important; } } | |
@media (min-width: 50rem) { | |
.d-md-block { | |
display: block !important; } | |
.d-md-flex { | |
display: flex !important; } | |
.d-md-inline { | |
display: inline !important; } | |
.d-md-inline-block { | |
display: inline-block !important; } | |
.d-md-none { | |
display: none !important; } } | |
@media (min-width: 50rem) { | |
.d-md-block { | |
display: block !important; } | |
.d-md-flex { | |
display: flex !important; } | |
.d-md-inline { | |
display: inline !important; } | |
.d-md-inline-block { | |
display: inline-block !important; } | |
.d-md-none { | |
display: none !important; } } | |
@media (min-width: 50rem) { | |
.d-md-block { | |
display: block !important; } | |
.d-md-flex { | |
display: flex !important; } | |
.d-md-inline { | |
display: inline !important; } | |
.d-md-inline-block { | |
display: inline-block !important; } | |
.d-md-none { | |
display: none !important; } } | |
@media (min-width: 50rem) { | |
.d-md-block { | |
display: block !important; } | |
.d-md-flex { | |
display: flex !important; } | |
.d-md-inline { | |
display: inline !important; } | |
.d-md-inline-block { | |
display: inline-block !important; } | |
.d-md-none { | |
display: none !important; } } | |
@media (min-width: 50rem) { | |
.d-md-block { | |
display: block !important; } | |
.d-md-flex { | |
display: flex !important; } | |
.d-md-inline { | |
display: inline !important; } | |
.d-md-inline-block { | |
display: inline-block !important; } | |
.d-md-none { | |
display: none !important; } } | |
@media (min-width: 50rem) { | |
.d-md-block { | |
display: block !important; } | |
.d-md-flex { | |
display: flex !important; } | |
.d-md-inline { | |
display: inline !important; } | |
.d-md-inline-block { | |
display: inline-block !important; } | |
.d-md-none { | |
display: none !important; } } | |
@media (min-width: 50rem) { | |
.d-md-block { | |
display: block !important; } | |
.d-md-flex { | |
display: flex !important; } | |
.d-md-inline { | |
display: inline !important; } | |
.d-md-inline-block { | |
display: inline-block !important; } | |
.d-md-none { | |
display: none !important; } } | |
@media (min-width: 50rem) { | |
.d-md-block { | |
display: block !important; } | |
.d-md-flex { | |
display: flex !important; } | |
.d-md-inline { | |
display: inline !important; } | |
.d-md-inline-block { | |
display: inline-block !important; } | |
.d-md-none { | |
display: none !important; } } | |
@media (min-width: 50rem) { | |
.d-md-block { | |
display: block !important; } | |
.d-md-flex { | |
display: flex !important; } | |
.d-md-inline { | |
display: inline !important; } | |
.d-md-inline-block { | |
display: inline-block !important; } | |
.d-md-none { | |
display: none !important; } } | |
@media (min-width: 66.5rem) { | |
.d-lg-block { | |
display: block !important; } | |
.d-lg-flex { | |
display: flex !important; } | |
.d-lg-inline { | |
display: inline !important; } | |
.d-lg-inline-block { | |
display: inline-block !important; } | |
.d-lg-none { | |
display: none !important; } } | |
@media (min-width: 66.5rem) { | |
.d-lg-block { | |
display: block !important; } | |
.d-lg-flex { | |
display: flex !important; } | |
.d-lg-inline { | |
display: inline !important; } | |
.d-lg-inline-block { | |
display: inline-block !important; } | |
.d-lg-none { | |
display: none !important; } } | |
@media (min-width: 66.5rem) { | |
.d-lg-block { | |
display: block !important; } | |
.d-lg-flex { | |
display: flex !important; } | |
.d-lg-inline { | |
display: inline !important; } | |
.d-lg-inline-block { | |
display: inline-block !important; } | |
.d-lg-none { | |
display: none !important; } } | |
@media (min-width: 66.5rem) { | |
.d-lg-block { | |
display: block !important; } | |
.d-lg-flex { | |
display: flex !important; } | |
.d-lg-inline { | |
display: inline !important; } | |
.d-lg-inline-block { | |
display: inline-block !important; } | |
.d-lg-none { | |
display: none !important; } } | |
@media (min-width: 66.5rem) { | |
.d-lg-block { | |
display: block !important; } | |
.d-lg-flex { | |
display: flex !important; } | |
.d-lg-inline { | |
display: inline !important; } | |
.d-lg-inline-block { | |
display: inline-block !important; } | |
.d-lg-none { | |
display: none !important; } } | |
@media (min-width: 66.5rem) { | |
.d-lg-block { | |
display: block !important; } | |
.d-lg-flex { | |
display: flex !important; } | |
.d-lg-inline { | |
display: inline !important; } | |
.d-lg-inline-block { | |
display: inline-block !important; } | |
.d-lg-none { | |
display: none !important; } } | |
@media (min-width: 66.5rem) { | |
.d-lg-block { | |
display: block !important; } | |
.d-lg-flex { | |
display: flex !important; } | |
.d-lg-inline { | |
display: inline !important; } | |
.d-lg-inline-block { | |
display: inline-block !important; } | |
.d-lg-none { | |
display: none !important; } } | |
@media (min-width: 66.5rem) { | |
.d-lg-block { | |
display: block !important; } | |
.d-lg-flex { | |
display: flex !important; } | |
.d-lg-inline { | |
display: inline !important; } | |
.d-lg-inline-block { | |
display: inline-block !important; } | |
.d-lg-none { | |
display: none !important; } } | |
@media (min-width: 66.5rem) { | |
.d-lg-block { | |
display: block !important; } | |
.d-lg-flex { | |
display: flex !important; } | |
.d-lg-inline { | |
display: inline !important; } | |
.d-lg-inline-block { | |
display: inline-block !important; } | |
.d-lg-none { | |
display: none !important; } } | |
@media (min-width: 66.5rem) { | |
.d-lg-block { | |
display: block !important; } | |
.d-lg-flex { | |
display: flex !important; } | |
.d-lg-inline { | |
display: inline !important; } | |
.d-lg-inline-block { | |
display: inline-block !important; } | |
.d-lg-none { | |
display: none !important; } } | |
@media (min-width: 66.5rem) { | |
.d-lg-block { | |
display: block !important; } | |
.d-lg-flex { | |
display: flex !important; } | |
.d-lg-inline { | |
display: inline !important; } | |
.d-lg-inline-block { | |
display: inline-block !important; } | |
.d-lg-none { | |
display: none !important; } } | |
@media (min-width: 87.5rem) { | |
.d-xl-block { | |
display: block !important; } | |
.d-xl-flex { | |
display: flex !important; } | |
.d-xl-inline { | |
display: inline !important; } | |
.d-xl-inline-block { | |
display: inline-block !important; } | |
.d-xl-none { | |
display: none !important; } } | |
@media (min-width: 87.5rem) { | |
.d-xl-block { | |
display: block !important; } | |
.d-xl-flex { | |
display: flex !important; } | |
.d-xl-inline { | |
display: inline !important; } | |
.d-xl-inline-block { | |
display: inline-block !important; } | |
.d-xl-none { | |
display: none !important; } } | |
@media (min-width: 87.5rem) { | |
.d-xl-block { | |
display: block !important; } | |
.d-xl-flex { | |
display: flex !important; } | |
.d-xl-inline { | |
display: inline !important; } | |
.d-xl-inline-block { | |
display: inline-block !important; } | |
.d-xl-none { | |
display: none !important; } } | |
@media (min-width: 87.5rem) { | |
.d-xl-block { | |
display: block !important; } | |
.d-xl-flex { | |
display: flex !important; } | |
.d-xl-inline { | |
display: inline !important; } | |
.d-xl-inline-block { | |
display: inline-block !important; } | |
.d-xl-none { | |
display: none !important; } } | |
@media (min-width: 87.5rem) { | |
.d-xl-block { | |
display: block !important; } | |
.d-xl-flex { | |
display: flex !important; } | |
.d-xl-inline { | |
display: inline !important; } | |
.d-xl-inline-block { | |
display: inline-block !important; } | |
.d-xl-none { | |
display: none !important; } } | |
@media (min-width: 87.5rem) { | |
.d-xl-block { | |
display: block !important; } | |
.d-xl-flex { | |
display: flex !important; } | |
.d-xl-inline { | |
display: inline !important; } | |
.d-xl-inline-block { | |
display: inline-block !important; } | |
.d-xl-none { | |
display: none !important; } } | |
@media (min-width: 87.5rem) { | |
.d-xl-block { | |
display: block !important; } | |
.d-xl-flex { | |
display: flex !important; } | |
.d-xl-inline { | |
display: inline !important; } | |
.d-xl-inline-block { | |
display: inline-block !important; } | |
.d-xl-none { | |
display: none !important; } } | |
@media (min-width: 87.5rem) { | |
.d-xl-block { | |
display: block !important; } | |
.d-xl-flex { | |
display: flex !important; } | |
.d-xl-inline { | |
display: inline !important; } | |
.d-xl-inline-block { | |
display: inline-block !important; } | |
.d-xl-none { | |
display: none !important; } } | |
@media (min-width: 87.5rem) { | |
.d-xl-block { | |
display: block !important; } | |
.d-xl-flex { | |
display: flex !important; } | |
.d-xl-inline { | |
display: inline !important; } | |
.d-xl-inline-block { | |
display: inline-block !important; } | |
.d-xl-none { | |
display: none !important; } } | |
@media (min-width: 87.5rem) { | |
.d-xl-block { | |
display: block !important; } | |
.d-xl-flex { | |
display: flex !important; } | |
.d-xl-inline { | |
display: inline !important; } | |
.d-xl-inline-block { | |
display: inline-block !important; } | |
.d-xl-none { | |
display: none !important; } } | |
@media (min-width: 87.5rem) { | |
.d-xl-block { | |
display: block !important; } | |
.d-xl-flex { | |
display: flex !important; } | |
.d-xl-inline { | |
display: inline !important; } | |
.d-xl-inline-block { | |
display: inline-block !important; } | |
.d-xl-none { | |
display: none !important; } } | |
.v-align-baseline { | |
vertical-align: baseline !important; } | |
.v-align-bottom { | |
vertical-align: bottom !important; } | |
.v-align-middle { | |
vertical-align: middle !important; } | |
.v-align-text-bottom { | |
vertical-align: text-bottom !important; } | |
.v-align-text-top { | |
vertical-align: text-top !important; } | |
.v-align-top { | |
vertical-align: top !important; } | |
.fs-1 { | |
font-size: 9px !important; } | |
@media (min-width: 31.25rem) { | |
.fs-1 { | |
font-size: 10px !important; } } | |
.fs-2 { | |
font-size: 11px !important; } | |
@media (min-width: 31.25rem) { | |
.fs-2 { | |
font-size: 12px !important; } } | |
.fs-3 { | |
font-size: 12px !important; } | |
@media (min-width: 31.25rem) { | |
.fs-3 { | |
font-size: 14px !important; } } | |
.fs-4 { | |
font-size: 14px !important; } | |
@media (min-width: 31.25rem) { | |
.fs-4 { | |
font-size: 16px !important; } } | |
.fs-5 { | |
font-size: 16px !important; } | |
@media (min-width: 31.25rem) { | |
.fs-5 { | |
font-size: 18px !important; } } | |
.fs-6 { | |
font-size: 18px !important; } | |
@media (min-width: 31.25rem) { | |
.fs-6 { | |
font-size: 24px !important; } } | |
.fs-7 { | |
font-size: 24px !important; } | |
@media (min-width: 31.25rem) { | |
.fs-7 { | |
font-size: 32px !important; } } | |
.fs-8 { | |
font-size: 32px !important; } | |
@media (min-width: 31.25rem) { | |
.fs-8 { | |
font-size: 36px !important; } } | |
.fs-9 { | |
font-size: 36px !important; } | |
@media (min-width: 31.25rem) { | |
.fs-9 { | |
font-size: 42px !important; } } | |
.fs-10 { | |
font-size: 42px !important; } | |
@media (min-width: 31.25rem) { | |
.fs-10 { | |
font-size: 48px !important; } } | |
.fw-300 { | |
font-weight: 300 !important; } | |
.fw-400 { | |
font-weight: 400 !important; } | |
.fw-500 { | |
font-weight: 500 !important; } | |
.fw-700 { | |
font-weight: 700 !important; } | |
.lh-0 { | |
line-height: 0 !important; } | |
.lh-default { | |
line-height: 1.4; } | |
.lh-tight { | |
line-height: 1.15; } | |
.ls-5 { | |
letter-spacing: 0.05em !important; } | |
.ls-10 { | |
letter-spacing: 0.1em !important; } | |
.ls-0 { | |
letter-spacing: 0 !important; } | |
.text-uppercase { | |
text-transform: uppercase !important; } | |
.list-style-none { | |
padding: 0 !important; | |
margin: 0 !important; | |
list-style: none !important; } | |
.list-style-none li::before { | |
display: none !important; } | |
.m-0 { | |
margin: 0 !important; } | |
.mt-0 { | |
margin-top: 0 !important; } | |
.mr-0 { | |
margin-right: 0 !important; } | |
.mb-0 { | |
margin-bottom: 0 !important; } | |
.ml-0 { | |
margin-left: 0 !important; } | |
.mx-0 { | |
margin-right: 0 !important; | |
margin-left: 0 !important; } | |
.my-0 { | |
margin-top: 0 !important; | |
margin-bottom: 0 !important; } | |
.mxn-0 { | |
margin-right: -0 !important; | |
margin-left: -0 !important; } | |
.m-1 { | |
margin: 0.25rem !important; } | |
.mt-1 { | |
margin-top: 0.25rem !important; } | |
.mr-1 { | |
margin-right: 0.25rem !important; } | |
.mb-1 { | |
margin-bottom: 0.25rem !important; } | |
.ml-1 { | |
margin-left: 0.25rem !important; } | |
.mx-1 { | |
margin-right: 0.25rem !important; | |
margin-left: 0.25rem !important; } | |
.my-1 { | |
margin-top: 0.25rem !important; | |
margin-bottom: 0.25rem !important; } | |
.mxn-1 { | |
margin-right: -0.25rem !important; | |
margin-left: -0.25rem !important; } | |
.m-2 { | |
margin: 0.5rem !important; } | |
.mt-2 { | |
margin-top: 0.5rem !important; } | |
.mr-2 { | |
margin-right: 0.5rem !important; } | |
.mb-2 { | |
margin-bottom: 0.5rem !important; } | |
.ml-2 { | |
margin-left: 0.5rem !important; } | |
.mx-2 { | |
margin-right: 0.5rem !important; | |
margin-left: 0.5rem !important; } | |
.my-2 { | |
margin-top: 0.5rem !important; | |
margin-bottom: 0.5rem !important; } | |
.mxn-2 { | |
margin-right: -0.5rem !important; | |
margin-left: -0.5rem !important; } | |
.m-3 { | |
margin: 0.75rem !important; } | |
.mt-3 { | |
margin-top: 0.75rem !important; } | |
.mr-3 { | |
margin-right: 0.75rem !important; } | |
.mb-3 { | |
margin-bottom: 0.75rem !important; } | |
.ml-3 { | |
margin-left: 0.75rem !important; } | |
.mx-3 { | |
margin-right: 0.75rem !important; | |
margin-left: 0.75rem !important; } | |
.my-3 { | |
margin-top: 0.75rem !important; | |
margin-bottom: 0.75rem !important; } | |
.mxn-3 { | |
margin-right: -0.75rem !important; | |
margin-left: -0.75rem !important; } | |
.m-4 { | |
margin: 1rem !important; } | |
.mt-4 { | |
margin-top: 1rem !important; } | |
.mr-4 { | |
margin-right: 1rem !important; } | |
.mb-4 { | |
margin-bottom: 1rem !important; } | |
.ml-4 { | |
margin-left: 1rem !important; } | |
.mx-4 { | |
margin-right: 1rem !important; | |
margin-left: 1rem !important; } | |
.my-4 { | |
margin-top: 1rem !important; | |
margin-bottom: 1rem !important; } | |
.mxn-4 { | |
margin-right: -1rem !important; | |
margin-left: -1rem !important; } | |
.m-5 { | |
margin: 1.5rem !important; } | |
.mt-5 { | |
margin-top: 1.5rem !important; } | |
.mr-5 { | |
margin-right: 1.5rem !important; } | |
.mb-5 { | |
margin-bottom: 1.5rem !important; } | |
.ml-5 { | |
margin-left: 1.5rem !important; } | |
.mx-5 { | |
margin-right: 1.5rem !important; | |
margin-left: 1.5rem !important; } | |
.my-5 { | |
margin-top: 1.5rem !important; | |
margin-bottom: 1.5rem !important; } | |
.mxn-5 { | |
margin-right: -1.5rem !important; | |
margin-left: -1.5rem !important; } | |
.m-6 { | |
margin: 2rem !important; } | |
.mt-6 { | |
margin-top: 2rem !important; } | |
.mr-6 { | |
margin-right: 2rem !important; } | |
.mb-6 { | |
margin-bottom: 2rem !important; } | |
.ml-6 { | |
margin-left: 2rem !important; } | |
.mx-6 { | |
margin-right: 2rem !important; | |
margin-left: 2rem !important; } | |
.my-6 { | |
margin-top: 2rem !important; | |
margin-bottom: 2rem !important; } | |
.mxn-6 { | |
margin-right: -2rem !important; | |
margin-left: -2rem !important; } | |
.m-7 { | |
margin: 2.5rem !important; } | |
.mt-7 { | |
margin-top: 2.5rem !important; } | |
.mr-7 { | |
margin-right: 2.5rem !important; } | |
.mb-7 { | |
margin-bottom: 2.5rem !important; } | |
.ml-7 { | |
margin-left: 2.5rem !important; } | |
.mx-7 { | |
margin-right: 2.5rem !important; | |
margin-left: 2.5rem !important; } | |
.my-7 { | |
margin-top: 2.5rem !important; | |
margin-bottom: 2.5rem !important; } | |
.mxn-7 { | |
margin-right: -2.5rem !important; | |
margin-left: -2.5rem !important; } | |
.m-8 { | |
margin: 3rem !important; } | |
.mt-8 { | |
margin-top: 3rem !important; } | |
.mr-8 { | |
margin-right: 3rem !important; } | |
.mb-8 { | |
margin-bottom: 3rem !important; } | |
.ml-8 { | |
margin-left: 3rem !important; } | |
.mx-8 { | |
margin-right: 3rem !important; | |
margin-left: 3rem !important; } | |
.my-8 { | |
margin-top: 3rem !important; | |
margin-bottom: 3rem !important; } | |
.mxn-8 { | |
margin-right: -3rem !important; | |
margin-left: -3rem !important; } | |
.m-9 { | |
margin: 3.5rem !important; } | |
.mt-9 { | |
margin-top: 3.5rem !important; } | |
.mr-9 { | |
margin-right: 3.5rem !important; } | |
.mb-9 { | |
margin-bottom: 3.5rem !important; } | |
.ml-9 { | |
margin-left: 3.5rem !important; } | |
.mx-9 { | |
margin-right: 3.5rem !important; | |
margin-left: 3.5rem !important; } | |
.my-9 { | |
margin-top: 3.5rem !important; | |
margin-bottom: 3.5rem !important; } | |
.mxn-9 { | |
margin-right: -3.5rem !important; | |
margin-left: -3.5rem !important; } | |
.m-10 { | |
margin: 4rem !important; } | |
.mt-10 { | |
margin-top: 4rem !important; } | |
.mr-10 { | |
margin-right: 4rem !important; } | |
.mb-10 { | |
margin-bottom: 4rem !important; } | |
.ml-10 { | |
margin-left: 4rem !important; } | |
.mx-10 { | |
margin-right: 4rem !important; | |
margin-left: 4rem !important; } | |
.my-10 { | |
margin-top: 4rem !important; | |
margin-bottom: 4rem !important; } | |
.mxn-10 { | |
margin-right: -4rem !important; | |
margin-left: -4rem !important; } | |
.mx-auto { | |
margin-right: auto !important; | |
margin-left: auto !important; } | |
@media (min-width: 20rem) { | |
.m-xs-0 { | |
margin: 0 !important; } | |
.mt-xs-0 { | |
margin-top: 0 !important; } | |
.mr-xs-0 { | |
margin-right: 0 !important; } | |
.mb-xs-0 { | |
margin-bottom: 0 !important; } | |
.ml-xs-0 { | |
margin-left: 0 !important; } | |
.mx-xs-0 { | |
margin-right: 0 !important; | |
margin-left: 0 !important; } | |
.my-xs-0 { | |
margin-top: 0 !important; | |
margin-bottom: 0 !important; } | |
.mxn-xs-0 { | |
margin-right: -0 !important; | |
margin-left: -0 !important; } } | |
@media (min-width: 20rem) { | |
.m-xs-1 { | |
margin: 0.25rem !important; } | |
.mt-xs-1 { | |
margin-top: 0.25rem !important; } | |
.mr-xs-1 { | |
margin-right: 0.25rem !important; } | |
.mb-xs-1 { | |
margin-bottom: 0.25rem !important; } | |
.ml-xs-1 { | |
margin-left: 0.25rem !important; } | |
.mx-xs-1 { | |
margin-right: 0.25rem !important; | |
margin-left: 0.25rem !important; } | |
.my-xs-1 { | |
margin-top: 0.25rem !important; | |
margin-bottom: 0.25rem !important; } | |
.mxn-xs-1 { | |
margin-right: -0.25rem !important; | |
margin-left: -0.25rem !important; } } | |
@media (min-width: 20rem) { | |
.m-xs-2 { | |
margin: 0.5rem !important; } | |
.mt-xs-2 { | |
margin-top: 0.5rem !important; } | |
.mr-xs-2 { | |
margin-right: 0.5rem !important; } | |
.mb-xs-2 { | |
margin-bottom: 0.5rem !important; } | |
.ml-xs-2 { | |
margin-left: 0.5rem !important; } | |
.mx-xs-2 { | |
margin-right: 0.5rem !important; | |
margin-left: 0.5rem !important; } | |
.my-xs-2 { | |
margin-top: 0.5rem !important; | |
margin-bottom: 0.5rem !important; } | |
.mxn-xs-2 { | |
margin-right: -0.5rem !important; | |
margin-left: -0.5rem !important; } } | |
@media (min-width: 20rem) { | |
.m-xs-3 { | |
margin: 0.75rem !important; } | |
.mt-xs-3 { | |
margin-top: 0.75rem !important; } | |
.mr-xs-3 { | |
margin-right: 0.75rem !important; } | |
.mb-xs-3 { | |
margin-bottom: 0.75rem !important; } | |
.ml-xs-3 { | |
margin-left: 0.75rem !important; } | |
.mx-xs-3 { | |
margin-right: 0.75rem !important; | |
margin-left: 0.75rem !important; } | |
.my-xs-3 { | |
margin-top: 0.75rem !important; | |
margin-bottom: 0.75rem !important; } | |
.mxn-xs-3 { | |
margin-right: -0.75rem !important; | |
margin-left: -0.75rem !important; } } | |
@media (min-width: 20rem) { | |
.m-xs-4 { | |
margin: 1rem !important; } | |
.mt-xs-4 { | |
margin-top: 1rem !important; } | |
.mr-xs-4 { | |
margin-right: 1rem !important; } | |
.mb-xs-4 { | |
margin-bottom: 1rem !important; } | |
.ml-xs-4 { | |
margin-left: 1rem !important; } | |
.mx-xs-4 { | |
margin-right: 1rem !important; | |
margin-left: 1rem !important; } | |
.my-xs-4 { | |
margin-top: 1rem !important; | |
margin-bottom: 1rem !important; } | |
.mxn-xs-4 { | |
margin-right: -1rem !important; | |
margin-left: -1rem !important; } } | |
@media (min-width: 20rem) { | |
.m-xs-5 { | |
margin: 1.5rem !important; } | |
.mt-xs-5 { | |
margin-top: 1.5rem !important; } | |
.mr-xs-5 { | |
margin-right: 1.5rem !important; } | |
.mb-xs-5 { | |
margin-bottom: 1.5rem !important; } | |
.ml-xs-5 { | |
margin-left: 1.5rem !important; } | |
.mx-xs-5 { | |
margin-right: 1.5rem !important; | |
margin-left: 1.5rem !important; } | |
.my-xs-5 { | |
margin-top: 1.5rem !important; | |
margin-bottom: 1.5rem !important; } | |
.mxn-xs-5 { | |
margin-right: -1.5rem !important; | |
margin-left: -1.5rem !important; } } | |
@media (min-width: 20rem) { | |
.m-xs-6 { | |
margin: 2rem !important; } | |
.mt-xs-6 { | |
margin-top: 2rem !important; } | |
.mr-xs-6 { | |
margin-right: 2rem !important; } | |
.mb-xs-6 { | |
margin-bottom: 2rem !important; } | |
.ml-xs-6 { | |
margin-left: 2rem !important; } | |
.mx-xs-6 { | |
margin-right: 2rem !important; | |
margin-left: 2rem !important; } | |
.my-xs-6 { | |
margin-top: 2rem !important; | |
margin-bottom: 2rem !important; } | |
.mxn-xs-6 { | |
margin-right: -2rem !important; | |
margin-left: -2rem !important; } } | |
@media (min-width: 20rem) { | |
.m-xs-7 { | |
margin: 2.5rem !important; } | |
.mt-xs-7 { | |
margin-top: 2.5rem !important; } | |
.mr-xs-7 { | |
margin-right: 2.5rem !important; } | |
.mb-xs-7 { | |
margin-bottom: 2.5rem !important; } | |
.ml-xs-7 { | |
margin-left: 2.5rem !important; } | |
.mx-xs-7 { | |
margin-right: 2.5rem !important; | |
margin-left: 2.5rem !important; } | |
.my-xs-7 { | |
margin-top: 2.5rem !important; | |
margin-bottom: 2.5rem !important; } | |
.mxn-xs-7 { | |
margin-right: -2.5rem !important; | |
margin-left: -2.5rem !important; } } | |
@media (min-width: 20rem) { | |
.m-xs-8 { | |
margin: 3rem !important; } | |
.mt-xs-8 { | |
margin-top: 3rem !important; } | |
.mr-xs-8 { | |
margin-right: 3rem !important; } | |
.mb-xs-8 { | |
margin-bottom: 3rem !important; } | |
.ml-xs-8 { | |
margin-left: 3rem !important; } | |
.mx-xs-8 { | |
margin-right: 3rem !important; | |
margin-left: 3rem !important; } | |
.my-xs-8 { | |
margin-top: 3rem !important; | |
margin-bottom: 3rem !important; } | |
.mxn-xs-8 { | |
margin-right: -3rem !important; | |
margin-left: -3rem !important; } } | |
@media (min-width: 20rem) { | |
.m-xs-9 { | |
margin: 3.5rem !important; } | |
.mt-xs-9 { | |
margin-top: 3.5rem !important; } | |
.mr-xs-9 { | |
margin-right: 3.5rem !important; } | |
.mb-xs-9 { | |
margin-bottom: 3.5rem !important; } | |
.ml-xs-9 { | |
margin-left: 3.5rem !important; } | |
.mx-xs-9 { | |
margin-right: 3.5rem !important; | |
margin-left: 3.5rem !important; } | |
.my-xs-9 { | |
margin-top: 3.5rem !important; | |
margin-bottom: 3.5rem !important; } | |
.mxn-xs-9 { | |
margin-right: -3.5rem !important; | |
margin-left: -3.5rem !important; } } | |
@media (min-width: 20rem) { | |
.m-xs-10 { | |
margin: 4rem !important; } | |
.mt-xs-10 { | |
margin-top: 4rem !important; } | |
.mr-xs-10 { | |
margin-right: 4rem !important; } | |
.mb-xs-10 { | |
margin-bottom: 4rem !important; } | |
.ml-xs-10 { | |
margin-left: 4rem !important; } | |
.mx-xs-10 { | |
margin-right: 4rem !important; | |
margin-left: 4rem !important; } | |
.my-xs-10 { | |
margin-top: 4rem !important; | |
margin-bottom: 4rem !important; } | |
.mxn-xs-10 { | |
margin-right: -4rem !important; | |
margin-left: -4rem !important; } } | |
@media (min-width: 31.25rem) { | |
.m-sm-0 { | |
margin: 0 !important; } | |
.mt-sm-0 { | |
margin-top: 0 !important; } | |
.mr-sm-0 { | |
margin-right: 0 !important; } | |
.mb-sm-0 { | |
margin-bottom: 0 !important; } | |
.ml-sm-0 { | |
margin-left: 0 !important; } | |
.mx-sm-0 { | |
margin-right: 0 !important; | |
margin-left: 0 !important; } | |
.my-sm-0 { | |
margin-top: 0 !important; | |
margin-bottom: 0 !important; } | |
.mxn-sm-0 { | |
margin-right: -0 !important; | |
margin-left: -0 !important; } } | |
@media (min-width: 31.25rem) { | |
.m-sm-1 { | |
margin: 0.25rem !important; } | |
.mt-sm-1 { | |
margin-top: 0.25rem !important; } | |
.mr-sm-1 { | |
margin-right: 0.25rem !important; } | |
.mb-sm-1 { | |
margin-bottom: 0.25rem !important; } | |
.ml-sm-1 { | |
margin-left: 0.25rem !important; } | |
.mx-sm-1 { | |
margin-right: 0.25rem !important; | |
margin-left: 0.25rem !important; } | |
.my-sm-1 { | |
margin-top: 0.25rem !important; | |
margin-bottom: 0.25rem !important; } | |
.mxn-sm-1 { | |
margin-right: -0.25rem !important; | |
margin-left: -0.25rem !important; } } | |
@media (min-width: 31.25rem) { | |
.m-sm-2 { | |
margin: 0.5rem !important; } | |
.mt-sm-2 { | |
margin-top: 0.5rem !important; } | |
.mr-sm-2 { | |
margin-right: 0.5rem !important; } | |
.mb-sm-2 { | |
margin-bottom: 0.5rem !important; } | |
.ml-sm-2 { | |
margin-left: 0.5rem !important; } | |
.mx-sm-2 { | |
margin-right: 0.5rem !important; | |
margin-left: 0.5rem !important; } | |
.my-sm-2 { | |
margin-top: 0.5rem !important; | |
margin-bottom: 0.5rem !important; } | |
.mxn-sm-2 { | |
margin-right: -0.5rem !important; | |
margin-left: -0.5rem !important; } } | |
@media (min-width: 31.25rem) { | |
.m-sm-3 { | |
margin: 0.75rem !important; } | |
.mt-sm-3 { | |
margin-top: 0.75rem !important; } | |
.mr-sm-3 { | |
margin-right: 0.75rem !important; } | |
.mb-sm-3 { | |
margin-bottom: 0.75rem !important; } | |
.ml-sm-3 { | |
margin-left: 0.75rem !important; } | |
.mx-sm-3 { | |
margin-right: 0.75rem !important; | |
margin-left: 0.75rem !important; } | |
.my-sm-3 { | |
margin-top: 0.75rem !important; | |
margin-bottom: 0.75rem !important; } | |
.mxn-sm-3 { | |
margin-right: -0.75rem !important; | |
margin-left: -0.75rem !important; } } | |
@media (min-width: 31.25rem) { | |
.m-sm-4 { | |
margin: 1rem !important; } | |
.mt-sm-4 { | |
margin-top: 1rem !important; } | |
.mr-sm-4 { | |
margin-right: 1rem !important; } | |
.mb-sm-4 { | |
margin-bottom: 1rem !important; } | |
.ml-sm-4 { | |
margin-left: 1rem !important; } | |
.mx-sm-4 { | |
margin-right: 1rem !important; | |
margin-left: 1rem !important; } | |
.my-sm-4 { | |
margin-top: 1rem !important; | |
margin-bottom: 1rem !important; } | |
.mxn-sm-4 { | |
margin-right: -1rem !important; | |
margin-left: -1rem !important; } } | |
@media (min-width: 31.25rem) { | |
.m-sm-5 { | |
margin: 1.5rem !important; } | |
.mt-sm-5 { | |
margin-top: 1.5rem !important; } | |
.mr-sm-5 { | |
margin-right: 1.5rem !important; } | |
.mb-sm-5 { | |
margin-bottom: 1.5rem !important; } | |
.ml-sm-5 { | |
margin-left: 1.5rem !important; } | |
.mx-sm-5 { | |
margin-right: 1.5rem !important; | |
margin-left: 1.5rem !important; } | |
.my-sm-5 { | |
margin-top: 1.5rem !important; | |
margin-bottom: 1.5rem !important; } | |
.mxn-sm-5 { | |
margin-right: -1.5rem !important; | |
margin-left: -1.5rem !important; } } | |
@media (min-width: 31.25rem) { | |
.m-sm-6 { | |
margin: 2rem !important; } | |
.mt-sm-6 { | |
margin-top: 2rem !important; } | |
.mr-sm-6 { | |
margin-right: 2rem !important; } | |
.mb-sm-6 { | |
margin-bottom: 2rem !important; } | |
.ml-sm-6 { | |
margin-left: 2rem !important; } | |
.mx-sm-6 { | |
margin-right: 2rem !important; | |
margin-left: 2rem !important; } | |
.my-sm-6 { | |
margin-top: 2rem !important; | |
margin-bottom: 2rem !important; } | |
.mxn-sm-6 { | |
margin-right: -2rem !important; | |
margin-left: -2rem !important; } } | |
@media (min-width: 31.25rem) { | |
.m-sm-7 { | |
margin: 2.5rem !important; } | |
.mt-sm-7 { | |
margin-top: 2.5rem !important; } | |
.mr-sm-7 { | |
margin-right: 2.5rem !important; } | |
.mb-sm-7 { | |
margin-bottom: 2.5rem !important; } | |
.ml-sm-7 { | |
margin-left: 2.5rem !important; } | |
.mx-sm-7 { | |
margin-right: 2.5rem !important; | |
margin-left: 2.5rem !important; } | |
.my-sm-7 { | |
margin-top: 2.5rem !important; | |
margin-bottom: 2.5rem !important; } | |
.mxn-sm-7 { | |
margin-right: -2.5rem !important; | |
margin-left: -2.5rem !important; } } | |
@media (min-width: 31.25rem) { | |
.m-sm-8 { | |
margin: 3rem !important; } | |
.mt-sm-8 { | |
margin-top: 3rem !important; } | |
.mr-sm-8 { | |
margin-right: 3rem !important; } | |
.mb-sm-8 { | |
margin-bottom: 3rem !important; } | |
.ml-sm-8 { | |
margin-left: 3rem !important; } | |
.mx-sm-8 { | |
margin-right: 3rem !important; | |
margin-left: 3rem !important; } | |
.my-sm-8 { | |
margin-top: 3rem !important; | |
margin-bottom: 3rem !important; } | |
.mxn-sm-8 { | |
margin-right: -3rem !important; | |
margin-left: -3rem !important; } } | |
@media (min-width: 31.25rem) { | |
.m-sm-9 { | |
margin: 3.5rem !important; } | |
.mt-sm-9 { | |
margin-top: 3.5rem !important; } | |
.mr-sm-9 { | |
margin-right: 3.5rem !important; } | |
.mb-sm-9 { | |
margin-bottom: 3.5rem !important; } | |
.ml-sm-9 { | |
margin-left: 3.5rem !important; } | |
.mx-sm-9 { | |
margin-right: 3.5rem !important; | |
margin-left: 3.5rem !important; } | |
.my-sm-9 { | |
margin-top: 3.5rem !important; | |
margin-bottom: 3.5rem !important; } | |
.mxn-sm-9 { | |
margin-right: -3.5rem !important; | |
margin-left: -3.5rem !important; } } | |
@media (min-width: 31.25rem) { | |
.m-sm-10 { | |
margin: 4rem !important; } | |
.mt-sm-10 { | |
margin-top: 4rem !important; } | |
.mr-sm-10 { | |
margin-right: 4rem !important; } | |
.mb-sm-10 { | |
margin-bottom: 4rem !important; } | |
.ml-sm-10 { | |
margin-left: 4rem !important; } | |
.mx-sm-10 { | |
margin-right: 4rem !important; | |
margin-left: 4rem !important; } | |
.my-sm-10 { | |
margin-top: 4rem !important; | |
margin-bottom: 4rem !important; } | |
.mxn-sm-10 { | |
margin-right: -4rem !important; | |
margin-left: -4rem !important; } } | |
@media (min-width: 50rem) { | |
.m-md-0 { | |
margin: 0 !important; } | |
.mt-md-0 { | |
margin-top: 0 !important; } | |
.mr-md-0 { | |
margin-right: 0 !important; } | |
.mb-md-0 { | |
margin-bottom: 0 !important; } | |
.ml-md-0 { | |
margin-left: 0 !important; } | |
.mx-md-0 { | |
margin-right: 0 !important; | |
margin-left: 0 !important; } | |
.my-md-0 { | |
margin-top: 0 !important; | |
margin-bottom: 0 !important; } | |
.mxn-md-0 { | |
margin-right: -0 !important; | |
margin-left: -0 !important; } } | |
@media (min-width: 50rem) { | |
.m-md-1 { | |
margin: 0.25rem !important; } | |
.mt-md-1 { | |
margin-top: 0.25rem !important; } | |
.mr-md-1 { | |
margin-right: 0.25rem !important; } | |
.mb-md-1 { | |
margin-bottom: 0.25rem !important; } | |
.ml-md-1 { | |
margin-left: 0.25rem !important; } | |
.mx-md-1 { | |
margin-right: 0.25rem !important; | |
margin-left: 0.25rem !important; } | |
.my-md-1 { | |
margin-top: 0.25rem !important; | |
margin-bottom: 0.25rem !important; } | |
.mxn-md-1 { | |
margin-right: -0.25rem !important; | |
margin-left: -0.25rem !important; } } | |
@media (min-width: 50rem) { | |
.m-md-2 { | |
margin: 0.5rem !important; } | |
.mt-md-2 { | |
margin-top: 0.5rem !important; } | |
.mr-md-2 { | |
margin-right: 0.5rem !important; } | |
.mb-md-2 { | |
margin-bottom: 0.5rem !important; } | |
.ml-md-2 { | |
margin-left: 0.5rem !important; } | |
.mx-md-2 { | |
margin-right: 0.5rem !important; | |
margin-left: 0.5rem !important; } | |
.my-md-2 { | |
margin-top: 0.5rem !important; | |
margin-bottom: 0.5rem !important; } | |
.mxn-md-2 { | |
margin-right: -0.5rem !important; | |
margin-left: -0.5rem !important; } } | |
@media (min-width: 50rem) { | |
.m-md-3 { | |
margin: 0.75rem !important; } | |
.mt-md-3 { | |
margin-top: 0.75rem !important; } | |
.mr-md-3 { | |
margin-right: 0.75rem !important; } | |
.mb-md-3 { | |
margin-bottom: 0.75rem !important; } | |
.ml-md-3 { | |
margin-left: 0.75rem !important; } | |
.mx-md-3 { | |
margin-right: 0.75rem !important; | |
margin-left: 0.75rem !important; } | |
.my-md-3 { | |
margin-top: 0.75rem !important; | |
margin-bottom: 0.75rem !important; } | |
.mxn-md-3 { | |
margin-right: -0.75rem !important; | |
margin-left: -0.75rem !important; } } | |
@media (min-width: 50rem) { | |
.m-md-4 { | |
margin: 1rem !important; } | |
.mt-md-4 { | |
margin-top: 1rem !important; } | |
.mr-md-4 { | |
margin-right: 1rem !important; } | |
.mb-md-4 { | |
margin-bottom: 1rem !important; } | |
.ml-md-4 { | |
margin-left: 1rem !important; } | |
.mx-md-4 { | |
margin-right: 1rem !important; | |
margin-left: 1rem !important; } | |
.my-md-4 { | |
margin-top: 1rem !important; | |
margin-bottom: 1rem !important; } | |
.mxn-md-4 { | |
margin-right: -1rem !important; | |
margin-left: -1rem !important; } } | |
@media (min-width: 50rem) { | |
.m-md-5 { | |
margin: 1.5rem !important; } | |
.mt-md-5 { | |
margin-top: 1.5rem !important; } | |
.mr-md-5 { | |
margin-right: 1.5rem !important; } | |
.mb-md-5 { | |
margin-bottom: 1.5rem !important; } | |
.ml-md-5 { | |
margin-left: 1.5rem !important; } | |
.mx-md-5 { | |
margin-right: 1.5rem !important; | |
margin-left: 1.5rem !important; } | |
.my-md-5 { | |
margin-top: 1.5rem !important; | |
margin-bottom: 1.5rem !important; } | |
.mxn-md-5 { | |
margin-right: -1.5rem !important; | |
margin-left: -1.5rem !important; } } | |
@media (min-width: 50rem) { | |
.m-md-6 { | |
margin: 2rem !important; } | |
.mt-md-6 { | |
margin-top: 2rem !important; } | |
.mr-md-6 { | |
margin-right: 2rem !important; } | |
.mb-md-6 { | |
margin-bottom: 2rem !important; } | |
.ml-md-6 { | |
margin-left: 2rem !important; } | |
.mx-md-6 { | |
margin-right: 2rem !important; | |
margin-left: 2rem !important; } | |
.my-md-6 { | |
margin-top: 2rem !important; | |
margin-bottom: 2rem !important; } | |
.mxn-md-6 { | |
margin-right: -2rem !important; | |
margin-left: -2rem !important; } } | |
@media (min-width: 50rem) { | |
.m-md-7 { | |
margin: 2.5rem !important; } | |
.mt-md-7 { | |
margin-top: 2.5rem !important; } | |
.mr-md-7 { | |
margin-right: 2.5rem !important; } | |
.mb-md-7 { | |
margin-bottom: 2.5rem !important; } | |
.ml-md-7 { | |
margin-left: 2.5rem !important; } | |
.mx-md-7 { | |
margin-right: 2.5rem !important; | |
margin-left: 2.5rem !important; } | |
.my-md-7 { | |
margin-top: 2.5rem !important; | |
margin-bottom: 2.5rem !important; } | |
.mxn-md-7 { | |
margin-right: -2.5rem !important; | |
margin-left: -2.5rem !important; } } | |
@media (min-width: 50rem) { | |
.m-md-8 { | |
margin: 3rem !important; } | |
.mt-md-8 { | |
margin-top: 3rem !important; } | |
.mr-md-8 { | |
margin-right: 3rem !important; } | |
.mb-md-8 { | |
margin-bottom: 3rem !important; } | |
.ml-md-8 { | |
margin-left: 3rem !important; } | |
.mx-md-8 { | |
margin-right: 3rem !important; | |
margin-left: 3rem !important; } | |
.my-md-8 { | |
margin-top: 3rem !important; | |
margin-bottom: 3rem !important; } | |
.mxn-md-8 { | |
margin-right: -3rem !important; | |
margin-left: -3rem !important; } } | |
@media (min-width: 50rem) { | |
.m-md-9 { | |
margin: 3.5rem !important; } | |
.mt-md-9 { | |
margin-top: 3.5rem !important; } | |
.mr-md-9 { | |
margin-right: 3.5rem !important; } | |
.mb-md-9 { | |
margin-bottom: 3.5rem !important; } | |
.ml-md-9 { | |
margin-left: 3.5rem !important; } | |
.mx-md-9 { | |
margin-right: 3.5rem !important; | |
margin-left: 3.5rem !important; } | |
.my-md-9 { | |
margin-top: 3.5rem !important; | |
margin-bottom: 3.5rem !important; } | |
.mxn-md-9 { | |
margin-right: -3.5rem !important; | |
margin-left: -3.5rem !important; } } | |
@media (min-width: 50rem) { | |
.m-md-10 { | |
margin: 4rem !important; } | |
.mt-md-10 { | |
margin-top: 4rem !important; } | |
.mr-md-10 { | |
margin-right: 4rem !important; } | |
.mb-md-10 { | |
margin-bottom: 4rem !important; } | |
.ml-md-10 { | |
margin-left: 4rem !important; } | |
.mx-md-10 { | |
margin-right: 4rem !important; | |
margin-left: 4rem !important; } | |
.my-md-10 { | |
margin-top: 4rem !important; | |
margin-bottom: 4rem !important; } | |
.mxn-md-10 { | |
margin-right: -4rem !important; | |
margin-left: -4rem !important; } } | |
@media (min-width: 66.5rem) { | |
.m-lg-0 { | |
margin: 0 !important; } | |
.mt-lg-0 { | |
margin-top: 0 !important; } | |
.mr-lg-0 { | |
margin-right: 0 !important; } | |
.mb-lg-0 { | |
margin-bottom: 0 !important; } | |
.ml-lg-0 { | |
margin-left: 0 !important; } | |
.mx-lg-0 { | |
margin-right: 0 !important; | |
margin-left: 0 !important; } | |
.my-lg-0 { | |
margin-top: 0 !important; | |
margin-bottom: 0 !important; } | |
.mxn-lg-0 { | |
margin-right: -0 !important; | |
margin-left: -0 !important; } } | |
@media (min-width: 66.5rem) { | |
.m-lg-1 { | |
margin: 0.25rem !important; } | |
.mt-lg-1 { | |
margin-top: 0.25rem !important; } | |
.mr-lg-1 { | |
margin-right: 0.25rem !important; } | |
.mb-lg-1 { | |
margin-bottom: 0.25rem !important; } | |
.ml-lg-1 { | |
margin-left: 0.25rem !important; } | |
.mx-lg-1 { | |
margin-right: 0.25rem !important; | |
margin-left: 0.25rem !important; } | |
.my-lg-1 { | |
margin-top: 0.25rem !important; | |
margin-bottom: 0.25rem !important; } | |
.mxn-lg-1 { | |
margin-right: -0.25rem !important; | |
margin-left: -0.25rem !important; } } | |
@media (min-width: 66.5rem) { | |
.m-lg-2 { | |
margin: 0.5rem !important; } | |
.mt-lg-2 { | |
margin-top: 0.5rem !important; } | |
.mr-lg-2 { | |
margin-right: 0.5rem !important; } | |
.mb-lg-2 { | |
margin-bottom: 0.5rem !important; } | |
.ml-lg-2 { | |
margin-left: 0.5rem !important; } | |
.mx-lg-2 { | |
margin-right: 0.5rem !important; | |
margin-left: 0.5rem !important; } | |
.my-lg-2 { | |
margin-top: 0.5rem !important; | |
margin-bottom: 0.5rem !important; } | |
.mxn-lg-2 { | |
margin-right: -0.5rem !important; | |
margin-left: -0.5rem !important; } } | |
@media (min-width: 66.5rem) { | |
.m-lg-3 { | |
margin: 0.75rem !important; } | |
.mt-lg-3 { | |
margin-top: 0.75rem !important; } | |
.mr-lg-3 { | |
margin-right: 0.75rem !important; } | |
.mb-lg-3 { | |
margin-bottom: 0.75rem !important; } | |
.ml-lg-3 { | |
margin-left: 0.75rem !important; } | |
.mx-lg-3 { | |
margin-right: 0.75rem !important; | |
margin-left: 0.75rem !important; } | |
.my-lg-3 { | |
margin-top: 0.75rem !important; | |
margin-bottom: 0.75rem !important; } | |
.mxn-lg-3 { | |
margin-right: -0.75rem !important; | |
margin-left: -0.75rem !important; } } | |
@media (min-width: 66.5rem) { | |
.m-lg-4 { | |
margin: 1rem !important; } | |
.mt-lg-4 { | |
margin-top: 1rem !important; } | |
.mr-lg-4 { | |
margin-right: 1rem !important; } | |
.mb-lg-4 { | |
margin-bottom: 1rem !important; } | |
.ml-lg-4 { | |
margin-left: 1rem !important; } | |
.mx-lg-4 { | |
margin-right: 1rem !important; | |
margin-left: 1rem !important; } | |
.my-lg-4 { | |
margin-top: 1rem !important; | |
margin-bottom: 1rem !important; } | |
.mxn-lg-4 { | |
margin-right: -1rem !important; | |
margin-left: -1rem !important; } } | |
@media (min-width: 66.5rem) { | |
.m-lg-5 { | |
margin: 1.5rem !important; } | |
.mt-lg-5 { | |
margin-top: 1.5rem !important; } | |
.mr-lg-5 { | |
margin-right: 1.5rem !important; } | |
.mb-lg-5 { | |
margin-bottom: 1.5rem !important; } | |
.ml-lg-5 { | |
margin-left: 1.5rem !important; } | |
.mx-lg-5 { | |
margin-right: 1.5rem !important; | |
margin-left: 1.5rem !important; } | |
.my-lg-5 { | |
margin-top: 1.5rem !important; | |
margin-bottom: 1.5rem !important; } | |
.mxn-lg-5 { | |
margin-right: -1.5rem !important; | |
margin-left: -1.5rem !important; } } | |
@media (min-width: 66.5rem) { | |
.m-lg-6 { | |
margin: 2rem !important; } | |
.mt-lg-6 { | |
margin-top: 2rem !important; } | |
.mr-lg-6 { | |
margin-right: 2rem !important; } | |
.mb-lg-6 { | |
margin-bottom: 2rem !important; } | |
.ml-lg-6 { | |
margin-left: 2rem !important; } | |
.mx-lg-6 { | |
margin-right: 2rem !important; | |
margin-left: 2rem !important; } | |
.my-lg-6 { | |
margin-top: 2rem !important; | |
margin-bottom: 2rem !important; } | |
.mxn-lg-6 { | |
margin-right: -2rem !important; | |
margin-left: -2rem !important; } } | |
@media (min-width: 66.5rem) { | |
.m-lg-7 { | |
margin: 2.5rem !important; } | |
.mt-lg-7 { | |
margin-top: 2.5rem !important; } | |
.mr-lg-7 { | |
margin-right: 2.5rem !important; } | |
.mb-lg-7 { | |
margin-bottom: 2.5rem !important; } | |
.ml-lg-7 { | |
margin-left: 2.5rem !important; } | |
.mx-lg-7 { | |
margin-right: 2.5rem !important; | |
margin-left: 2.5rem !important; } | |
.my-lg-7 { | |
margin-top: 2.5rem !important; | |
margin-bottom: 2.5rem !important; } | |
.mxn-lg-7 { | |
margin-right: -2.5rem !important; | |
margin-left: -2.5rem !important; } } | |
@media (min-width: 66.5rem) { | |
.m-lg-8 { | |
margin: 3rem !important; } | |
.mt-lg-8 { | |
margin-top: 3rem !important; } | |
.mr-lg-8 { | |
margin-right: 3rem !important; } | |
.mb-lg-8 { | |
margin-bottom: 3rem !important; } | |
.ml-lg-8 { | |
margin-left: 3rem !important; } | |
.mx-lg-8 { | |
margin-right: 3rem !important; | |
margin-left: 3rem !important; } | |
.my-lg-8 { | |
margin-top: 3rem !important; | |
margin-bottom: 3rem !important; } | |
.mxn-lg-8 { | |
margin-right: -3rem !important; | |
margin-left: -3rem !important; } } | |
@media (min-width: 66.5rem) { | |
.m-lg-9 { | |
margin: 3.5rem !important; } | |
.mt-lg-9 { | |
margin-top: 3.5rem !important; } | |
.mr-lg-9 { | |
margin-right: 3.5rem !important; } | |
.mb-lg-9 { | |
margin-bottom: 3.5rem !important; } | |
.ml-lg-9 { | |
margin-left: 3.5rem !important; } | |
.mx-lg-9 { | |
margin-right: 3.5rem !important; | |
margin-left: 3.5rem !important; } | |
.my-lg-9 { | |
margin-top: 3.5rem !important; | |
margin-bottom: 3.5rem !important; } | |
.mxn-lg-9 { | |
margin-right: -3.5rem !important; | |
margin-left: -3.5rem !important; } } | |
@media (min-width: 66.5rem) { | |
.m-lg-10 { | |
margin: 4rem !important; } | |
.mt-lg-10 { | |
margin-top: 4rem !important; } | |
.mr-lg-10 { | |
margin-right: 4rem !important; } | |
.mb-lg-10 { | |
margin-bottom: 4rem !important; } | |
.ml-lg-10 { | |
margin-left: 4rem !important; } | |
.mx-lg-10 { | |
margin-right: 4rem !important; | |
margin-left: 4rem !important; } | |
.my-lg-10 { | |
margin-top: 4rem !important; | |
margin-bottom: 4rem !important; } | |
.mxn-lg-10 { | |
margin-right: -4rem !important; | |
margin-left: -4rem !important; } } | |
@media (min-width: 87.5rem) { | |
.m-xl-0 { | |
margin: 0 !important; } | |
.mt-xl-0 { | |
margin-top: 0 !important; } | |
.mr-xl-0 { | |
margin-right: 0 !important; } | |
.mb-xl-0 { | |
margin-bottom: 0 !important; } | |
.ml-xl-0 { | |
margin-left: 0 !important; } | |
.mx-xl-0 { | |
margin-right: 0 !important; | |
margin-left: 0 !important; } | |
.my-xl-0 { | |
margin-top: 0 !important; | |
margin-bottom: 0 !important; } | |
.mxn-xl-0 { | |
margin-right: -0 !important; | |
margin-left: -0 !important; } } | |
@media (min-width: 87.5rem) { | |
.m-xl-1 { | |
margin: 0.25rem !important; } | |
.mt-xl-1 { | |
margin-top: 0.25rem !important; } | |
.mr-xl-1 { | |
margin-right: 0.25rem !important; } | |
.mb-xl-1 { | |
margin-bottom: 0.25rem !important; } | |
.ml-xl-1 { | |
margin-left: 0.25rem !important; } | |
.mx-xl-1 { | |
margin-right: 0.25rem !important; | |
margin-left: 0.25rem !important; } | |
.my-xl-1 { | |
margin-top: 0.25rem !important; | |
margin-bottom: 0.25rem !important; } | |
.mxn-xl-1 { | |
margin-right: -0.25rem !important; | |
margin-left: -0.25rem !important; } } | |
@media (min-width: 87.5rem) { | |
.m-xl-2 { | |
margin: 0.5rem !important; } | |
.mt-xl-2 { | |
margin-top: 0.5rem !important; } | |
.mr-xl-2 { | |
margin-right: 0.5rem !important; } | |
.mb-xl-2 { | |
margin-bottom: 0.5rem !important; } | |
.ml-xl-2 { | |
margin-left: 0.5rem !important; } | |
.mx-xl-2 { | |
margin-right: 0.5rem !important; | |
margin-left: 0.5rem !important; } | |
.my-xl-2 { | |
margin-top: 0.5rem !important; | |
margin-bottom: 0.5rem !important; } | |
.mxn-xl-2 { | |
margin-right: -0.5rem !important; | |
margin-left: -0.5rem !important; } } | |
@media (min-width: 87.5rem) { | |
.m-xl-3 { | |
margin: 0.75rem !important; } | |
.mt-xl-3 { | |
margin-top: 0.75rem !important; } | |
.mr-xl-3 { | |
margin-right: 0.75rem !important; } | |
.mb-xl-3 { | |
margin-bottom: 0.75rem !important; } | |
.ml-xl-3 { | |
margin-left: 0.75rem !important; } | |
.mx-xl-3 { | |
margin-right: 0.75rem !important; | |
margin-left: 0.75rem !important; } | |
.my-xl-3 { | |
margin-top: 0.75rem !important; | |
margin-bottom: 0.75rem !important; } | |
.mxn-xl-3 { | |
margin-right: -0.75rem !important; | |
margin-left: -0.75rem !important; } } | |
@media (min-width: 87.5rem) { | |
.m-xl-4 { | |
margin: 1rem !important; } | |
.mt-xl-4 { | |
margin-top: 1rem !important; } | |
.mr-xl-4 { | |
margin-right: 1rem !important; } | |
.mb-xl-4 { | |
margin-bottom: 1rem !important; } | |
.ml-xl-4 { | |
margin-left: 1rem !important; } | |
.mx-xl-4 { | |
margin-right: 1rem !important; | |
margin-left: 1rem !important; } | |
.my-xl-4 { | |
margin-top: 1rem !important; | |
margin-bottom: 1rem !important; } | |
.mxn-xl-4 { | |
margin-right: -1rem !important; | |
margin-left: -1rem !important; } } | |
@media (min-width: 87.5rem) { | |
.m-xl-5 { | |
margin: 1.5rem !important; } | |
.mt-xl-5 { | |
margin-top: 1.5rem !important; } | |
.mr-xl-5 { | |
margin-right: 1.5rem !important; } | |
.mb-xl-5 { | |
margin-bottom: 1.5rem !important; } | |
.ml-xl-5 { | |
margin-left: 1.5rem !important; } | |
.mx-xl-5 { | |
margin-right: 1.5rem !important; | |
margin-left: 1.5rem !important; } | |
.my-xl-5 { | |
margin-top: 1.5rem !important; | |
margin-bottom: 1.5rem !important; } | |
.mxn-xl-5 { | |
margin-right: -1.5rem !important; | |
margin-left: -1.5rem !important; } } | |
@media (min-width: 87.5rem) { | |
.m-xl-6 { | |
margin: 2rem !important; } | |
.mt-xl-6 { | |
margin-top: 2rem !important; } | |
.mr-xl-6 { | |
margin-right: 2rem !important; } | |
.mb-xl-6 { | |
margin-bottom: 2rem !important; } | |
.ml-xl-6 { | |
margin-left: 2rem !important; } | |
.mx-xl-6 { | |
margin-right: 2rem !important; | |
margin-left: 2rem !important; } | |
.my-xl-6 { | |
margin-top: 2rem !important; | |
margin-bottom: 2rem !important; } | |
.mxn-xl-6 { | |
margin-right: -2rem !important; | |
margin-left: -2rem !important; } } | |
@media (min-width: 87.5rem) { | |
.m-xl-7 { | |
margin: 2.5rem !important; } | |
.mt-xl-7 { | |
margin-top: 2.5rem !important; } | |
.mr-xl-7 { | |
margin-right: 2.5rem !important; } | |
.mb-xl-7 { | |
margin-bottom: 2.5rem !important; } | |
.ml-xl-7 { | |
margin-left: 2.5rem !important; } | |
.mx-xl-7 { | |
margin-right: 2.5rem !important; | |
margin-left: 2.5rem !important; } | |
.my-xl-7 { | |
margin-top: 2.5rem !important; | |
margin-bottom: 2.5rem !important; } | |
.mxn-xl-7 { | |
margin-right: -2.5rem !important; | |
margin-left: -2.5rem !important; } } | |
@media (min-width: 87.5rem) { | |
.m-xl-8 { | |
margin: 3rem !important; } | |
.mt-xl-8 { | |
margin-top: 3rem !important; } | |
.mr-xl-8 { | |
margin-right: 3rem !important; } | |
.mb-xl-8 { | |
margin-bottom: 3rem !important; } | |
.ml-xl-8 { | |
margin-left: 3rem !important; } | |
.mx-xl-8 { | |
margin-right: 3rem !important; | |
margin-left: 3rem !important; } | |
.my-xl-8 { | |
margin-top: 3rem !important; | |
margin-bottom: 3rem !important; } | |
.mxn-xl-8 { | |
margin-right: -3rem !important; | |
margin-left: -3rem !important; } } | |
@media (min-width: 87.5rem) { | |
.m-xl-9 { | |
margin: 3.5rem !important; } | |
.mt-xl-9 { | |
margin-top: 3.5rem !important; } | |
.mr-xl-9 { | |
margin-right: 3.5rem !important; } | |
.mb-xl-9 { | |
margin-bottom: 3.5rem !important; } | |
.ml-xl-9 { | |
margin-left: 3.5rem !important; } | |
.mx-xl-9 { | |
margin-right: 3.5rem !important; | |
margin-left: 3.5rem !important; } | |
.my-xl-9 { | |
margin-top: 3.5rem !important; | |
margin-bottom: 3.5rem !important; } | |
.mxn-xl-9 { | |
margin-right: -3.5rem !important; | |
margin-left: -3.5rem !important; } } | |
@media (min-width: 87.5rem) { | |
.m-xl-10 { | |
margin: 4rem !important; } | |
.mt-xl-10 { | |
margin-top: 4rem !important; } | |
.mr-xl-10 { | |
margin-right: 4rem !important; } | |
.mb-xl-10 { | |
margin-bottom: 4rem !important; } | |
.ml-xl-10 { | |
margin-left: 4rem !important; } | |
.mx-xl-10 { | |
margin-right: 4rem !important; | |
margin-left: 4rem !important; } | |
.my-xl-10 { | |
margin-top: 4rem !important; | |
margin-bottom: 4rem !important; } | |
.mxn-xl-10 { | |
margin-right: -4rem !important; | |
margin-left: -4rem !important; } } | |
.p-0 { | |
padding: 0 !important; } | |
.pt-0 { | |
padding-top: 0 !important; } | |
.pr-0 { | |
padding-right: 0 !important; } | |
.pb-0 { | |
padding-bottom: 0 !important; } | |
.pl-0 { | |
padding-left: 0 !important; } | |
.px-0 { | |
padding-right: 0 !important; | |
padding-left: 0 !important; } | |
.py-0 { | |
padding-top: 0 !important; | |
padding-bottom: 0 !important; } | |
.p-1 { | |
padding: 0.25rem !important; } | |
.pt-1 { | |
padding-top: 0.25rem !important; } | |
.pr-1 { | |
padding-right: 0.25rem !important; } | |
.pb-1 { | |
padding-bottom: 0.25rem !important; } | |
.pl-1 { | |
padding-left: 0.25rem !important; } | |
.px-1 { | |
padding-right: 0.25rem !important; | |
padding-left: 0.25rem !important; } | |
.py-1 { | |
padding-top: 0.25rem !important; | |
padding-bottom: 0.25rem !important; } | |
.p-2 { | |
padding: 0.5rem !important; } | |
.pt-2 { | |
padding-top: 0.5rem !important; } | |
.pr-2 { | |
padding-right: 0.5rem !important; } | |
.pb-2 { | |
padding-bottom: 0.5rem !important; } | |
.pl-2 { | |
padding-left: 0.5rem !important; } | |
.px-2 { | |
padding-right: 0.5rem !important; | |
padding-left: 0.5rem !important; } | |
.py-2 { | |
padding-top: 0.5rem !important; | |
padding-bottom: 0.5rem !important; } | |
.p-3 { | |
padding: 0.75rem !important; } | |
.pt-3 { | |
padding-top: 0.75rem !important; } | |
.pr-3 { | |
padding-right: 0.75rem !important; } | |
.pb-3 { | |
padding-bottom: 0.75rem !important; } | |
.pl-3 { | |
padding-left: 0.75rem !important; } | |
.px-3 { | |
padding-right: 0.75rem !important; | |
padding-left: 0.75rem !important; } | |
.py-3 { | |
padding-top: 0.75rem !important; | |
padding-bottom: 0.75rem !important; } | |
.p-4 { | |
padding: 1rem !important; } | |
.pt-4 { | |
padding-top: 1rem !important; } | |
.pr-4 { | |
padding-right: 1rem !important; } | |
.pb-4 { | |
padding-bottom: 1rem !important; } | |
.pl-4 { | |
padding-left: 1rem !important; } | |
.px-4 { | |
padding-right: 1rem !important; | |
padding-left: 1rem !important; } | |
.py-4 { | |
padding-top: 1rem !important; | |
padding-bottom: 1rem !important; } | |
.p-5 { | |
padding: 1.5rem !important; } | |
.pt-5 { | |
padding-top: 1.5rem !important; } | |
.pr-5 { | |
padding-right: 1.5rem !important; } | |
.pb-5 { | |
padding-bottom: 1.5rem !important; } | |
.pl-5 { | |
padding-left: 1.5rem !important; } | |
.px-5 { | |
padding-right: 1.5rem !important; | |
padding-left: 1.5rem !important; } | |
.py-5 { | |
padding-top: 1.5rem !important; | |
padding-bottom: 1.5rem !important; } | |
.p-6 { | |
padding: 2rem !important; } | |
.pt-6 { | |
padding-top: 2rem !important; } | |
.pr-6 { | |
padding-right: 2rem !important; } | |
.pb-6 { | |
padding-bottom: 2rem !important; } | |
.pl-6 { | |
padding-left: 2rem !important; } | |
.px-6 { | |
padding-right: 2rem !important; | |
padding-left: 2rem !important; } | |
.py-6 { | |
padding-top: 2rem !important; | |
padding-bottom: 2rem !important; } | |
.p-7 { | |
padding: 2.5rem !important; } | |
.pt-7 { | |
padding-top: 2.5rem !important; } | |
.pr-7 { | |
padding-right: 2.5rem !important; } | |
.pb-7 { | |
padding-bottom: 2.5rem !important; } | |
.pl-7 { | |
padding-left: 2.5rem !important; } | |
.px-7 { | |
padding-right: 2.5rem !important; | |
padding-left: 2.5rem !important; } | |
.py-7 { | |
padding-top: 2.5rem !important; | |
padding-bottom: 2.5rem !important; } | |
.p-8 { | |
padding: 3rem !important; } | |
.pt-8 { | |
padding-top: 3rem !important; } | |
.pr-8 { | |
padding-right: 3rem !important; } | |
.pb-8 { | |
padding-bottom: 3rem !important; } | |
.pl-8 { | |
padding-left: 3rem !important; } | |
.px-8 { | |
padding-right: 3rem !important; | |
padding-left: 3rem !important; } | |
.py-8 { | |
padding-top: 3rem !important; | |
padding-bottom: 3rem !important; } | |
.p-9 { | |
padding: 3.5rem !important; } | |
.pt-9 { | |
padding-top: 3.5rem !important; } | |
.pr-9 { | |
padding-right: 3.5rem !important; } | |
.pb-9 { | |
padding-bottom: 3.5rem !important; } | |
.pl-9 { | |
padding-left: 3.5rem !important; } | |
.px-9 { | |
padding-right: 3.5rem !important; | |
padding-left: 3.5rem !important; } | |
.py-9 { | |
padding-top: 3.5rem !important; | |
padding-bottom: 3.5rem !important; } | |
.p-10 { | |
padding: 4rem !important; } | |
.pt-10 { | |
padding-top: 4rem !important; } | |
.pr-10 { | |
padding-right: 4rem !important; } | |
.pb-10 { | |
padding-bottom: 4rem !important; } | |
.pl-10 { | |
padding-left: 4rem !important; } | |
.px-10 { | |
padding-right: 4rem !important; | |
padding-left: 4rem !important; } | |
.py-10 { | |
padding-top: 4rem !important; | |
padding-bottom: 4rem !important; } | |
@media (min-width: 20rem) { | |
.p-xs-0 { | |
padding: 0 !important; } | |
.pt-xs-0 { | |
padding-top: 0 !important; } | |
.pr-xs-0 { | |
padding-right: 0 !important; } | |
.pb-xs-0 { | |
padding-bottom: 0 !important; } | |
.pl-xs-0 { | |
padding-left: 0 !important; } | |
.px-xs-0 { | |
padding-right: 0 !important; | |
padding-left: 0 !important; } | |
.py-xs-0 { | |
padding-top: 0 !important; | |
padding-bottom: 0 !important; } | |
.p-xs-1 { | |
padding: 0.25rem !important; } | |
.pt-xs-1 { | |
padding-top: 0.25rem !important; } | |
.pr-xs-1 { | |
padding-right: 0.25rem !important; } | |
.pb-xs-1 { | |
padding-bottom: 0.25rem !important; } | |
.pl-xs-1 { | |
padding-left: 0.25rem !important; } | |
.px-xs-1 { | |
padding-right: 0.25rem !important; | |
padding-left: 0.25rem !important; } | |
.py-xs-1 { | |
padding-top: 0.25rem !important; | |
padding-bottom: 0.25rem !important; } | |
.p-xs-2 { | |
padding: 0.5rem !important; } | |
.pt-xs-2 { | |
padding-top: 0.5rem !important; } | |
.pr-xs-2 { | |
padding-right: 0.5rem !important; } | |
.pb-xs-2 { | |
padding-bottom: 0.5rem !important; } | |
.pl-xs-2 { | |
padding-left: 0.5rem !important; } | |
.px-xs-2 { | |
padding-right: 0.5rem !important; | |
padding-left: 0.5rem !important; } | |
.py-xs-2 { | |
padding-top: 0.5rem !important; | |
padding-bottom: 0.5rem !important; } | |
.p-xs-3 { | |
padding: 0.75rem !important; } | |
.pt-xs-3 { | |
padding-top: 0.75rem !important; } | |
.pr-xs-3 { | |
padding-right: 0.75rem !important; } | |
.pb-xs-3 { | |
padding-bottom: 0.75rem !important; } | |
.pl-xs-3 { | |
padding-left: 0.75rem !important; } | |
.px-xs-3 { | |
padding-right: 0.75rem !important; | |
padding-left: 0.75rem !important; } | |
.py-xs-3 { | |
padding-top: 0.75rem !important; | |
padding-bottom: 0.75rem !important; } | |
.p-xs-4 { | |
padding: 1rem !important; } | |
.pt-xs-4 { | |
padding-top: 1rem !important; } | |
.pr-xs-4 { | |
padding-right: 1rem !important; } | |
.pb-xs-4 { | |
padding-bottom: 1rem !important; } | |
.pl-xs-4 { | |
padding-left: 1rem !important; } | |
.px-xs-4 { | |
padding-right: 1rem !important; | |
padding-left: 1rem !important; } | |
.py-xs-4 { | |
padding-top: 1rem !important; | |
padding-bottom: 1rem !important; } | |
.p-xs-5 { | |
padding: 1.5rem !important; } | |
.pt-xs-5 { | |
padding-top: 1.5rem !important; } | |
.pr-xs-5 { | |
padding-right: 1.5rem !important; } | |
.pb-xs-5 { | |
padding-bottom: 1.5rem !important; } | |
.pl-xs-5 { | |
padding-left: 1.5rem !important; } | |
.px-xs-5 { | |
padding-right: 1.5rem !important; | |
padding-left: 1.5rem !important; } | |
.py-xs-5 { | |
padding-top: 1.5rem !important; | |
padding-bottom: 1.5rem !important; } | |
.p-xs-6 { | |
padding: 2rem !important; } | |
.pt-xs-6 { | |
padding-top: 2rem !important; } | |
.pr-xs-6 { | |
padding-right: 2rem !important; } | |
.pb-xs-6 { | |
padding-bottom: 2rem !important; } | |
.pl-xs-6 { | |
padding-left: 2rem !important; } | |
.px-xs-6 { | |
padding-right: 2rem !important; | |
padding-left: 2rem !important; } | |
.py-xs-6 { | |
padding-top: 2rem !important; | |
padding-bottom: 2rem !important; } | |
.p-xs-7 { | |
padding: 2.5rem !important; } | |
.pt-xs-7 { | |
padding-top: 2.5rem !important; } | |
.pr-xs-7 { | |
padding-right: 2.5rem !important; } | |
.pb-xs-7 { | |
padding-bottom: 2.5rem !important; } | |
.pl-xs-7 { | |
padding-left: 2.5rem !important; } | |
.px-xs-7 { | |
padding-right: 2.5rem !important; | |
padding-left: 2.5rem !important; } | |
.py-xs-7 { | |
padding-top: 2.5rem !important; | |
padding-bottom: 2.5rem !important; } | |
.p-xs-8 { | |
padding: 3rem !important; } | |
.pt-xs-8 { | |
padding-top: 3rem !important; } | |
.pr-xs-8 { | |
padding-right: 3rem !important; } | |
.pb-xs-8 { | |
padding-bottom: 3rem !important; } | |
.pl-xs-8 { | |
padding-left: 3rem !important; } | |
.px-xs-8 { | |
padding-right: 3rem !important; | |
padding-left: 3rem !important; } | |
.py-xs-8 { | |
padding-top: 3rem !important; | |
padding-bottom: 3rem !important; } | |
.p-xs-9 { | |
padding: 3.5rem !important; } | |
.pt-xs-9 { | |
padding-top: 3.5rem !important; } | |
.pr-xs-9 { | |
padding-right: 3.5rem !important; } | |
.pb-xs-9 { | |
padding-bottom: 3.5rem !important; } | |
.pl-xs-9 { | |
padding-left: 3.5rem !important; } | |
.px-xs-9 { | |
padding-right: 3.5rem !important; | |
padding-left: 3.5rem !important; } | |
.py-xs-9 { | |
padding-top: 3.5rem !important; | |
padding-bottom: 3.5rem !important; } | |
.p-xs-10 { | |
padding: 4rem !important; } | |
.pt-xs-10 { | |
padding-top: 4rem !important; } | |
.pr-xs-10 { | |
padding-right: 4rem !important; } | |
.pb-xs-10 { | |
padding-bottom: 4rem !important; } | |
.pl-xs-10 { | |
padding-left: 4rem !important; } | |
.px-xs-10 { | |
padding-right: 4rem !important; | |
padding-left: 4rem !important; } | |
.py-xs-10 { | |
padding-top: 4rem !important; | |
padding-bottom: 4rem !important; } } | |
@media (min-width: 31.25rem) { | |
.p-sm-0 { | |
padding: 0 !important; } | |
.pt-sm-0 { | |
padding-top: 0 !important; } | |
.pr-sm-0 { | |
padding-right: 0 !important; } | |
.pb-sm-0 { | |
padding-bottom: 0 !important; } | |
.pl-sm-0 { | |
padding-left: 0 !important; } | |
.px-sm-0 { | |
padding-right: 0 !important; | |
padding-left: 0 !important; } | |
.py-sm-0 { | |
padding-top: 0 !important; | |
padding-bottom: 0 !important; } | |
.p-sm-1 { | |
padding: 0.25rem !important; } | |
.pt-sm-1 { | |
padding-top: 0.25rem !important; } | |
.pr-sm-1 { | |
padding-right: 0.25rem !important; } | |
.pb-sm-1 { | |
padding-bottom: 0.25rem !important; } | |
.pl-sm-1 { | |
padding-left: 0.25rem !important; } | |
.px-sm-1 { | |
padding-right: 0.25rem !important; | |
padding-left: 0.25rem !important; } | |
.py-sm-1 { | |
padding-top: 0.25rem !important; | |
padding-bottom: 0.25rem !important; } | |
.p-sm-2 { | |
padding: 0.5rem !important; } | |
.pt-sm-2 { | |
padding-top: 0.5rem !important; } | |
.pr-sm-2 { | |
padding-right: 0.5rem !important; } | |
.pb-sm-2 { | |
padding-bottom: 0.5rem !important; } | |
.pl-sm-2 { | |
padding-left: 0.5rem !important; } | |
.px-sm-2 { | |
padding-right: 0.5rem !important; | |
padding-left: 0.5rem !important; } | |
.py-sm-2 { | |
padding-top: 0.5rem !important; | |
padding-bottom: 0.5rem !important; } | |
.p-sm-3 { | |
padding: 0.75rem !important; } | |
.pt-sm-3 { | |
padding-top: 0.75rem !important; } | |
.pr-sm-3 { | |
padding-right: 0.75rem !important; } | |
.pb-sm-3 { | |
padding-bottom: 0.75rem !important; } | |
.pl-sm-3 { | |
padding-left: 0.75rem !important; } | |
.px-sm-3 { | |
padding-right: 0.75rem !important; | |
padding-left: 0.75rem !important; } | |
.py-sm-3 { | |
padding-top: 0.75rem !important; | |
padding-bottom: 0.75rem !important; } | |
.p-sm-4 { | |
padding: 1rem !important; } | |
.pt-sm-4 { | |
padding-top: 1rem !important; } | |
.pr-sm-4 { | |
padding-right: 1rem !important; } | |
.pb-sm-4 { | |
padding-bottom: 1rem !important; } | |
.pl-sm-4 { | |
padding-left: 1rem !important; } | |
.px-sm-4 { | |
padding-right: 1rem !important; | |
padding-left: 1rem !important; } | |
.py-sm-4 { | |
padding-top: 1rem !important; | |
padding-bottom: 1rem !important; } | |
.p-sm-5 { | |
padding: 1.5rem !important; } | |
.pt-sm-5 { | |
padding-top: 1.5rem !important; } | |
.pr-sm-5 { | |
padding-right: 1.5rem !important; } | |
.pb-sm-5 { | |
padding-bottom: 1.5rem !important; } | |
.pl-sm-5 { | |
padding-left: 1.5rem !important; } | |
.px-sm-5 { | |
padding-right: 1.5rem !important; | |
padding-left: 1.5rem !important; } | |
.py-sm-5 { | |
padding-top: 1.5rem !important; | |
padding-bottom: 1.5rem !important; } | |
.p-sm-6 { | |
padding: 2rem !important; } | |
.pt-sm-6 { | |
padding-top: 2rem !important; } | |
.pr-sm-6 { | |
padding-right: 2rem !important; } | |
.pb-sm-6 { | |
padding-bottom: 2rem !important; } | |
.pl-sm-6 { | |
padding-left: 2rem !important; } | |
.px-sm-6 { | |
padding-right: 2rem !important; | |
padding-left: 2rem !important; } | |
.py-sm-6 { | |
padding-top: 2rem !important; | |
padding-bottom: 2rem !important; } | |
.p-sm-7 { | |
padding: 2.5rem !important; } | |
.pt-sm-7 { | |
padding-top: 2.5rem !important; } | |
.pr-sm-7 { | |
padding-right: 2.5rem !important; } | |
.pb-sm-7 { | |
padding-bottom: 2.5rem !important; } | |
.pl-sm-7 { | |
padding-left: 2.5rem !important; } | |
.px-sm-7 { | |
padding-right: 2.5rem !important; | |
padding-left: 2.5rem !important; } | |
.py-sm-7 { | |
padding-top: 2.5rem !important; | |
padding-bottom: 2.5rem !important; } | |
.p-sm-8 { | |
padding: 3rem !important; } | |
.pt-sm-8 { | |
padding-top: 3rem !important; } | |
.pr-sm-8 { | |
padding-right: 3rem !important; } | |
.pb-sm-8 { | |
padding-bottom: 3rem !important; } | |
.pl-sm-8 { | |
padding-left: 3rem !important; } | |
.px-sm-8 { | |
padding-right: 3rem !important; | |
padding-left: 3rem !important; } | |
.py-sm-8 { | |
padding-top: 3rem !important; | |
padding-bottom: 3rem !important; } | |
.p-sm-9 { | |
padding: 3.5rem !important; } | |
.pt-sm-9 { | |
padding-top: 3.5rem !important; } | |
.pr-sm-9 { | |
padding-right: 3.5rem !important; } | |
.pb-sm-9 { | |
padding-bottom: 3.5rem !important; } | |
.pl-sm-9 { | |
padding-left: 3.5rem !important; } | |
.px-sm-9 { | |
padding-right: 3.5rem !important; | |
padding-left: 3.5rem !important; } | |
.py-sm-9 { | |
padding-top: 3.5rem !important; | |
padding-bottom: 3.5rem !important; } | |
.p-sm-10 { | |
padding: 4rem !important; } | |
.pt-sm-10 { | |
padding-top: 4rem !important; } | |
.pr-sm-10 { | |
padding-right: 4rem !important; } | |
.pb-sm-10 { | |
padding-bottom: 4rem !important; } | |
.pl-sm-10 { | |
padding-left: 4rem !important; } | |
.px-sm-10 { | |
padding-right: 4rem !important; | |
padding-left: 4rem !important; } | |
.py-sm-10 { | |
padding-top: 4rem !important; | |
padding-bottom: 4rem !important; } } | |
@media (min-width: 50rem) { | |
.p-md-0 { | |
padding: 0 !important; } | |
.pt-md-0 { | |
padding-top: 0 !important; } | |
.pr-md-0 { | |
padding-right: 0 !important; } | |
.pb-md-0 { | |
padding-bottom: 0 !important; } | |
.pl-md-0 { | |
padding-left: 0 !important; } | |
.px-md-0 { | |
padding-right: 0 !important; | |
padding-left: 0 !important; } | |
.py-md-0 { | |
padding-top: 0 !important; | |
padding-bottom: 0 !important; } | |
.p-md-1 { | |
padding: 0.25rem !important; } | |
.pt-md-1 { | |
padding-top: 0.25rem !important; } | |
.pr-md-1 { | |
padding-right: 0.25rem !important; } | |
.pb-md-1 { | |
padding-bottom: 0.25rem !important; } | |
.pl-md-1 { | |
padding-left: 0.25rem !important; } | |
.px-md-1 { | |
padding-right: 0.25rem !important; | |
padding-left: 0.25rem !important; } | |
.py-md-1 { | |
padding-top: 0.25rem !important; | |
padding-bottom: 0.25rem !important; } | |
.p-md-2 { | |
padding: 0.5rem !important; } | |
.pt-md-2 { | |
padding-top: 0.5rem !important; } | |
.pr-md-2 { | |
padding-right: 0.5rem !important; } | |
.pb-md-2 { | |
padding-bottom: 0.5rem !important; } | |
.pl-md-2 { | |
padding-left: 0.5rem !important; } | |
.px-md-2 { | |
padding-right: 0.5rem !important; | |
padding-left: 0.5rem !important; } | |
.py-md-2 { | |
padding-top: 0.5rem !important; | |
padding-bottom: 0.5rem !important; } | |
.p-md-3 { | |
padding: 0.75rem !important; } | |
.pt-md-3 { | |
padding-top: 0.75rem !important; } | |
.pr-md-3 { | |
padding-right: 0.75rem !important; } | |
.pb-md-3 { | |
padding-bottom: 0.75rem !important; } | |
.pl-md-3 { | |
padding-left: 0.75rem !important; } | |
.px-md-3 { | |
padding-right: 0.75rem !important; | |
padding-left: 0.75rem !important; } | |
.py-md-3 { | |
padding-top: 0.75rem !important; | |
padding-bottom: 0.75rem !important; } | |
.p-md-4 { | |
padding: 1rem !important; } | |
.pt-md-4 { | |
padding-top: 1rem !important; } | |
.pr-md-4 { | |
padding-right: 1rem !important; } | |
.pb-md-4 { | |
padding-bottom: 1rem !important; } | |
.pl-md-4 { | |
padding-left: 1rem !important; } | |
.px-md-4 { | |
padding-right: 1rem !important; | |
padding-left: 1rem !important; } | |
.py-md-4 { | |
padding-top: 1rem !important; | |
padding-bottom: 1rem !important; } | |
.p-md-5 { | |
padding: 1.5rem !important; } | |
.pt-md-5 { | |
padding-top: 1.5rem !important; } | |
.pr-md-5 { | |
padding-right: 1.5rem !important; } | |
.pb-md-5 { | |
padding-bottom: 1.5rem !important; } | |
.pl-md-5 { | |
padding-left: 1.5rem !important; } | |
.px-md-5 { | |
padding-right: 1.5rem !important; | |
padding-left: 1.5rem !important; } | |
.py-md-5 { | |
padding-top: 1.5rem !important; | |
padding-bottom: 1.5rem !important; } | |
.p-md-6 { | |
padding: 2rem !important; } | |
.pt-md-6 { | |
padding-top: 2rem !important; } | |
.pr-md-6 { | |
padding-right: 2rem !important; } | |
.pb-md-6 { | |
padding-bottom: 2rem !important; } | |
.pl-md-6 { | |
padding-left: 2rem !important; } | |
.px-md-6 { | |
padding-right: 2rem !important; | |
padding-left: 2rem !important; } | |
.py-md-6 { | |
padding-top: 2rem !important; | |
padding-bottom: 2rem !important; } | |
.p-md-7 { | |
padding: 2.5rem !important; } | |
.pt-md-7 { | |
padding-top: 2.5rem !important; } | |
.pr-md-7 { | |
padding-right: 2.5rem !important; } | |
.pb-md-7 { | |
padding-bottom: 2.5rem !important; } | |
.pl-md-7 { | |
padding-left: 2.5rem !important; } | |
.px-md-7 { | |
padding-right: 2.5rem !important; | |
padding-left: 2.5rem !important; } | |
.py-md-7 { | |
padding-top: 2.5rem !important; | |
padding-bottom: 2.5rem !important; } | |
.p-md-8 { | |
padding: 3rem !important; } | |
.pt-md-8 { | |
padding-top: 3rem !important; } | |
.pr-md-8 { | |
padding-right: 3rem !important; } | |
.pb-md-8 { | |
padding-bottom: 3rem !important; } | |
.pl-md-8 { | |
padding-left: 3rem !important; } | |
.px-md-8 { | |
padding-right: 3rem !important; | |
padding-left: 3rem !important; } | |
.py-md-8 { | |
padding-top: 3rem !important; | |
padding-bottom: 3rem !important; } | |
.p-md-9 { | |
padding: 3.5rem !important; } | |
.pt-md-9 { | |
padding-top: 3.5rem !important; } | |
.pr-md-9 { | |
padding-right: 3.5rem !important; } | |
.pb-md-9 { | |
padding-bottom: 3.5rem !important; } | |
.pl-md-9 { | |
padding-left: 3.5rem !important; } | |
.px-md-9 { | |
padding-right: 3.5rem !important; | |
padding-left: 3.5rem !important; } | |
.py-md-9 { | |
padding-top: 3.5rem !important; | |
padding-bottom: 3.5rem !important; } | |
.p-md-10 { | |
padding: 4rem !important; } | |
.pt-md-10 { | |
padding-top: 4rem !important; } | |
.pr-md-10 { | |
padding-right: 4rem !important; } | |
.pb-md-10 { | |
padding-bottom: 4rem !important; } | |
.pl-md-10 { | |
padding-left: 4rem !important; } | |
.px-md-10 { | |
padding-right: 4rem !important; | |
padding-left: 4rem !important; } | |
.py-md-10 { | |
padding-top: 4rem !important; | |
padding-bottom: 4rem !important; } } | |
@media (min-width: 66.5rem) { | |
.p-lg-0 { | |
padding: 0 !important; } | |
.pt-lg-0 { | |
padding-top: 0 !important; } | |
.pr-lg-0 { | |
padding-right: 0 !important; } | |
.pb-lg-0 { | |
padding-bottom: 0 !important; } | |
.pl-lg-0 { | |
padding-left: 0 !important; } | |
.px-lg-0 { | |
padding-right: 0 !important; | |
padding-left: 0 !important; } | |
.py-lg-0 { | |
padding-top: 0 !important; | |
padding-bottom: 0 !important; } | |
.p-lg-1 { | |
padding: 0.25rem !important; } | |
.pt-lg-1 { | |
padding-top: 0.25rem !important; } | |
.pr-lg-1 { | |
padding-right: 0.25rem !important; } | |
.pb-lg-1 { | |
padding-bottom: 0.25rem !important; } | |
.pl-lg-1 { | |
padding-left: 0.25rem !important; } | |
.px-lg-1 { | |
padding-right: 0.25rem !important; | |
padding-left: 0.25rem !important; } | |
.py-lg-1 { | |
padding-top: 0.25rem !important; | |
padding-bottom: 0.25rem !important; } | |
.p-lg-2 { | |
padding: 0.5rem !important; } | |
.pt-lg-2 { | |
padding-top: 0.5rem !important; } | |
.pr-lg-2 { | |
padding-right: 0.5rem !important; } | |
.pb-lg-2 { | |
padding-bottom: 0.5rem !important; } | |
.pl-lg-2 { | |
padding-left: 0.5rem !important; } | |
.px-lg-2 { | |
padding-right: 0.5rem !important; | |
padding-left: 0.5rem !important; } | |
.py-lg-2 { | |
padding-top: 0.5rem !important; | |
padding-bottom: 0.5rem !important; } | |
.p-lg-3 { | |
padding: 0.75rem !important; } | |
.pt-lg-3 { | |
padding-top: 0.75rem !important; } | |
.pr-lg-3 { | |
padding-right: 0.75rem !important; } | |
.pb-lg-3 { | |
padding-bottom: 0.75rem !important; } | |
.pl-lg-3 { | |
padding-left: 0.75rem !important; } | |
.px-lg-3 { | |
padding-right: 0.75rem !important; | |
padding-left: 0.75rem !important; } | |
.py-lg-3 { | |
padding-top: 0.75rem !important; | |
padding-bottom: 0.75rem !important; } | |
.p-lg-4 { | |
padding: 1rem !important; } | |
.pt-lg-4 { | |
padding-top: 1rem !important; } | |
.pr-lg-4 { | |
padding-right: 1rem !important; } | |
.pb-lg-4 { | |
padding-bottom: 1rem !important; } | |
.pl-lg-4 { | |
padding-left: 1rem !important; } | |
.px-lg-4 { | |
padding-right: 1rem !important; | |
padding-left: 1rem !important; } | |
.py-lg-4 { | |
padding-top: 1rem !important; | |
padding-bottom: 1rem !important; } | |
.p-lg-5 { | |
padding: 1.5rem !important; } | |
.pt-lg-5 { | |
padding-top: 1.5rem !important; } | |
.pr-lg-5 { | |
padding-right: 1.5rem !important; } | |
.pb-lg-5 { | |
padding-bottom: 1.5rem !important; } | |
.pl-lg-5 { | |
padding-left: 1.5rem !important; } | |
.px-lg-5 { | |
padding-right: 1.5rem !important; | |
padding-left: 1.5rem !important; } | |
.py-lg-5 { | |
padding-top: 1.5rem !important; | |
padding-bottom: 1.5rem !important; } | |
.p-lg-6 { | |
padding: 2rem !important; } | |
.pt-lg-6 { | |
padding-top: 2rem !important; } | |
.pr-lg-6 { | |
padding-right: 2rem !important; } | |
.pb-lg-6 { | |
padding-bottom: 2rem !important; } | |
.pl-lg-6 { | |
padding-left: 2rem !important; } | |
.px-lg-6 { | |
padding-right: 2rem !important; | |
padding-left: 2rem !important; } | |
.py-lg-6 { | |
padding-top: 2rem !important; | |
padding-bottom: 2rem !important; } | |
.p-lg-7 { | |
padding: 2.5rem !important; } | |
.pt-lg-7 { | |
padding-top: 2.5rem !important; } | |
.pr-lg-7 { | |
padding-right: 2.5rem !important; } | |
.pb-lg-7 { | |
padding-bottom: 2.5rem !important; } | |
.pl-lg-7 { | |
padding-left: 2.5rem !important; } | |
.px-lg-7 { | |
padding-right: 2.5rem !important; | |
padding-left: 2.5rem !important; } | |
.py-lg-7 { | |
padding-top: 2.5rem !important; | |
padding-bottom: 2.5rem !important; } | |
.p-lg-8 { | |
padding: 3rem !important; } | |
.pt-lg-8 { | |
padding-top: 3rem !important; } | |
.pr-lg-8 { | |
padding-right: 3rem !important; } | |
.pb-lg-8 { | |
padding-bottom: 3rem !important; } | |
.pl-lg-8 { | |
padding-left: 3rem !important; } | |
.px-lg-8 { | |
padding-right: 3rem !important; | |
padding-left: 3rem !important; } | |
.py-lg-8 { | |
padding-top: 3rem !important; | |
padding-bottom: 3rem !important; } | |
.p-lg-9 { | |
padding: 3.5rem !important; } | |
.pt-lg-9 { | |
padding-top: 3.5rem !important; } | |
.pr-lg-9 { | |
padding-right: 3.5rem !important; } | |
.pb-lg-9 { | |
padding-bottom: 3.5rem !important; } | |
.pl-lg-9 { | |
padding-left: 3.5rem !important; } | |
.px-lg-9 { | |
padding-right: 3.5rem !important; | |
padding-left: 3.5rem !important; } | |
.py-lg-9 { | |
padding-top: 3.5rem !important; | |
padding-bottom: 3.5rem !important; } | |
.p-lg-10 { | |
padding: 4rem !important; } | |
.pt-lg-10 { | |
padding-top: 4rem !important; } | |
.pr-lg-10 { | |
padding-right: 4rem !important; } | |
.pb-lg-10 { | |
padding-bottom: 4rem !important; } | |
.pl-lg-10 { | |
padding-left: 4rem !important; } | |
.px-lg-10 { | |
padding-right: 4rem !important; | |
padding-left: 4rem !important; } | |
.py-lg-10 { | |
padding-top: 4rem !important; | |
padding-bottom: 4rem !important; } } | |
@media (min-width: 87.5rem) { | |
.p-xl-0 { | |
padding: 0 !important; } | |
.pt-xl-0 { | |
padding-top: 0 !important; } | |
.pr-xl-0 { | |
padding-right: 0 !important; } | |
.pb-xl-0 { | |
padding-bottom: 0 !important; } | |
.pl-xl-0 { | |
padding-left: 0 !important; } | |
.px-xl-0 { | |
padding-right: 0 !important; | |
padding-left: 0 !important; } | |
.py-xl-0 { | |
padding-top: 0 !important; | |
padding-bottom: 0 !important; } | |
.p-xl-1 { | |
padding: 0.25rem !important; } | |
.pt-xl-1 { | |
padding-top: 0.25rem !important; } | |
.pr-xl-1 { | |
padding-right: 0.25rem !important; } | |
.pb-xl-1 { | |
padding-bottom: 0.25rem !important; } | |
.pl-xl-1 { | |
padding-left: 0.25rem !important; } | |
.px-xl-1 { | |
padding-right: 0.25rem !important; | |
padding-left: 0.25rem !important; } | |
.py-xl-1 { | |
padding-top: 0.25rem !important; | |
padding-bottom: 0.25rem !important; } | |
.p-xl-2 { | |
padding: 0.5rem !important; } | |
.pt-xl-2 { | |
padding-top: 0.5rem !important; } | |
.pr-xl-2 { | |
padding-right: 0.5rem !important; } | |
.pb-xl-2 { | |
padding-bottom: 0.5rem !important; } | |
.pl-xl-2 { | |
padding-left: 0.5rem !important; } | |
.px-xl-2 { | |
padding-right: 0.5rem !important; | |
padding-left: 0.5rem !important; } | |
.py-xl-2 { | |
padding-top: 0.5rem !important; | |
padding-bottom: 0.5rem !important; } | |
.p-xl-3 { | |
padding: 0.75rem !important; } | |
.pt-xl-3 { | |
padding-top: 0.75rem !important; } | |
.pr-xl-3 { | |
padding-right: 0.75rem !important; } | |
.pb-xl-3 { | |
padding-bottom: 0.75rem !important; } | |
.pl-xl-3 { | |
padding-left: 0.75rem !important; } | |
.px-xl-3 { | |
padding-right: 0.75rem !important; | |
padding-left: 0.75rem !important; } | |
.py-xl-3 { | |
padding-top: 0.75rem !important; | |
padding-bottom: 0.75rem !important; } | |
.p-xl-4 { | |
padding: 1rem !important; } | |
.pt-xl-4 { | |
padding-top: 1rem !important; } | |
.pr-xl-4 { | |
padding-right: 1rem !important; } | |
.pb-xl-4 { | |
padding-bottom: 1rem !important; } | |
.pl-xl-4 { | |
padding-left: 1rem !important; } | |
.px-xl-4 { | |
padding-right: 1rem !important; | |
padding-left: 1rem !important; } | |
.py-xl-4 { | |
padding-top: 1rem !important; | |
padding-bottom: 1rem !important; } | |
.p-xl-5 { | |
padding: 1.5rem !important; } | |
.pt-xl-5 { | |
padding-top: 1.5rem !important; } | |
.pr-xl-5 { | |
padding-right: 1.5rem !important; } | |
.pb-xl-5 { | |
padding-bottom: 1.5rem !important; } | |
.pl-xl-5 { | |
padding-left: 1.5rem !important; } | |
.px-xl-5 { | |
padding-right: 1.5rem !important; | |
padding-left: 1.5rem !important; } | |
.py-xl-5 { | |
padding-top: 1.5rem !important; | |
padding-bottom: 1.5rem !important; } | |
.p-xl-6 { | |
padding: 2rem !important; } | |
.pt-xl-6 { | |
padding-top: 2rem !important; } | |
.pr-xl-6 { | |
padding-right: 2rem !important; } | |
.pb-xl-6 { | |
padding-bottom: 2rem !important; } | |
.pl-xl-6 { | |
padding-left: 2rem !important; } | |
.px-xl-6 { | |
padding-right: 2rem !important; | |
padding-left: 2rem !important; } | |
.py-xl-6 { | |
padding-top: 2rem !important; | |
padding-bottom: 2rem !important; } | |
.p-xl-7 { | |
padding: 2.5rem !important; } | |
.pt-xl-7 { | |
padding-top: 2.5rem !important; } | |
.pr-xl-7 { | |
padding-right: 2.5rem !important; } | |
.pb-xl-7 { | |
padding-bottom: 2.5rem !important; } | |
.pl-xl-7 { | |
padding-left: 2.5rem !important; } | |
.px-xl-7 { | |
padding-right: 2.5rem !important; | |
padding-left: 2.5rem !important; } | |
.py-xl-7 { | |
padding-top: 2.5rem !important; | |
padding-bottom: 2.5rem !important; } | |
.p-xl-8 { | |
padding: 3rem !important; } | |
.pt-xl-8 { | |
padding-top: 3rem !important; } | |
.pr-xl-8 { | |
padding-right: 3rem !important; } | |
.pb-xl-8 { | |
padding-bottom: 3rem !important; } | |
.pl-xl-8 { | |
padding-left: 3rem !important; } | |
.px-xl-8 { | |
padding-right: 3rem !important; | |
padding-left: 3rem !important; } | |
.py-xl-8 { | |
padding-top: 3rem !important; | |
padding-bottom: 3rem !important; } | |
.p-xl-9 { | |
padding: 3.5rem !important; } | |
.pt-xl-9 { | |
padding-top: 3.5rem !important; } | |
.pr-xl-9 { | |
padding-right: 3.5rem !important; } | |
.pb-xl-9 { | |
padding-bottom: 3.5rem !important; } | |
.pl-xl-9 { | |
padding-left: 3.5rem !important; } | |
.px-xl-9 { | |
padding-right: 3.5rem !important; | |
padding-left: 3.5rem !important; } | |
.py-xl-9 { | |
padding-top: 3.5rem !important; | |
padding-bottom: 3.5rem !important; } | |
.p-xl-10 { | |
padding: 4rem !important; } | |
.pt-xl-10 { | |
padding-top: 4rem !important; } | |
.pr-xl-10 { | |
padding-right: 4rem !important; } | |
.pb-xl-10 { | |
padding-bottom: 4rem !important; } | |
.pl-xl-10 { | |
padding-left: 4rem !important; } | |
.px-xl-10 { | |
padding-right: 4rem !important; | |
padding-left: 4rem !important; } | |
.py-xl-10 { | |
padding-top: 4rem !important; | |
padding-bottom: 4rem !important; } } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment