mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
3202 lines
47 KiB
CSS
3202 lines
47 KiB
CSS
body {
|
|
background-color: red;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.red {
|
|
background-color: red;
|
|
}
|
|
|
|
.hemphill {
|
|
background-color: red;
|
|
}
|
|
|
|
.foo {
|
|
color: red;
|
|
}
|
|
|
|
.bg-light {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.bg-light-soft {
|
|
background-color: #f7f9fa;
|
|
}
|
|
|
|
.bg-light-softer {
|
|
background-color: #f0f2f5;
|
|
}
|
|
|
|
.bg-light-softest {
|
|
background-color: #dfe3e8;
|
|
}
|
|
|
|
.bg-dark {
|
|
background-color: #212b35;
|
|
}
|
|
|
|
.bg-dark-soft {
|
|
background-color: #404e5c;
|
|
}
|
|
|
|
.bg-dark-softer {
|
|
background-color: #647382;
|
|
}
|
|
|
|
.bg-dark-softest {
|
|
background-color: #919eab;
|
|
}
|
|
|
|
.bg-red-dark {
|
|
background-color: #d43633;
|
|
}
|
|
|
|
.bg-red {
|
|
background-color: #f25451;
|
|
}
|
|
|
|
.bg-red-light {
|
|
background-color: #fa8785;
|
|
}
|
|
|
|
.bg-red-lightest {
|
|
background-color: #fff1f0;
|
|
}
|
|
|
|
.bg-orange-dark {
|
|
background-color: #f29500;
|
|
}
|
|
|
|
.bg-orange {
|
|
background-color: #ffb82b;
|
|
}
|
|
|
|
.bg-orange-light {
|
|
background-color: #ffd685;
|
|
}
|
|
|
|
.bg-orange-lightest {
|
|
background-color: #fff8eb;
|
|
}
|
|
|
|
.bg-yellow-dark {
|
|
background-color: #ffc400;
|
|
}
|
|
|
|
.bg-yellow {
|
|
background-color: #ffe14a;
|
|
}
|
|
|
|
.bg-yellow-light {
|
|
background-color: #ffea83;
|
|
}
|
|
|
|
.bg-yellow-lightest {
|
|
background-color: #fffbe5;
|
|
}
|
|
|
|
.bg-green-dark {
|
|
background-color: #34ae4c;
|
|
}
|
|
|
|
.bg-green {
|
|
background-color: #57d06f;
|
|
}
|
|
|
|
.bg-green-light {
|
|
background-color: #b1f3be;
|
|
}
|
|
|
|
.bg-green-lightest {
|
|
background-color: #eefff1;
|
|
}
|
|
|
|
.bg-teal-dark {
|
|
background-color: #249e9a;
|
|
}
|
|
|
|
.bg-teal {
|
|
background-color: #4dc0b5;
|
|
}
|
|
|
|
.bg-teal-light {
|
|
background-color: #9eebe4;
|
|
}
|
|
|
|
.bg-teal-lightest {
|
|
background-color: #eefffd;
|
|
}
|
|
|
|
.bg-blue-dark {
|
|
background-color: #3687c8;
|
|
}
|
|
|
|
.bg-blue {
|
|
background-color: #4aa2ea;
|
|
}
|
|
|
|
.bg-blue-light {
|
|
background-color: #acdaff;
|
|
}
|
|
|
|
.bg-blue-lightest {
|
|
background-color: #f1f9ff;
|
|
}
|
|
|
|
.bg-indigo-dark {
|
|
background-color: #4957a5;
|
|
}
|
|
|
|
.bg-indigo {
|
|
background-color: #6574cd;
|
|
}
|
|
|
|
.bg-indigo-light {
|
|
background-color: #bcc5fb;
|
|
}
|
|
|
|
.bg-indigo-lightest {
|
|
background-color: #f4f5ff;
|
|
}
|
|
|
|
.bg-purple-dark {
|
|
background-color: #714cb4;
|
|
}
|
|
|
|
.bg-purple {
|
|
background-color: #976ae6;
|
|
}
|
|
|
|
.bg-purple-light {
|
|
background-color: #ceb3ff;
|
|
}
|
|
|
|
.bg-purple-lightest {
|
|
background-color: #f7f3ff;
|
|
}
|
|
|
|
.bg-pink-dark {
|
|
background-color: #d84f7d;
|
|
}
|
|
|
|
.bg-pink {
|
|
background-color: #f66d9b;
|
|
}
|
|
|
|
.bg-pink-light {
|
|
background-color: #ffa5c3;
|
|
}
|
|
|
|
.bg-pink-lightest {
|
|
background-color: #fdf2f5;
|
|
}
|
|
|
|
.bg-cover {
|
|
background-size: cover;
|
|
}
|
|
|
|
.bg-contain {
|
|
background-size: contain;
|
|
}
|
|
|
|
.border {
|
|
border: 1px solid #c5ced6;
|
|
}
|
|
|
|
.border-t {
|
|
border-top: 1px solid #c5ced6;
|
|
}
|
|
|
|
.border-r {
|
|
border-right: 1px solid #c5ced6;
|
|
}
|
|
|
|
.border-b {
|
|
border-bottom: 1px solid #c5ced6;
|
|
}
|
|
|
|
.border-l {
|
|
border-left: 1px solid #c5ced6;
|
|
}
|
|
|
|
.border-0 {
|
|
border: 0 solid #c5ced6;
|
|
}
|
|
|
|
.border-t-0 {
|
|
border-top: 0 solid #c5ced6;
|
|
}
|
|
|
|
.border-r-0 {
|
|
border-right: 0 solid #c5ced6;
|
|
}
|
|
|
|
.border-b-0 {
|
|
border-bottom: 0 solid #c5ced6;
|
|
}
|
|
|
|
.border-l-0 {
|
|
border-left: 0 solid #c5ced6;
|
|
}
|
|
|
|
.border-2 {
|
|
border: 2px solid #c5ced6;
|
|
}
|
|
|
|
.border-t-2 {
|
|
border-top: 2px solid #c5ced6;
|
|
}
|
|
|
|
.border-r-2 {
|
|
border-right: 2px solid #c5ced6;
|
|
}
|
|
|
|
.border-b-2 {
|
|
border-bottom: 2px solid #c5ced6;
|
|
}
|
|
|
|
.border-l-2 {
|
|
border-left: 2px solid #c5ced6;
|
|
}
|
|
|
|
.border-4 {
|
|
border: 4px solid #c5ced6;
|
|
}
|
|
|
|
.border-t-4 {
|
|
border-top: 4px solid #c5ced6;
|
|
}
|
|
|
|
.border-r-4 {
|
|
border-right: 4px solid #c5ced6;
|
|
}
|
|
|
|
.border-b-4 {
|
|
border-bottom: 4px solid #c5ced6;
|
|
}
|
|
|
|
.border-l-4 {
|
|
border-left: 4px solid #c5ced6;
|
|
}
|
|
|
|
.border-8 {
|
|
border: 8px solid #c5ced6;
|
|
}
|
|
|
|
.border-t-8 {
|
|
border-top: 8px solid #c5ced6;
|
|
}
|
|
|
|
.border-r-8 {
|
|
border-right: 8px solid #c5ced6;
|
|
}
|
|
|
|
.border-b-8 {
|
|
border-bottom: 8px solid #c5ced6;
|
|
}
|
|
|
|
.border-l-8 {
|
|
border-left: 8px solid #c5ced6;
|
|
}
|
|
|
|
.border-light {
|
|
border-color: #ffffff;
|
|
}
|
|
|
|
.border-light-soft {
|
|
border-color: #f7f9fa;
|
|
}
|
|
|
|
.border-light-softer {
|
|
border-color: #f0f2f5;
|
|
}
|
|
|
|
.border-dark {
|
|
border-color: #919eab;
|
|
}
|
|
|
|
.border-dark-soft {
|
|
border-color: #c5ced6;
|
|
}
|
|
|
|
.border-dark-softer {
|
|
border-color: #dfe3e8;
|
|
}
|
|
|
|
.border-light-overlay {
|
|
border-color: hsla(0, 0%, 0%, .2);
|
|
}
|
|
|
|
.border-light-overlay-soft {
|
|
border-color: hsla(0, 0%, 0%, .1);
|
|
}
|
|
|
|
.border-light-overlay-softer {
|
|
border-color: hsla(0, 0%, 0%, .05);
|
|
}
|
|
|
|
.border-dark-overlay {
|
|
border-color: hsla(0, 0%, 100%, 1);
|
|
}
|
|
|
|
.border-dark-overlay-soft {
|
|
border-color: hsla(0, 0%, 100%, .6);
|
|
}
|
|
|
|
.border-dark-overlay-softer {
|
|
border-color: hsla(0, 0%, 100%, .35);
|
|
}
|
|
|
|
.border-red-dark {
|
|
border-color: #d43633;
|
|
}
|
|
|
|
.border-red {
|
|
border-color: #f25451;
|
|
}
|
|
|
|
.border-red-light {
|
|
border-color: #fa8785;
|
|
}
|
|
|
|
.border-red-lightest {
|
|
border-color: #fff1f0;
|
|
}
|
|
|
|
.border-orange-dark {
|
|
border-color: #f29500;
|
|
}
|
|
|
|
.border-orange {
|
|
border-color: #ffb82b;
|
|
}
|
|
|
|
.border-orange-light {
|
|
border-color: #ffd685;
|
|
}
|
|
|
|
.border-orange-lightest {
|
|
border-color: #fff8eb;
|
|
}
|
|
|
|
.border-yellow-dark {
|
|
border-color: #ffc400;
|
|
}
|
|
|
|
.border-yellow {
|
|
border-color: #ffe14a;
|
|
}
|
|
|
|
.border-yellow-light {
|
|
border-color: #ffea83;
|
|
}
|
|
|
|
.border-yellow-lightest {
|
|
border-color: #fffbe5;
|
|
}
|
|
|
|
.border-green-dark {
|
|
border-color: #34ae4c;
|
|
}
|
|
|
|
.border-green {
|
|
border-color: #57d06f;
|
|
}
|
|
|
|
.border-green-light {
|
|
border-color: #b1f3be;
|
|
}
|
|
|
|
.border-green-lightest {
|
|
border-color: #eefff1;
|
|
}
|
|
|
|
.border-teal-dark {
|
|
border-color: #249e9a;
|
|
}
|
|
|
|
.border-teal {
|
|
border-color: #4dc0b5;
|
|
}
|
|
|
|
.border-teal-light {
|
|
border-color: #9eebe4;
|
|
}
|
|
|
|
.border-teal-lightest {
|
|
border-color: #eefffd;
|
|
}
|
|
|
|
.border-blue-dark {
|
|
border-color: #3687c8;
|
|
}
|
|
|
|
.border-blue {
|
|
border-color: #4aa2ea;
|
|
}
|
|
|
|
.border-blue-light {
|
|
border-color: #acdaff;
|
|
}
|
|
|
|
.border-blue-lightest {
|
|
border-color: #f1f9ff;
|
|
}
|
|
|
|
.border-indigo-dark {
|
|
border-color: #4957a5;
|
|
}
|
|
|
|
.border-indigo {
|
|
border-color: #6574cd;
|
|
}
|
|
|
|
.border-indigo-light {
|
|
border-color: #bcc5fb;
|
|
}
|
|
|
|
.border-indigo-lightest {
|
|
border-color: #f4f5ff;
|
|
}
|
|
|
|
.border-purple-dark {
|
|
border-color: #714cb4;
|
|
}
|
|
|
|
.border-purple {
|
|
border-color: #976ae6;
|
|
}
|
|
|
|
.border-purple-light {
|
|
border-color: #ceb3ff;
|
|
}
|
|
|
|
.border-purple-lightest {
|
|
border-color: #f7f3ff;
|
|
}
|
|
|
|
.border-pink-dark {
|
|
border-color: #d84f7d;
|
|
}
|
|
|
|
.border-pink {
|
|
border-color: #f66d9b;
|
|
}
|
|
|
|
.border-pink-light {
|
|
border-color: #ffa5c3;
|
|
}
|
|
|
|
.border-pink-lightest {
|
|
border-color: #fdf2f5;
|
|
}
|
|
|
|
.shadow-1 {
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .15);
|
|
}
|
|
|
|
.shadow-2 {
|
|
box-shadow: 0 3px 6px rgba(0, 0, 0, .12), 0 3px 6px rgba(0, 0, 0, .13);
|
|
}
|
|
|
|
.shadow-3 {
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, .13), 0 6px 6px rgba(0, 0, 0, .13);
|
|
}
|
|
|
|
.shadow-4 {
|
|
box-shadow: 0 14px 28px rgba(0, 0, 0, .16), 0 10px 10px rgba(0, 0, 0, .11);
|
|
}
|
|
|
|
.shadow-5 {
|
|
box-shadow: 0 19px 38px rgba(0, 0, 0, .18), 0 15px 12px rgba(0, 0, 0, .11);
|
|
}
|
|
|
|
.flex {
|
|
display: -webkit-box;
|
|
display: flex;
|
|
}
|
|
|
|
.inline-flex {
|
|
display: -webkit-inline-box;
|
|
display: inline-flex;
|
|
}
|
|
|
|
.flex-row {
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: normal;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.flex-row-reverse {
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: reverse;
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.flex-col {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.flex-col-reverse {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: reverse;
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.flex-wrap {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.flex-wrap-reverse {
|
|
flex-wrap: wrap-reverse;
|
|
}
|
|
|
|
.flex-nowrap {
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.items-start {
|
|
-webkit-box-align: start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.items-end {
|
|
-webkit-box-align: end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.items-center {
|
|
-webkit-box-align: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.items-baseline {
|
|
-webkit-box-align: baseline;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.items-stretch {
|
|
-webkit-box-align: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.justify-start {
|
|
-webkit-box-pack: start;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.justify-end {
|
|
-webkit-box-pack: end;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.justify-center {
|
|
-webkit-box-pack: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.justify-between {
|
|
-webkit-box-pack: justify;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.justify-around {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.flex-auto {
|
|
-webkit-box-flex: 1;
|
|
flex: auto;
|
|
}
|
|
|
|
.flex-initial {
|
|
-webkit-box-flex: initial;
|
|
flex: initial;
|
|
}
|
|
|
|
.flex-none {
|
|
-webkit-box-flex: 0;
|
|
flex: none;
|
|
}
|
|
|
|
.flex-grow {
|
|
-webkit-box-flex: 1;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.flex-shrink {
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
.flex-no-grow {
|
|
-webkit-box-flex: 0;
|
|
flex-grow: 0;
|
|
}
|
|
|
|
.flex-no-shrink {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.bar {
|
|
color: blue;
|
|
}
|
|
|
|
.baz {
|
|
color: green;
|
|
}
|
|
|
|
@media (min-width: 576px) {
|
|
.sm\:foo {
|
|
color: red;
|
|
}
|
|
|
|
.sm\:bg-light {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.sm\:bg-light-soft {
|
|
background-color: #f7f9fa;
|
|
}
|
|
|
|
.sm\:bg-light-softer {
|
|
background-color: #f0f2f5;
|
|
}
|
|
|
|
.sm\:bg-light-softest {
|
|
background-color: #dfe3e8;
|
|
}
|
|
|
|
.sm\:bg-dark {
|
|
background-color: #212b35;
|
|
}
|
|
|
|
.sm\:bg-dark-soft {
|
|
background-color: #404e5c;
|
|
}
|
|
|
|
.sm\:bg-dark-softer {
|
|
background-color: #647382;
|
|
}
|
|
|
|
.sm\:bg-dark-softest {
|
|
background-color: #919eab;
|
|
}
|
|
|
|
.sm\:bg-red-dark {
|
|
background-color: #d43633;
|
|
}
|
|
|
|
.sm\:bg-red {
|
|
background-color: #f25451;
|
|
}
|
|
|
|
.sm\:bg-red-light {
|
|
background-color: #fa8785;
|
|
}
|
|
|
|
.sm\:bg-red-lightest {
|
|
background-color: #fff1f0;
|
|
}
|
|
|
|
.sm\:bg-orange-dark {
|
|
background-color: #f29500;
|
|
}
|
|
|
|
.sm\:bg-orange {
|
|
background-color: #ffb82b;
|
|
}
|
|
|
|
.sm\:bg-orange-light {
|
|
background-color: #ffd685;
|
|
}
|
|
|
|
.sm\:bg-orange-lightest {
|
|
background-color: #fff8eb;
|
|
}
|
|
|
|
.sm\:bg-yellow-dark {
|
|
background-color: #ffc400;
|
|
}
|
|
|
|
.sm\:bg-yellow {
|
|
background-color: #ffe14a;
|
|
}
|
|
|
|
.sm\:bg-yellow-light {
|
|
background-color: #ffea83;
|
|
}
|
|
|
|
.sm\:bg-yellow-lightest {
|
|
background-color: #fffbe5;
|
|
}
|
|
|
|
.sm\:bg-green-dark {
|
|
background-color: #34ae4c;
|
|
}
|
|
|
|
.sm\:bg-green {
|
|
background-color: #57d06f;
|
|
}
|
|
|
|
.sm\:bg-green-light {
|
|
background-color: #b1f3be;
|
|
}
|
|
|
|
.sm\:bg-green-lightest {
|
|
background-color: #eefff1;
|
|
}
|
|
|
|
.sm\:bg-teal-dark {
|
|
background-color: #249e9a;
|
|
}
|
|
|
|
.sm\:bg-teal {
|
|
background-color: #4dc0b5;
|
|
}
|
|
|
|
.sm\:bg-teal-light {
|
|
background-color: #9eebe4;
|
|
}
|
|
|
|
.sm\:bg-teal-lightest {
|
|
background-color: #eefffd;
|
|
}
|
|
|
|
.sm\:bg-blue-dark {
|
|
background-color: #3687c8;
|
|
}
|
|
|
|
.sm\:bg-blue {
|
|
background-color: #4aa2ea;
|
|
}
|
|
|
|
.sm\:bg-blue-light {
|
|
background-color: #acdaff;
|
|
}
|
|
|
|
.sm\:bg-blue-lightest {
|
|
background-color: #f1f9ff;
|
|
}
|
|
|
|
.sm\:bg-indigo-dark {
|
|
background-color: #4957a5;
|
|
}
|
|
|
|
.sm\:bg-indigo {
|
|
background-color: #6574cd;
|
|
}
|
|
|
|
.sm\:bg-indigo-light {
|
|
background-color: #bcc5fb;
|
|
}
|
|
|
|
.sm\:bg-indigo-lightest {
|
|
background-color: #f4f5ff;
|
|
}
|
|
|
|
.sm\:bg-purple-dark {
|
|
background-color: #714cb4;
|
|
}
|
|
|
|
.sm\:bg-purple {
|
|
background-color: #976ae6;
|
|
}
|
|
|
|
.sm\:bg-purple-light {
|
|
background-color: #ceb3ff;
|
|
}
|
|
|
|
.sm\:bg-purple-lightest {
|
|
background-color: #f7f3ff;
|
|
}
|
|
|
|
.sm\:bg-pink-dark {
|
|
background-color: #d84f7d;
|
|
}
|
|
|
|
.sm\:bg-pink {
|
|
background-color: #f66d9b;
|
|
}
|
|
|
|
.sm\:bg-pink-light {
|
|
background-color: #ffa5c3;
|
|
}
|
|
|
|
.sm\:bg-pink-lightest {
|
|
background-color: #fdf2f5;
|
|
}
|
|
|
|
.sm\:bg-cover {
|
|
background-size: cover;
|
|
}
|
|
|
|
.sm\:bg-contain {
|
|
background-size: contain;
|
|
}
|
|
|
|
.sm\:border {
|
|
border: 1px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-t {
|
|
border-top: 1px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-r {
|
|
border-right: 1px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-b {
|
|
border-bottom: 1px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-l {
|
|
border-left: 1px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-0 {
|
|
border: 0 solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-t-0 {
|
|
border-top: 0 solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-r-0 {
|
|
border-right: 0 solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-b-0 {
|
|
border-bottom: 0 solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-l-0 {
|
|
border-left: 0 solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-2 {
|
|
border: 2px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-t-2 {
|
|
border-top: 2px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-r-2 {
|
|
border-right: 2px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-b-2 {
|
|
border-bottom: 2px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-l-2 {
|
|
border-left: 2px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-4 {
|
|
border: 4px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-t-4 {
|
|
border-top: 4px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-r-4 {
|
|
border-right: 4px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-b-4 {
|
|
border-bottom: 4px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-l-4 {
|
|
border-left: 4px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-8 {
|
|
border: 8px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-t-8 {
|
|
border-top: 8px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-r-8 {
|
|
border-right: 8px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-b-8 {
|
|
border-bottom: 8px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-l-8 {
|
|
border-left: 8px solid #c5ced6;
|
|
}
|
|
|
|
.sm\:border-light {
|
|
border-color: #ffffff;
|
|
}
|
|
|
|
.sm\:border-light-soft {
|
|
border-color: #f7f9fa;
|
|
}
|
|
|
|
.sm\:border-light-softer {
|
|
border-color: #f0f2f5;
|
|
}
|
|
|
|
.sm\:border-dark {
|
|
border-color: #919eab;
|
|
}
|
|
|
|
.sm\:border-dark-soft {
|
|
border-color: #c5ced6;
|
|
}
|
|
|
|
.sm\:border-dark-softer {
|
|
border-color: #dfe3e8;
|
|
}
|
|
|
|
.sm\:border-light-overlay {
|
|
border-color: hsla(0, 0%, 0%, .2);
|
|
}
|
|
|
|
.sm\:border-light-overlay-soft {
|
|
border-color: hsla(0, 0%, 0%, .1);
|
|
}
|
|
|
|
.sm\:border-light-overlay-softer {
|
|
border-color: hsla(0, 0%, 0%, .05);
|
|
}
|
|
|
|
.sm\:border-dark-overlay {
|
|
border-color: hsla(0, 0%, 100%, 1);
|
|
}
|
|
|
|
.sm\:border-dark-overlay-soft {
|
|
border-color: hsla(0, 0%, 100%, .6);
|
|
}
|
|
|
|
.sm\:border-dark-overlay-softer {
|
|
border-color: hsla(0, 0%, 100%, .35);
|
|
}
|
|
|
|
.sm\:border-red-dark {
|
|
border-color: #d43633;
|
|
}
|
|
|
|
.sm\:border-red {
|
|
border-color: #f25451;
|
|
}
|
|
|
|
.sm\:border-red-light {
|
|
border-color: #fa8785;
|
|
}
|
|
|
|
.sm\:border-red-lightest {
|
|
border-color: #fff1f0;
|
|
}
|
|
|
|
.sm\:border-orange-dark {
|
|
border-color: #f29500;
|
|
}
|
|
|
|
.sm\:border-orange {
|
|
border-color: #ffb82b;
|
|
}
|
|
|
|
.sm\:border-orange-light {
|
|
border-color: #ffd685;
|
|
}
|
|
|
|
.sm\:border-orange-lightest {
|
|
border-color: #fff8eb;
|
|
}
|
|
|
|
.sm\:border-yellow-dark {
|
|
border-color: #ffc400;
|
|
}
|
|
|
|
.sm\:border-yellow {
|
|
border-color: #ffe14a;
|
|
}
|
|
|
|
.sm\:border-yellow-light {
|
|
border-color: #ffea83;
|
|
}
|
|
|
|
.sm\:border-yellow-lightest {
|
|
border-color: #fffbe5;
|
|
}
|
|
|
|
.sm\:border-green-dark {
|
|
border-color: #34ae4c;
|
|
}
|
|
|
|
.sm\:border-green {
|
|
border-color: #57d06f;
|
|
}
|
|
|
|
.sm\:border-green-light {
|
|
border-color: #b1f3be;
|
|
}
|
|
|
|
.sm\:border-green-lightest {
|
|
border-color: #eefff1;
|
|
}
|
|
|
|
.sm\:border-teal-dark {
|
|
border-color: #249e9a;
|
|
}
|
|
|
|
.sm\:border-teal {
|
|
border-color: #4dc0b5;
|
|
}
|
|
|
|
.sm\:border-teal-light {
|
|
border-color: #9eebe4;
|
|
}
|
|
|
|
.sm\:border-teal-lightest {
|
|
border-color: #eefffd;
|
|
}
|
|
|
|
.sm\:border-blue-dark {
|
|
border-color: #3687c8;
|
|
}
|
|
|
|
.sm\:border-blue {
|
|
border-color: #4aa2ea;
|
|
}
|
|
|
|
.sm\:border-blue-light {
|
|
border-color: #acdaff;
|
|
}
|
|
|
|
.sm\:border-blue-lightest {
|
|
border-color: #f1f9ff;
|
|
}
|
|
|
|
.sm\:border-indigo-dark {
|
|
border-color: #4957a5;
|
|
}
|
|
|
|
.sm\:border-indigo {
|
|
border-color: #6574cd;
|
|
}
|
|
|
|
.sm\:border-indigo-light {
|
|
border-color: #bcc5fb;
|
|
}
|
|
|
|
.sm\:border-indigo-lightest {
|
|
border-color: #f4f5ff;
|
|
}
|
|
|
|
.sm\:border-purple-dark {
|
|
border-color: #714cb4;
|
|
}
|
|
|
|
.sm\:border-purple {
|
|
border-color: #976ae6;
|
|
}
|
|
|
|
.sm\:border-purple-light {
|
|
border-color: #ceb3ff;
|
|
}
|
|
|
|
.sm\:border-purple-lightest {
|
|
border-color: #f7f3ff;
|
|
}
|
|
|
|
.sm\:border-pink-dark {
|
|
border-color: #d84f7d;
|
|
}
|
|
|
|
.sm\:border-pink {
|
|
border-color: #f66d9b;
|
|
}
|
|
|
|
.sm\:border-pink-light {
|
|
border-color: #ffa5c3;
|
|
}
|
|
|
|
.sm\:border-pink-lightest {
|
|
border-color: #fdf2f5;
|
|
}
|
|
|
|
.sm\:shadow-1 {
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .15);
|
|
}
|
|
|
|
.sm\:shadow-2 {
|
|
box-shadow: 0 3px 6px rgba(0, 0, 0, .12), 0 3px 6px rgba(0, 0, 0, .13);
|
|
}
|
|
|
|
.sm\:shadow-3 {
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, .13), 0 6px 6px rgba(0, 0, 0, .13);
|
|
}
|
|
|
|
.sm\:shadow-4 {
|
|
box-shadow: 0 14px 28px rgba(0, 0, 0, .16), 0 10px 10px rgba(0, 0, 0, .11);
|
|
}
|
|
|
|
.sm\:shadow-5 {
|
|
box-shadow: 0 19px 38px rgba(0, 0, 0, .18), 0 15px 12px rgba(0, 0, 0, .11);
|
|
}
|
|
|
|
.sm\:flex {
|
|
display: -webkit-box;
|
|
display: flex;
|
|
}
|
|
|
|
.sm\:inline-flex {
|
|
display: -webkit-inline-box;
|
|
display: inline-flex;
|
|
}
|
|
|
|
.sm\:flex-row {
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: normal;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.sm\:flex-row-reverse {
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: reverse;
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.sm\:flex-col {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.sm\:flex-col-reverse {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: reverse;
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.sm\:flex-wrap {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.sm\:flex-wrap-reverse {
|
|
flex-wrap: wrap-reverse;
|
|
}
|
|
|
|
.sm\:flex-nowrap {
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.sm\:items-start {
|
|
-webkit-box-align: start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.sm\:items-end {
|
|
-webkit-box-align: end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.sm\:items-center {
|
|
-webkit-box-align: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.sm\:items-baseline {
|
|
-webkit-box-align: baseline;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.sm\:items-stretch {
|
|
-webkit-box-align: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.sm\:justify-start {
|
|
-webkit-box-pack: start;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.sm\:justify-end {
|
|
-webkit-box-pack: end;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.sm\:justify-center {
|
|
-webkit-box-pack: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.sm\:justify-between {
|
|
-webkit-box-pack: justify;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.sm\:justify-around {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.sm\:flex-auto {
|
|
-webkit-box-flex: 1;
|
|
flex: auto;
|
|
}
|
|
|
|
.sm\:flex-initial {
|
|
-webkit-box-flex: initial;
|
|
flex: initial;
|
|
}
|
|
|
|
.sm\:flex-none {
|
|
-webkit-box-flex: 0;
|
|
flex: none;
|
|
}
|
|
|
|
.sm\:flex-grow {
|
|
-webkit-box-flex: 1;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.sm\:flex-shrink {
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
.sm\:flex-no-grow {
|
|
-webkit-box-flex: 0;
|
|
flex-grow: 0;
|
|
}
|
|
|
|
.sm\:flex-no-shrink {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.sm\:bar {
|
|
color: blue;
|
|
}
|
|
|
|
.sm\:baz {
|
|
color: green;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.md\:foo {
|
|
color: red;
|
|
}
|
|
|
|
.md\:bg-light {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.md\:bg-light-soft {
|
|
background-color: #f7f9fa;
|
|
}
|
|
|
|
.md\:bg-light-softer {
|
|
background-color: #f0f2f5;
|
|
}
|
|
|
|
.md\:bg-light-softest {
|
|
background-color: #dfe3e8;
|
|
}
|
|
|
|
.md\:bg-dark {
|
|
background-color: #212b35;
|
|
}
|
|
|
|
.md\:bg-dark-soft {
|
|
background-color: #404e5c;
|
|
}
|
|
|
|
.md\:bg-dark-softer {
|
|
background-color: #647382;
|
|
}
|
|
|
|
.md\:bg-dark-softest {
|
|
background-color: #919eab;
|
|
}
|
|
|
|
.md\:bg-red-dark {
|
|
background-color: #d43633;
|
|
}
|
|
|
|
.md\:bg-red {
|
|
background-color: #f25451;
|
|
}
|
|
|
|
.md\:bg-red-light {
|
|
background-color: #fa8785;
|
|
}
|
|
|
|
.md\:bg-red-lightest {
|
|
background-color: #fff1f0;
|
|
}
|
|
|
|
.md\:bg-orange-dark {
|
|
background-color: #f29500;
|
|
}
|
|
|
|
.md\:bg-orange {
|
|
background-color: #ffb82b;
|
|
}
|
|
|
|
.md\:bg-orange-light {
|
|
background-color: #ffd685;
|
|
}
|
|
|
|
.md\:bg-orange-lightest {
|
|
background-color: #fff8eb;
|
|
}
|
|
|
|
.md\:bg-yellow-dark {
|
|
background-color: #ffc400;
|
|
}
|
|
|
|
.md\:bg-yellow {
|
|
background-color: #ffe14a;
|
|
}
|
|
|
|
.md\:bg-yellow-light {
|
|
background-color: #ffea83;
|
|
}
|
|
|
|
.md\:bg-yellow-lightest {
|
|
background-color: #fffbe5;
|
|
}
|
|
|
|
.md\:bg-green-dark {
|
|
background-color: #34ae4c;
|
|
}
|
|
|
|
.md\:bg-green {
|
|
background-color: #57d06f;
|
|
}
|
|
|
|
.md\:bg-green-light {
|
|
background-color: #b1f3be;
|
|
}
|
|
|
|
.md\:bg-green-lightest {
|
|
background-color: #eefff1;
|
|
}
|
|
|
|
.md\:bg-teal-dark {
|
|
background-color: #249e9a;
|
|
}
|
|
|
|
.md\:bg-teal {
|
|
background-color: #4dc0b5;
|
|
}
|
|
|
|
.md\:bg-teal-light {
|
|
background-color: #9eebe4;
|
|
}
|
|
|
|
.md\:bg-teal-lightest {
|
|
background-color: #eefffd;
|
|
}
|
|
|
|
.md\:bg-blue-dark {
|
|
background-color: #3687c8;
|
|
}
|
|
|
|
.md\:bg-blue {
|
|
background-color: #4aa2ea;
|
|
}
|
|
|
|
.md\:bg-blue-light {
|
|
background-color: #acdaff;
|
|
}
|
|
|
|
.md\:bg-blue-lightest {
|
|
background-color: #f1f9ff;
|
|
}
|
|
|
|
.md\:bg-indigo-dark {
|
|
background-color: #4957a5;
|
|
}
|
|
|
|
.md\:bg-indigo {
|
|
background-color: #6574cd;
|
|
}
|
|
|
|
.md\:bg-indigo-light {
|
|
background-color: #bcc5fb;
|
|
}
|
|
|
|
.md\:bg-indigo-lightest {
|
|
background-color: #f4f5ff;
|
|
}
|
|
|
|
.md\:bg-purple-dark {
|
|
background-color: #714cb4;
|
|
}
|
|
|
|
.md\:bg-purple {
|
|
background-color: #976ae6;
|
|
}
|
|
|
|
.md\:bg-purple-light {
|
|
background-color: #ceb3ff;
|
|
}
|
|
|
|
.md\:bg-purple-lightest {
|
|
background-color: #f7f3ff;
|
|
}
|
|
|
|
.md\:bg-pink-dark {
|
|
background-color: #d84f7d;
|
|
}
|
|
|
|
.md\:bg-pink {
|
|
background-color: #f66d9b;
|
|
}
|
|
|
|
.md\:bg-pink-light {
|
|
background-color: #ffa5c3;
|
|
}
|
|
|
|
.md\:bg-pink-lightest {
|
|
background-color: #fdf2f5;
|
|
}
|
|
|
|
.md\:bg-cover {
|
|
background-size: cover;
|
|
}
|
|
|
|
.md\:bg-contain {
|
|
background-size: contain;
|
|
}
|
|
|
|
.md\:border {
|
|
border: 1px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-t {
|
|
border-top: 1px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-r {
|
|
border-right: 1px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-b {
|
|
border-bottom: 1px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-l {
|
|
border-left: 1px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-0 {
|
|
border: 0 solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-t-0 {
|
|
border-top: 0 solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-r-0 {
|
|
border-right: 0 solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-b-0 {
|
|
border-bottom: 0 solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-l-0 {
|
|
border-left: 0 solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-2 {
|
|
border: 2px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-t-2 {
|
|
border-top: 2px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-r-2 {
|
|
border-right: 2px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-b-2 {
|
|
border-bottom: 2px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-l-2 {
|
|
border-left: 2px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-4 {
|
|
border: 4px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-t-4 {
|
|
border-top: 4px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-r-4 {
|
|
border-right: 4px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-b-4 {
|
|
border-bottom: 4px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-l-4 {
|
|
border-left: 4px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-8 {
|
|
border: 8px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-t-8 {
|
|
border-top: 8px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-r-8 {
|
|
border-right: 8px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-b-8 {
|
|
border-bottom: 8px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-l-8 {
|
|
border-left: 8px solid #c5ced6;
|
|
}
|
|
|
|
.md\:border-light {
|
|
border-color: #ffffff;
|
|
}
|
|
|
|
.md\:border-light-soft {
|
|
border-color: #f7f9fa;
|
|
}
|
|
|
|
.md\:border-light-softer {
|
|
border-color: #f0f2f5;
|
|
}
|
|
|
|
.md\:border-dark {
|
|
border-color: #919eab;
|
|
}
|
|
|
|
.md\:border-dark-soft {
|
|
border-color: #c5ced6;
|
|
}
|
|
|
|
.md\:border-dark-softer {
|
|
border-color: #dfe3e8;
|
|
}
|
|
|
|
.md\:border-light-overlay {
|
|
border-color: hsla(0, 0%, 0%, .2);
|
|
}
|
|
|
|
.md\:border-light-overlay-soft {
|
|
border-color: hsla(0, 0%, 0%, .1);
|
|
}
|
|
|
|
.md\:border-light-overlay-softer {
|
|
border-color: hsla(0, 0%, 0%, .05);
|
|
}
|
|
|
|
.md\:border-dark-overlay {
|
|
border-color: hsla(0, 0%, 100%, 1);
|
|
}
|
|
|
|
.md\:border-dark-overlay-soft {
|
|
border-color: hsla(0, 0%, 100%, .6);
|
|
}
|
|
|
|
.md\:border-dark-overlay-softer {
|
|
border-color: hsla(0, 0%, 100%, .35);
|
|
}
|
|
|
|
.md\:border-red-dark {
|
|
border-color: #d43633;
|
|
}
|
|
|
|
.md\:border-red {
|
|
border-color: #f25451;
|
|
}
|
|
|
|
.md\:border-red-light {
|
|
border-color: #fa8785;
|
|
}
|
|
|
|
.md\:border-red-lightest {
|
|
border-color: #fff1f0;
|
|
}
|
|
|
|
.md\:border-orange-dark {
|
|
border-color: #f29500;
|
|
}
|
|
|
|
.md\:border-orange {
|
|
border-color: #ffb82b;
|
|
}
|
|
|
|
.md\:border-orange-light {
|
|
border-color: #ffd685;
|
|
}
|
|
|
|
.md\:border-orange-lightest {
|
|
border-color: #fff8eb;
|
|
}
|
|
|
|
.md\:border-yellow-dark {
|
|
border-color: #ffc400;
|
|
}
|
|
|
|
.md\:border-yellow {
|
|
border-color: #ffe14a;
|
|
}
|
|
|
|
.md\:border-yellow-light {
|
|
border-color: #ffea83;
|
|
}
|
|
|
|
.md\:border-yellow-lightest {
|
|
border-color: #fffbe5;
|
|
}
|
|
|
|
.md\:border-green-dark {
|
|
border-color: #34ae4c;
|
|
}
|
|
|
|
.md\:border-green {
|
|
border-color: #57d06f;
|
|
}
|
|
|
|
.md\:border-green-light {
|
|
border-color: #b1f3be;
|
|
}
|
|
|
|
.md\:border-green-lightest {
|
|
border-color: #eefff1;
|
|
}
|
|
|
|
.md\:border-teal-dark {
|
|
border-color: #249e9a;
|
|
}
|
|
|
|
.md\:border-teal {
|
|
border-color: #4dc0b5;
|
|
}
|
|
|
|
.md\:border-teal-light {
|
|
border-color: #9eebe4;
|
|
}
|
|
|
|
.md\:border-teal-lightest {
|
|
border-color: #eefffd;
|
|
}
|
|
|
|
.md\:border-blue-dark {
|
|
border-color: #3687c8;
|
|
}
|
|
|
|
.md\:border-blue {
|
|
border-color: #4aa2ea;
|
|
}
|
|
|
|
.md\:border-blue-light {
|
|
border-color: #acdaff;
|
|
}
|
|
|
|
.md\:border-blue-lightest {
|
|
border-color: #f1f9ff;
|
|
}
|
|
|
|
.md\:border-indigo-dark {
|
|
border-color: #4957a5;
|
|
}
|
|
|
|
.md\:border-indigo {
|
|
border-color: #6574cd;
|
|
}
|
|
|
|
.md\:border-indigo-light {
|
|
border-color: #bcc5fb;
|
|
}
|
|
|
|
.md\:border-indigo-lightest {
|
|
border-color: #f4f5ff;
|
|
}
|
|
|
|
.md\:border-purple-dark {
|
|
border-color: #714cb4;
|
|
}
|
|
|
|
.md\:border-purple {
|
|
border-color: #976ae6;
|
|
}
|
|
|
|
.md\:border-purple-light {
|
|
border-color: #ceb3ff;
|
|
}
|
|
|
|
.md\:border-purple-lightest {
|
|
border-color: #f7f3ff;
|
|
}
|
|
|
|
.md\:border-pink-dark {
|
|
border-color: #d84f7d;
|
|
}
|
|
|
|
.md\:border-pink {
|
|
border-color: #f66d9b;
|
|
}
|
|
|
|
.md\:border-pink-light {
|
|
border-color: #ffa5c3;
|
|
}
|
|
|
|
.md\:border-pink-lightest {
|
|
border-color: #fdf2f5;
|
|
}
|
|
|
|
.md\:shadow-1 {
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .15);
|
|
}
|
|
|
|
.md\:shadow-2 {
|
|
box-shadow: 0 3px 6px rgba(0, 0, 0, .12), 0 3px 6px rgba(0, 0, 0, .13);
|
|
}
|
|
|
|
.md\:shadow-3 {
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, .13), 0 6px 6px rgba(0, 0, 0, .13);
|
|
}
|
|
|
|
.md\:shadow-4 {
|
|
box-shadow: 0 14px 28px rgba(0, 0, 0, .16), 0 10px 10px rgba(0, 0, 0, .11);
|
|
}
|
|
|
|
.md\:shadow-5 {
|
|
box-shadow: 0 19px 38px rgba(0, 0, 0, .18), 0 15px 12px rgba(0, 0, 0, .11);
|
|
}
|
|
|
|
.md\:flex {
|
|
display: -webkit-box;
|
|
display: flex;
|
|
}
|
|
|
|
.md\:inline-flex {
|
|
display: -webkit-inline-box;
|
|
display: inline-flex;
|
|
}
|
|
|
|
.md\:flex-row {
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: normal;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.md\:flex-row-reverse {
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: reverse;
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.md\:flex-col {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.md\:flex-col-reverse {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: reverse;
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.md\:flex-wrap {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.md\:flex-wrap-reverse {
|
|
flex-wrap: wrap-reverse;
|
|
}
|
|
|
|
.md\:flex-nowrap {
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.md\:items-start {
|
|
-webkit-box-align: start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.md\:items-end {
|
|
-webkit-box-align: end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.md\:items-center {
|
|
-webkit-box-align: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.md\:items-baseline {
|
|
-webkit-box-align: baseline;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.md\:items-stretch {
|
|
-webkit-box-align: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.md\:justify-start {
|
|
-webkit-box-pack: start;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.md\:justify-end {
|
|
-webkit-box-pack: end;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.md\:justify-center {
|
|
-webkit-box-pack: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.md\:justify-between {
|
|
-webkit-box-pack: justify;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.md\:justify-around {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.md\:flex-auto {
|
|
-webkit-box-flex: 1;
|
|
flex: auto;
|
|
}
|
|
|
|
.md\:flex-initial {
|
|
-webkit-box-flex: initial;
|
|
flex: initial;
|
|
}
|
|
|
|
.md\:flex-none {
|
|
-webkit-box-flex: 0;
|
|
flex: none;
|
|
}
|
|
|
|
.md\:flex-grow {
|
|
-webkit-box-flex: 1;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.md\:flex-shrink {
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
.md\:flex-no-grow {
|
|
-webkit-box-flex: 0;
|
|
flex-grow: 0;
|
|
}
|
|
|
|
.md\:flex-no-shrink {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.md\:bar {
|
|
color: blue;
|
|
}
|
|
|
|
.md\:baz {
|
|
color: green;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
.lg\:foo {
|
|
color: red;
|
|
}
|
|
|
|
.lg\:bg-light {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.lg\:bg-light-soft {
|
|
background-color: #f7f9fa;
|
|
}
|
|
|
|
.lg\:bg-light-softer {
|
|
background-color: #f0f2f5;
|
|
}
|
|
|
|
.lg\:bg-light-softest {
|
|
background-color: #dfe3e8;
|
|
}
|
|
|
|
.lg\:bg-dark {
|
|
background-color: #212b35;
|
|
}
|
|
|
|
.lg\:bg-dark-soft {
|
|
background-color: #404e5c;
|
|
}
|
|
|
|
.lg\:bg-dark-softer {
|
|
background-color: #647382;
|
|
}
|
|
|
|
.lg\:bg-dark-softest {
|
|
background-color: #919eab;
|
|
}
|
|
|
|
.lg\:bg-red-dark {
|
|
background-color: #d43633;
|
|
}
|
|
|
|
.lg\:bg-red {
|
|
background-color: #f25451;
|
|
}
|
|
|
|
.lg\:bg-red-light {
|
|
background-color: #fa8785;
|
|
}
|
|
|
|
.lg\:bg-red-lightest {
|
|
background-color: #fff1f0;
|
|
}
|
|
|
|
.lg\:bg-orange-dark {
|
|
background-color: #f29500;
|
|
}
|
|
|
|
.lg\:bg-orange {
|
|
background-color: #ffb82b;
|
|
}
|
|
|
|
.lg\:bg-orange-light {
|
|
background-color: #ffd685;
|
|
}
|
|
|
|
.lg\:bg-orange-lightest {
|
|
background-color: #fff8eb;
|
|
}
|
|
|
|
.lg\:bg-yellow-dark {
|
|
background-color: #ffc400;
|
|
}
|
|
|
|
.lg\:bg-yellow {
|
|
background-color: #ffe14a;
|
|
}
|
|
|
|
.lg\:bg-yellow-light {
|
|
background-color: #ffea83;
|
|
}
|
|
|
|
.lg\:bg-yellow-lightest {
|
|
background-color: #fffbe5;
|
|
}
|
|
|
|
.lg\:bg-green-dark {
|
|
background-color: #34ae4c;
|
|
}
|
|
|
|
.lg\:bg-green {
|
|
background-color: #57d06f;
|
|
}
|
|
|
|
.lg\:bg-green-light {
|
|
background-color: #b1f3be;
|
|
}
|
|
|
|
.lg\:bg-green-lightest {
|
|
background-color: #eefff1;
|
|
}
|
|
|
|
.lg\:bg-teal-dark {
|
|
background-color: #249e9a;
|
|
}
|
|
|
|
.lg\:bg-teal {
|
|
background-color: #4dc0b5;
|
|
}
|
|
|
|
.lg\:bg-teal-light {
|
|
background-color: #9eebe4;
|
|
}
|
|
|
|
.lg\:bg-teal-lightest {
|
|
background-color: #eefffd;
|
|
}
|
|
|
|
.lg\:bg-blue-dark {
|
|
background-color: #3687c8;
|
|
}
|
|
|
|
.lg\:bg-blue {
|
|
background-color: #4aa2ea;
|
|
}
|
|
|
|
.lg\:bg-blue-light {
|
|
background-color: #acdaff;
|
|
}
|
|
|
|
.lg\:bg-blue-lightest {
|
|
background-color: #f1f9ff;
|
|
}
|
|
|
|
.lg\:bg-indigo-dark {
|
|
background-color: #4957a5;
|
|
}
|
|
|
|
.lg\:bg-indigo {
|
|
background-color: #6574cd;
|
|
}
|
|
|
|
.lg\:bg-indigo-light {
|
|
background-color: #bcc5fb;
|
|
}
|
|
|
|
.lg\:bg-indigo-lightest {
|
|
background-color: #f4f5ff;
|
|
}
|
|
|
|
.lg\:bg-purple-dark {
|
|
background-color: #714cb4;
|
|
}
|
|
|
|
.lg\:bg-purple {
|
|
background-color: #976ae6;
|
|
}
|
|
|
|
.lg\:bg-purple-light {
|
|
background-color: #ceb3ff;
|
|
}
|
|
|
|
.lg\:bg-purple-lightest {
|
|
background-color: #f7f3ff;
|
|
}
|
|
|
|
.lg\:bg-pink-dark {
|
|
background-color: #d84f7d;
|
|
}
|
|
|
|
.lg\:bg-pink {
|
|
background-color: #f66d9b;
|
|
}
|
|
|
|
.lg\:bg-pink-light {
|
|
background-color: #ffa5c3;
|
|
}
|
|
|
|
.lg\:bg-pink-lightest {
|
|
background-color: #fdf2f5;
|
|
}
|
|
|
|
.lg\:bg-cover {
|
|
background-size: cover;
|
|
}
|
|
|
|
.lg\:bg-contain {
|
|
background-size: contain;
|
|
}
|
|
|
|
.lg\:border {
|
|
border: 1px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-t {
|
|
border-top: 1px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-r {
|
|
border-right: 1px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-b {
|
|
border-bottom: 1px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-l {
|
|
border-left: 1px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-0 {
|
|
border: 0 solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-t-0 {
|
|
border-top: 0 solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-r-0 {
|
|
border-right: 0 solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-b-0 {
|
|
border-bottom: 0 solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-l-0 {
|
|
border-left: 0 solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-2 {
|
|
border: 2px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-t-2 {
|
|
border-top: 2px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-r-2 {
|
|
border-right: 2px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-b-2 {
|
|
border-bottom: 2px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-l-2 {
|
|
border-left: 2px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-4 {
|
|
border: 4px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-t-4 {
|
|
border-top: 4px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-r-4 {
|
|
border-right: 4px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-b-4 {
|
|
border-bottom: 4px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-l-4 {
|
|
border-left: 4px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-8 {
|
|
border: 8px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-t-8 {
|
|
border-top: 8px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-r-8 {
|
|
border-right: 8px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-b-8 {
|
|
border-bottom: 8px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-l-8 {
|
|
border-left: 8px solid #c5ced6;
|
|
}
|
|
|
|
.lg\:border-light {
|
|
border-color: #ffffff;
|
|
}
|
|
|
|
.lg\:border-light-soft {
|
|
border-color: #f7f9fa;
|
|
}
|
|
|
|
.lg\:border-light-softer {
|
|
border-color: #f0f2f5;
|
|
}
|
|
|
|
.lg\:border-dark {
|
|
border-color: #919eab;
|
|
}
|
|
|
|
.lg\:border-dark-soft {
|
|
border-color: #c5ced6;
|
|
}
|
|
|
|
.lg\:border-dark-softer {
|
|
border-color: #dfe3e8;
|
|
}
|
|
|
|
.lg\:border-light-overlay {
|
|
border-color: hsla(0, 0%, 0%, .2);
|
|
}
|
|
|
|
.lg\:border-light-overlay-soft {
|
|
border-color: hsla(0, 0%, 0%, .1);
|
|
}
|
|
|
|
.lg\:border-light-overlay-softer {
|
|
border-color: hsla(0, 0%, 0%, .05);
|
|
}
|
|
|
|
.lg\:border-dark-overlay {
|
|
border-color: hsla(0, 0%, 100%, 1);
|
|
}
|
|
|
|
.lg\:border-dark-overlay-soft {
|
|
border-color: hsla(0, 0%, 100%, .6);
|
|
}
|
|
|
|
.lg\:border-dark-overlay-softer {
|
|
border-color: hsla(0, 0%, 100%, .35);
|
|
}
|
|
|
|
.lg\:border-red-dark {
|
|
border-color: #d43633;
|
|
}
|
|
|
|
.lg\:border-red {
|
|
border-color: #f25451;
|
|
}
|
|
|
|
.lg\:border-red-light {
|
|
border-color: #fa8785;
|
|
}
|
|
|
|
.lg\:border-red-lightest {
|
|
border-color: #fff1f0;
|
|
}
|
|
|
|
.lg\:border-orange-dark {
|
|
border-color: #f29500;
|
|
}
|
|
|
|
.lg\:border-orange {
|
|
border-color: #ffb82b;
|
|
}
|
|
|
|
.lg\:border-orange-light {
|
|
border-color: #ffd685;
|
|
}
|
|
|
|
.lg\:border-orange-lightest {
|
|
border-color: #fff8eb;
|
|
}
|
|
|
|
.lg\:border-yellow-dark {
|
|
border-color: #ffc400;
|
|
}
|
|
|
|
.lg\:border-yellow {
|
|
border-color: #ffe14a;
|
|
}
|
|
|
|
.lg\:border-yellow-light {
|
|
border-color: #ffea83;
|
|
}
|
|
|
|
.lg\:border-yellow-lightest {
|
|
border-color: #fffbe5;
|
|
}
|
|
|
|
.lg\:border-green-dark {
|
|
border-color: #34ae4c;
|
|
}
|
|
|
|
.lg\:border-green {
|
|
border-color: #57d06f;
|
|
}
|
|
|
|
.lg\:border-green-light {
|
|
border-color: #b1f3be;
|
|
}
|
|
|
|
.lg\:border-green-lightest {
|
|
border-color: #eefff1;
|
|
}
|
|
|
|
.lg\:border-teal-dark {
|
|
border-color: #249e9a;
|
|
}
|
|
|
|
.lg\:border-teal {
|
|
border-color: #4dc0b5;
|
|
}
|
|
|
|
.lg\:border-teal-light {
|
|
border-color: #9eebe4;
|
|
}
|
|
|
|
.lg\:border-teal-lightest {
|
|
border-color: #eefffd;
|
|
}
|
|
|
|
.lg\:border-blue-dark {
|
|
border-color: #3687c8;
|
|
}
|
|
|
|
.lg\:border-blue {
|
|
border-color: #4aa2ea;
|
|
}
|
|
|
|
.lg\:border-blue-light {
|
|
border-color: #acdaff;
|
|
}
|
|
|
|
.lg\:border-blue-lightest {
|
|
border-color: #f1f9ff;
|
|
}
|
|
|
|
.lg\:border-indigo-dark {
|
|
border-color: #4957a5;
|
|
}
|
|
|
|
.lg\:border-indigo {
|
|
border-color: #6574cd;
|
|
}
|
|
|
|
.lg\:border-indigo-light {
|
|
border-color: #bcc5fb;
|
|
}
|
|
|
|
.lg\:border-indigo-lightest {
|
|
border-color: #f4f5ff;
|
|
}
|
|
|
|
.lg\:border-purple-dark {
|
|
border-color: #714cb4;
|
|
}
|
|
|
|
.lg\:border-purple {
|
|
border-color: #976ae6;
|
|
}
|
|
|
|
.lg\:border-purple-light {
|
|
border-color: #ceb3ff;
|
|
}
|
|
|
|
.lg\:border-purple-lightest {
|
|
border-color: #f7f3ff;
|
|
}
|
|
|
|
.lg\:border-pink-dark {
|
|
border-color: #d84f7d;
|
|
}
|
|
|
|
.lg\:border-pink {
|
|
border-color: #f66d9b;
|
|
}
|
|
|
|
.lg\:border-pink-light {
|
|
border-color: #ffa5c3;
|
|
}
|
|
|
|
.lg\:border-pink-lightest {
|
|
border-color: #fdf2f5;
|
|
}
|
|
|
|
.lg\:shadow-1 {
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .15);
|
|
}
|
|
|
|
.lg\:shadow-2 {
|
|
box-shadow: 0 3px 6px rgba(0, 0, 0, .12), 0 3px 6px rgba(0, 0, 0, .13);
|
|
}
|
|
|
|
.lg\:shadow-3 {
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, .13), 0 6px 6px rgba(0, 0, 0, .13);
|
|
}
|
|
|
|
.lg\:shadow-4 {
|
|
box-shadow: 0 14px 28px rgba(0, 0, 0, .16), 0 10px 10px rgba(0, 0, 0, .11);
|
|
}
|
|
|
|
.lg\:shadow-5 {
|
|
box-shadow: 0 19px 38px rgba(0, 0, 0, .18), 0 15px 12px rgba(0, 0, 0, .11);
|
|
}
|
|
|
|
.lg\:flex {
|
|
display: -webkit-box;
|
|
display: flex;
|
|
}
|
|
|
|
.lg\:inline-flex {
|
|
display: -webkit-inline-box;
|
|
display: inline-flex;
|
|
}
|
|
|
|
.lg\:flex-row {
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: normal;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.lg\:flex-row-reverse {
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: reverse;
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.lg\:flex-col {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.lg\:flex-col-reverse {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: reverse;
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.lg\:flex-wrap {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.lg\:flex-wrap-reverse {
|
|
flex-wrap: wrap-reverse;
|
|
}
|
|
|
|
.lg\:flex-nowrap {
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.lg\:items-start {
|
|
-webkit-box-align: start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.lg\:items-end {
|
|
-webkit-box-align: end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.lg\:items-center {
|
|
-webkit-box-align: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.lg\:items-baseline {
|
|
-webkit-box-align: baseline;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.lg\:items-stretch {
|
|
-webkit-box-align: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.lg\:justify-start {
|
|
-webkit-box-pack: start;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.lg\:justify-end {
|
|
-webkit-box-pack: end;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.lg\:justify-center {
|
|
-webkit-box-pack: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.lg\:justify-between {
|
|
-webkit-box-pack: justify;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.lg\:justify-around {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.lg\:flex-auto {
|
|
-webkit-box-flex: 1;
|
|
flex: auto;
|
|
}
|
|
|
|
.lg\:flex-initial {
|
|
-webkit-box-flex: initial;
|
|
flex: initial;
|
|
}
|
|
|
|
.lg\:flex-none {
|
|
-webkit-box-flex: 0;
|
|
flex: none;
|
|
}
|
|
|
|
.lg\:flex-grow {
|
|
-webkit-box-flex: 1;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.lg\:flex-shrink {
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
.lg\:flex-no-grow {
|
|
-webkit-box-flex: 0;
|
|
flex-grow: 0;
|
|
}
|
|
|
|
.lg\:flex-no-shrink {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.lg\:bar {
|
|
color: blue;
|
|
}
|
|
|
|
.lg\:baz {
|
|
color: green;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
.xl\:foo {
|
|
color: red;
|
|
}
|
|
|
|
.xl\:bg-light {
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
.xl\:bg-light-soft {
|
|
background-color: #f7f9fa;
|
|
}
|
|
|
|
.xl\:bg-light-softer {
|
|
background-color: #f0f2f5;
|
|
}
|
|
|
|
.xl\:bg-light-softest {
|
|
background-color: #dfe3e8;
|
|
}
|
|
|
|
.xl\:bg-dark {
|
|
background-color: #212b35;
|
|
}
|
|
|
|
.xl\:bg-dark-soft {
|
|
background-color: #404e5c;
|
|
}
|
|
|
|
.xl\:bg-dark-softer {
|
|
background-color: #647382;
|
|
}
|
|
|
|
.xl\:bg-dark-softest {
|
|
background-color: #919eab;
|
|
}
|
|
|
|
.xl\:bg-red-dark {
|
|
background-color: #d43633;
|
|
}
|
|
|
|
.xl\:bg-red {
|
|
background-color: #f25451;
|
|
}
|
|
|
|
.xl\:bg-red-light {
|
|
background-color: #fa8785;
|
|
}
|
|
|
|
.xl\:bg-red-lightest {
|
|
background-color: #fff1f0;
|
|
}
|
|
|
|
.xl\:bg-orange-dark {
|
|
background-color: #f29500;
|
|
}
|
|
|
|
.xl\:bg-orange {
|
|
background-color: #ffb82b;
|
|
}
|
|
|
|
.xl\:bg-orange-light {
|
|
background-color: #ffd685;
|
|
}
|
|
|
|
.xl\:bg-orange-lightest {
|
|
background-color: #fff8eb;
|
|
}
|
|
|
|
.xl\:bg-yellow-dark {
|
|
background-color: #ffc400;
|
|
}
|
|
|
|
.xl\:bg-yellow {
|
|
background-color: #ffe14a;
|
|
}
|
|
|
|
.xl\:bg-yellow-light {
|
|
background-color: #ffea83;
|
|
}
|
|
|
|
.xl\:bg-yellow-lightest {
|
|
background-color: #fffbe5;
|
|
}
|
|
|
|
.xl\:bg-green-dark {
|
|
background-color: #34ae4c;
|
|
}
|
|
|
|
.xl\:bg-green {
|
|
background-color: #57d06f;
|
|
}
|
|
|
|
.xl\:bg-green-light {
|
|
background-color: #b1f3be;
|
|
}
|
|
|
|
.xl\:bg-green-lightest {
|
|
background-color: #eefff1;
|
|
}
|
|
|
|
.xl\:bg-teal-dark {
|
|
background-color: #249e9a;
|
|
}
|
|
|
|
.xl\:bg-teal {
|
|
background-color: #4dc0b5;
|
|
}
|
|
|
|
.xl\:bg-teal-light {
|
|
background-color: #9eebe4;
|
|
}
|
|
|
|
.xl\:bg-teal-lightest {
|
|
background-color: #eefffd;
|
|
}
|
|
|
|
.xl\:bg-blue-dark {
|
|
background-color: #3687c8;
|
|
}
|
|
|
|
.xl\:bg-blue {
|
|
background-color: #4aa2ea;
|
|
}
|
|
|
|
.xl\:bg-blue-light {
|
|
background-color: #acdaff;
|
|
}
|
|
|
|
.xl\:bg-blue-lightest {
|
|
background-color: #f1f9ff;
|
|
}
|
|
|
|
.xl\:bg-indigo-dark {
|
|
background-color: #4957a5;
|
|
}
|
|
|
|
.xl\:bg-indigo {
|
|
background-color: #6574cd;
|
|
}
|
|
|
|
.xl\:bg-indigo-light {
|
|
background-color: #bcc5fb;
|
|
}
|
|
|
|
.xl\:bg-indigo-lightest {
|
|
background-color: #f4f5ff;
|
|
}
|
|
|
|
.xl\:bg-purple-dark {
|
|
background-color: #714cb4;
|
|
}
|
|
|
|
.xl\:bg-purple {
|
|
background-color: #976ae6;
|
|
}
|
|
|
|
.xl\:bg-purple-light {
|
|
background-color: #ceb3ff;
|
|
}
|
|
|
|
.xl\:bg-purple-lightest {
|
|
background-color: #f7f3ff;
|
|
}
|
|
|
|
.xl\:bg-pink-dark {
|
|
background-color: #d84f7d;
|
|
}
|
|
|
|
.xl\:bg-pink {
|
|
background-color: #f66d9b;
|
|
}
|
|
|
|
.xl\:bg-pink-light {
|
|
background-color: #ffa5c3;
|
|
}
|
|
|
|
.xl\:bg-pink-lightest {
|
|
background-color: #fdf2f5;
|
|
}
|
|
|
|
.xl\:bg-cover {
|
|
background-size: cover;
|
|
}
|
|
|
|
.xl\:bg-contain {
|
|
background-size: contain;
|
|
}
|
|
|
|
.xl\:border {
|
|
border: 1px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-t {
|
|
border-top: 1px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-r {
|
|
border-right: 1px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-b {
|
|
border-bottom: 1px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-l {
|
|
border-left: 1px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-0 {
|
|
border: 0 solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-t-0 {
|
|
border-top: 0 solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-r-0 {
|
|
border-right: 0 solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-b-0 {
|
|
border-bottom: 0 solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-l-0 {
|
|
border-left: 0 solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-2 {
|
|
border: 2px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-t-2 {
|
|
border-top: 2px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-r-2 {
|
|
border-right: 2px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-b-2 {
|
|
border-bottom: 2px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-l-2 {
|
|
border-left: 2px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-4 {
|
|
border: 4px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-t-4 {
|
|
border-top: 4px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-r-4 {
|
|
border-right: 4px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-b-4 {
|
|
border-bottom: 4px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-l-4 {
|
|
border-left: 4px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-8 {
|
|
border: 8px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-t-8 {
|
|
border-top: 8px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-r-8 {
|
|
border-right: 8px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-b-8 {
|
|
border-bottom: 8px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-l-8 {
|
|
border-left: 8px solid #c5ced6;
|
|
}
|
|
|
|
.xl\:border-light {
|
|
border-color: #ffffff;
|
|
}
|
|
|
|
.xl\:border-light-soft {
|
|
border-color: #f7f9fa;
|
|
}
|
|
|
|
.xl\:border-light-softer {
|
|
border-color: #f0f2f5;
|
|
}
|
|
|
|
.xl\:border-dark {
|
|
border-color: #919eab;
|
|
}
|
|
|
|
.xl\:border-dark-soft {
|
|
border-color: #c5ced6;
|
|
}
|
|
|
|
.xl\:border-dark-softer {
|
|
border-color: #dfe3e8;
|
|
}
|
|
|
|
.xl\:border-light-overlay {
|
|
border-color: hsla(0, 0%, 0%, .2);
|
|
}
|
|
|
|
.xl\:border-light-overlay-soft {
|
|
border-color: hsla(0, 0%, 0%, .1);
|
|
}
|
|
|
|
.xl\:border-light-overlay-softer {
|
|
border-color: hsla(0, 0%, 0%, .05);
|
|
}
|
|
|
|
.xl\:border-dark-overlay {
|
|
border-color: hsla(0, 0%, 100%, 1);
|
|
}
|
|
|
|
.xl\:border-dark-overlay-soft {
|
|
border-color: hsla(0, 0%, 100%, .6);
|
|
}
|
|
|
|
.xl\:border-dark-overlay-softer {
|
|
border-color: hsla(0, 0%, 100%, .35);
|
|
}
|
|
|
|
.xl\:border-red-dark {
|
|
border-color: #d43633;
|
|
}
|
|
|
|
.xl\:border-red {
|
|
border-color: #f25451;
|
|
}
|
|
|
|
.xl\:border-red-light {
|
|
border-color: #fa8785;
|
|
}
|
|
|
|
.xl\:border-red-lightest {
|
|
border-color: #fff1f0;
|
|
}
|
|
|
|
.xl\:border-orange-dark {
|
|
border-color: #f29500;
|
|
}
|
|
|
|
.xl\:border-orange {
|
|
border-color: #ffb82b;
|
|
}
|
|
|
|
.xl\:border-orange-light {
|
|
border-color: #ffd685;
|
|
}
|
|
|
|
.xl\:border-orange-lightest {
|
|
border-color: #fff8eb;
|
|
}
|
|
|
|
.xl\:border-yellow-dark {
|
|
border-color: #ffc400;
|
|
}
|
|
|
|
.xl\:border-yellow {
|
|
border-color: #ffe14a;
|
|
}
|
|
|
|
.xl\:border-yellow-light {
|
|
border-color: #ffea83;
|
|
}
|
|
|
|
.xl\:border-yellow-lightest {
|
|
border-color: #fffbe5;
|
|
}
|
|
|
|
.xl\:border-green-dark {
|
|
border-color: #34ae4c;
|
|
}
|
|
|
|
.xl\:border-green {
|
|
border-color: #57d06f;
|
|
}
|
|
|
|
.xl\:border-green-light {
|
|
border-color: #b1f3be;
|
|
}
|
|
|
|
.xl\:border-green-lightest {
|
|
border-color: #eefff1;
|
|
}
|
|
|
|
.xl\:border-teal-dark {
|
|
border-color: #249e9a;
|
|
}
|
|
|
|
.xl\:border-teal {
|
|
border-color: #4dc0b5;
|
|
}
|
|
|
|
.xl\:border-teal-light {
|
|
border-color: #9eebe4;
|
|
}
|
|
|
|
.xl\:border-teal-lightest {
|
|
border-color: #eefffd;
|
|
}
|
|
|
|
.xl\:border-blue-dark {
|
|
border-color: #3687c8;
|
|
}
|
|
|
|
.xl\:border-blue {
|
|
border-color: #4aa2ea;
|
|
}
|
|
|
|
.xl\:border-blue-light {
|
|
border-color: #acdaff;
|
|
}
|
|
|
|
.xl\:border-blue-lightest {
|
|
border-color: #f1f9ff;
|
|
}
|
|
|
|
.xl\:border-indigo-dark {
|
|
border-color: #4957a5;
|
|
}
|
|
|
|
.xl\:border-indigo {
|
|
border-color: #6574cd;
|
|
}
|
|
|
|
.xl\:border-indigo-light {
|
|
border-color: #bcc5fb;
|
|
}
|
|
|
|
.xl\:border-indigo-lightest {
|
|
border-color: #f4f5ff;
|
|
}
|
|
|
|
.xl\:border-purple-dark {
|
|
border-color: #714cb4;
|
|
}
|
|
|
|
.xl\:border-purple {
|
|
border-color: #976ae6;
|
|
}
|
|
|
|
.xl\:border-purple-light {
|
|
border-color: #ceb3ff;
|
|
}
|
|
|
|
.xl\:border-purple-lightest {
|
|
border-color: #f7f3ff;
|
|
}
|
|
|
|
.xl\:border-pink-dark {
|
|
border-color: #d84f7d;
|
|
}
|
|
|
|
.xl\:border-pink {
|
|
border-color: #f66d9b;
|
|
}
|
|
|
|
.xl\:border-pink-light {
|
|
border-color: #ffa5c3;
|
|
}
|
|
|
|
.xl\:border-pink-lightest {
|
|
border-color: #fdf2f5;
|
|
}
|
|
|
|
.xl\:shadow-1 {
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .15);
|
|
}
|
|
|
|
.xl\:shadow-2 {
|
|
box-shadow: 0 3px 6px rgba(0, 0, 0, .12), 0 3px 6px rgba(0, 0, 0, .13);
|
|
}
|
|
|
|
.xl\:shadow-3 {
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, .13), 0 6px 6px rgba(0, 0, 0, .13);
|
|
}
|
|
|
|
.xl\:shadow-4 {
|
|
box-shadow: 0 14px 28px rgba(0, 0, 0, .16), 0 10px 10px rgba(0, 0, 0, .11);
|
|
}
|
|
|
|
.xl\:shadow-5 {
|
|
box-shadow: 0 19px 38px rgba(0, 0, 0, .18), 0 15px 12px rgba(0, 0, 0, .11);
|
|
}
|
|
|
|
.xl\:flex {
|
|
display: -webkit-box;
|
|
display: flex;
|
|
}
|
|
|
|
.xl\:inline-flex {
|
|
display: -webkit-inline-box;
|
|
display: inline-flex;
|
|
}
|
|
|
|
.xl\:flex-row {
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: normal;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.xl\:flex-row-reverse {
|
|
-webkit-box-orient: horizontal;
|
|
-webkit-box-direction: reverse;
|
|
flex-direction: row-reverse;
|
|
}
|
|
|
|
.xl\:flex-col {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: normal;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.xl\:flex-col-reverse {
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-direction: reverse;
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.xl\:flex-wrap {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.xl\:flex-wrap-reverse {
|
|
flex-wrap: wrap-reverse;
|
|
}
|
|
|
|
.xl\:flex-nowrap {
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.xl\:items-start {
|
|
-webkit-box-align: start;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.xl\:items-end {
|
|
-webkit-box-align: end;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.xl\:items-center {
|
|
-webkit-box-align: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.xl\:items-baseline {
|
|
-webkit-box-align: baseline;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.xl\:items-stretch {
|
|
-webkit-box-align: stretch;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.xl\:justify-start {
|
|
-webkit-box-pack: start;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.xl\:justify-end {
|
|
-webkit-box-pack: end;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.xl\:justify-center {
|
|
-webkit-box-pack: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.xl\:justify-between {
|
|
-webkit-box-pack: justify;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.xl\:justify-around {
|
|
justify-content: space-around;
|
|
}
|
|
|
|
.xl\:flex-auto {
|
|
-webkit-box-flex: 1;
|
|
flex: auto;
|
|
}
|
|
|
|
.xl\:flex-initial {
|
|
-webkit-box-flex: initial;
|
|
flex: initial;
|
|
}
|
|
|
|
.xl\:flex-none {
|
|
-webkit-box-flex: 0;
|
|
flex: none;
|
|
}
|
|
|
|
.xl\:flex-grow {
|
|
-webkit-box-flex: 1;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.xl\:flex-shrink {
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
.xl\:flex-no-grow {
|
|
-webkit-box-flex: 0;
|
|
flex-grow: 0;
|
|
}
|
|
|
|
.xl\:flex-no-shrink {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.xl\:bar {
|
|
color: blue;
|
|
}
|
|
|
|
.xl\:baz {
|
|
color: green;
|
|
}
|
|
}
|
|
|
|
/*# sourceMappingURL=tailwind.css.map */ |