lumo-css-framework
Version:
CSS framework for building web apps using Vaadin's Lumo theme
1,838 lines (1,754 loc) • 33.3 kB
CSS
/* === Screen readers === */
.sr-only {
border-width: 0;
clip: rect(0, 0, 0, 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
white-space: nowrap;
width: 1px;
}
/* === Background color === */
.bg-base {
background-color: var(--lumo-base-color);
}
.bg-transparent {
background-color: transparent;
}
.bg-contrast-5 {
background-color: var(--lumo-contrast-5pct);
}
.bg-contrast-10 {
background-color: var(--lumo-contrast-10pct);
}
.bg-contrast-20 {
background-color: var(--lumo-contrast-20pct);
}
.bg-contrast-30 {
background-color: var(--lumo-contrast-30pct);
}
.bg-contrast-40 {
background-color: var(--lumo-contrast-40pct);
}
.bg-contrast-50 {
background-color: var(--lumo-contrast-50pct);
}
.bg-contrast-60 {
background-color: var(--lumo-contrast-60pct);
}
.bg-contrast-70 {
background-color: var(--lumo-contrast-70pct);
}
.bg-contrast-80 {
background-color: var(--lumo-contrast-80pct);
}
.bg-contrast-90 {
background-color: var(--lumo-contrast-90pct);
}
.bg-contrast {
background-color: var(--lumo-contrast);
}
.bg-primary {
background-color: var(--lumo-primary-color);
}
.bg-primary-50 {
background-color: var(--lumo-primary-color-50pct);
}
.bg-primary-10 {
background-color: var(--lumo-primary-color-10pct);
}
.bg-error {
background-color: var(--lumo-error-color);
}
.bg-error-50 {
background-color: var(--lumo-error-color-50pct);
}
.bg-error-10 {
background-color: var(--lumo-error-color-10pct);
}
.bg-success {
background-color: var(--lumo-success-color);
}
.bg-success-50 {
background-color: var(--lumo-success-color-50pct);
}
.bg-success-10 {
background-color: var(--lumo-success-color-10pct);
}
/* === Border === */
.border-0 {
border: none;
}
.border {
border: 1px solid;
}
.border-b {
border-bottom: 1px solid;
}
.border-l {
border-left: 1px solid;
}
.border-r {
border-right: 1px solid;
}
.border-t {
border-top: 1px solid;
}
/* === Border color === */
.border-contrast-5 {
border-color: var(--lumo-contrast-5pct);
}
.border-contrast-10 {
border-color: var(--lumo-contrast-10pct);
}
.border-contrast-20 {
border-color: var(--lumo-contrast-20pct);
}
.border-contrast-30 {
border-color: var(--lumo-contrast-30pct);
}
.border-contrast-40 {
border-color: var(--lumo-contrast-40pct);
}
.border-contrast-50 {
border-color: var(--lumo-contrast-50pct);
}
.border-contrast-60 {
border-color: var(--lumo-contrast-60pct);
}
.border-contrast-70 {
border-color: var(--lumo-contrast-70pct);
}
.border-contrast-80 {
border-color: var(--lumo-contrast-80pct);
}
.border-contrast-90 {
border-color: var(--lumo-contrast-90pct);
}
.border-contrast {
border-color: var(--lumo-contrast);
}
.border-primary {
border-color: var(--lumo-primary-color);
}
.border-primary-50 {
border-color: var(--lumo-primary-color-50pct);
}
.border-primary-10 {
border-color: var(--lumo-primary-color-10pct);
}
.border-error {
border-color: var(--lumo-error-color);
}
.border-error-50 {
border-color: var(--lumo-error-color-50pct);
}
.border-error-10 {
border-color: var(--lumo-error-color-10pct);
}
.border-success {
border-color: var(--lumo-success-color);
}
.border-success-50 {
border-color: var(--lumo-success-color-50pct);
}
.border-success-10 {
border-color: var(--lumo-success-color-10pct);
}
/* === Border radius === */
.rounded-none {
border-radius: 0;
}
.rounded-s {
border-radius: var(--lumo-border-radius-s);
}
.rounded-m {
border-radius: var(--lumo-border-radius-m);
}
.rounded-l {
border-radius: var(--lumo-border-radius-l);
}
/* === Align content === */
.content-center {
align-content: center;
}
.content-end {
align-content: flex-end;
}
.content-start {
align-content: flex-start;
}
.content-around {
align-content: space-around;
}
.content-between {
align-content: space-between;
}
.content-evenly {
align-content: space-evenly;
}
.content-stretch {
align-content: stretch;
}
/* === Align items === */
.items-baseline {
align-items: baseline;
}
.items-center {
align-items: center;
}
.items-end {
align-items: flex-end;
}
.items-start {
align-items: flex-start;
}
.items-stretch {
align-items: stretch;
}
/* === Align self === */
.self-auto {
align-self: auto;
}
.self-baseline {
align-self: baseline;
}
.self-center {
align-self: center;
}
.self-end {
align-self: flex-end;
}
.self-start {
align-self: flex-start;
}
.self-stretch {
align-self: stretch;
}
/* === Justify content === */
.justify-center {
justify-content: center;
}
.justify-end {
justify-content: flex-end;
}
.justify-start {
justify-content: flex-start;
}
.justify-around {
justify-content: space-around;
}
.justify-between {
justify-content: space-between;
}
.justify-evenly {
justify-content: space-evenly;
}
/* === Box shadows === */
.shadow-xs {
box-shadow: var(--lumo-box-shadow-xs);
}
.shadow-s {
box-shadow: var(--lumo-box-shadow-s);
}
.shadow-m {
box-shadow: var(--lumo-box-shadow-m);
}
.shadow-l {
box-shadow: var(--lumo-box-shadow-l);
}
.shadow-xl {
box-shadow: var(--lumo-box-shadow-xl);
}
/* === Flex === */
.flex-auto {
flex: auto;
}
.flex-none {
flex: none;
}
/* === Flex direction === */
.flex-col {
flex-direction: column;
}
.flex-col-reverse {
flex-direction: column-reverse;
}
.flex-row {
flex-direction: row;
}
.flex-row-reverse {
flex-direction: row-reverse;
}
/* === Flex grow === */
.flex-grow-0 {
flex-grow: 0;
}
.flex-grow {
flex-grow: 1;
}
/* === Flex shrink === */
.flex-shrink-0 {
flex-shrink: 0;
}
.flex-shrink {
flex-shrink: 1;
}
/* === Flex wrap === */
.flex-nowrap {
flex-wrap: nowrap;
}
.flex-wrap {
flex-wrap: wrap;
}
.flex-wrap-reverse {
flex-wrap: wrap-reverse;
}
/* === Responsive design === */
@media (min-width: 640px) {
.sm\:flex-col {
flex-direction: column;
}
.sm\:flex-row {
flex-direction: row;
}
}
@media (min-width: 768px) {
.md\:flex-col {
flex-direction: column;
}
.md\:flex-row {
flex-direction: row;
}
}
@media (min-width: 1024px) {
.lg\:flex-col {
flex-direction: column;
}
.lg\:flex-row {
flex-direction: row;
}
}
@media (min-width: 1280px) {
.xl\:flex-col {
flex-direction: column;
}
.xl\:flex-row {
flex-direction: row;
}
}
@media (min-width: 1536px) {
.\32xl\:flex-col {
flex-direction: column;
}
.\32xl\:flex-row {
flex-direction: row;
}
}
/* === Gap === */
.gap-xs {
gap: var(--lumo-space-xs);
}
.gap-s {
gap: var(--lumo-space-s);
}
.gap-m {
gap: var(--lumo-space-m);
}
.gap-l {
gap: var(--lumo-space-l);
}
.gap-xl {
gap: var(--lumo-space-xl);
}
/* === Gap (column) === */
.gap-x-xs {
column-gap: var(--lumo-space-xs);
}
.gap-x-s {
column-gap: var(--lumo-space-s);
}
.gap-x-m {
column-gap: var(--lumo-space-m);
}
.gap-x-l {
column-gap: var(--lumo-space-l);
}
.gap-x-xl {
column-gap: var(--lumo-space-xl);
}
/* === Gap (row) === */
.gap-y-xs {
row-gap: var(--lumo-space-xs);
}
.gap-y-s {
row-gap: var(--lumo-space-s);
}
.gap-y-m {
row-gap: var(--lumo-space-m);
}
.gap-y-l {
row-gap: var(--lumo-space-l);
}
.gap-y-xl {
row-gap: var(--lumo-space-xl);
}
/* === Grid auto flow === */
.grid-flow-col {
grid-auto-flow: column;
}
.grid-flow-row {
grid-auto-flow: row;
}
/* === Grid columns === */
.grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7 {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-cols-8 {
grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-cols-9 {
grid-template-columns: repeat(9, minmax(0, 1fr));
}
.grid-cols-10 {
grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-11 {
grid-template-columns: repeat(11, minmax(0, 1fr));
}
.grid-cols-12 {
grid-template-columns: repeat(12, minmax(0, 1fr));
}
/* === Grid rows === */
.grid-rows-1 {
grid-template-rows: repeat(1, minmax(0, 1fr));
}
.grid-rows-2 {
grid-template-rows: repeat(2, minmax(0, 1fr));
}
.grid-rows-3 {
grid-template-rows: repeat(3, minmax(0, 1fr));
}
.grid-rows-4 {
grid-template-rows: repeat(4, minmax(0, 1fr));
}
.grid-rows-5 {
grid-template-rows: repeat(5, minmax(0, 1fr));
}
.grid-rows-6 {
grid-template-rows: repeat(6, minmax(0, 1fr));
}
/* === Span (column) === */
.col-span-1 {
grid-column: span 1 / span 1;
}
.col-span-2 {
grid-column: span 2 / span 2;
}
.col-span-3 {
grid-column: span 3 / span 3;
}
.col-span-4 {
grid-column: span 4 / span 4;
}
.col-span-5 {
grid-column: span 5 / span 5;
}
.col-span-6 {
grid-column: span 6 / span 6;
}
.col-span-7 {
grid-column: span 7 / span 7;
}
.col-span-8 {
grid-column: span 8 / span 8;
}
.col-span-9 {
grid-column: span 9 / span 9;
}
.col-span-10 {
grid-column: span 10 / span 10;
}
.col-span-11 {
grid-column: span 11 / span 11;
}
.col-span-12 {
grid-column: span 12 / span 12;
}
/* === Span (row) === */
.row-span-1 {
grid-row: span 1 / span 1;
}
.row-span-2 {
grid-row: span 2 / span 2;
}
.row-span-3 {
grid-row: span 3 / span 3;
}
.row-span-4 {
grid-row: span 4 / span 4;
}
.row-span-5 {
grid-row: span 5 / span 5;
}
.row-span-6 {
grid-row: span 6 / span 6;
}
/* === Responsive design === */
@media (min-width: 640px) {
.sm\:grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.sm\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.sm\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.sm\:grid-cols-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.sm\:grid-cols-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.sm\:grid-cols-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
.sm\:grid-cols-7 {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
.sm\:grid-cols-8 {
grid-template-columns: repeat(8, minmax(0, 1fr));
}
.sm\:grid-cols-9 {
grid-template-columns: repeat(9, minmax(0, 1fr));
}
.sm\:grid-cols-10 {
grid-template-columns: repeat(10, minmax(0, 1fr));
}
.sm\:grid-cols-11 {
grid-template-columns: repeat(11, minmax(0, 1fr));
}
.sm\:grid-cols-12 {
grid-template-columns: repeat(12, minmax(0, 1fr));
}
}
@media (min-width: 768px) {
.md\:grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.md\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.md\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.md\:grid-cols-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.md\:grid-cols-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.md\:grid-cols-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
.md\:grid-cols-7 {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
.md\:grid-cols-8 {
grid-template-columns: repeat(8, minmax(0, 1fr));
}
.md\:grid-cols-9 {
grid-template-columns: repeat(9, minmax(0, 1fr));
}
.md\:grid-cols-10 {
grid-template-columns: repeat(10, minmax(0, 1fr));
}
.md\:grid-cols-11 {
grid-template-columns: repeat(11, minmax(0, 1fr));
}
.md\:grid-cols-12 {
grid-template-columns: repeat(12, minmax(0, 1fr));
}
}
@media (min-width: 1024px) {
.lg\:grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.lg\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lg\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lg\:grid-cols-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.lg\:grid-cols-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.lg\:grid-cols-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
.lg\:grid-cols-7 {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
.lg\:grid-cols-8 {
grid-template-columns: repeat(8, minmax(0, 1fr));
}
.lg\:grid-cols-9 {
grid-template-columns: repeat(9, minmax(0, 1fr));
}
.lg\:grid-cols-10 {
grid-template-columns: repeat(10, minmax(0, 1fr));
}
.lg\:grid-cols-11 {
grid-template-columns: repeat(11, minmax(0, 1fr));
}
.lg\:grid-cols-12 {
grid-template-columns: repeat(12, minmax(0, 1fr));
}
}
@media (min-width: 1280px) {
.xl\:grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.xl\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.xl\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.xl\:grid-cols-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.xl\:grid-cols-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.xl\:grid-cols-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
.xl\:grid-cols-7 {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
.xl\:grid-cols-8 {
grid-template-columns: repeat(8, minmax(0, 1fr));
}
.xl\:grid-cols-9 {
grid-template-columns: repeat(9, minmax(0, 1fr));
}
.xl\:grid-cols-10 {
grid-template-columns: repeat(10, minmax(0, 1fr));
}
.xl\:grid-cols-11 {
grid-template-columns: repeat(11, minmax(0, 1fr));
}
.xl\:grid-cols-12 {
grid-template-columns: repeat(12, minmax(0, 1fr));
}
}
@media (min-width: 1536px) {
.\32xl\:grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
.\32xl\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.\32xl\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.\32xl\:grid-cols-4 {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.\32xl\:grid-cols-5 {
grid-template-columns: repeat(5, minmax(0, 1fr));
}
.\32xl\:grid-cols-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
.\32xl\:grid-cols-7 {
grid-template-columns: repeat(7, minmax(0, 1fr));
}
.\32xl\:grid-cols-8 {
grid-template-columns: repeat(8, minmax(0, 1fr));
}
.\32xl\:grid-cols-9 {
grid-template-columns: repeat(9, minmax(0, 1fr));
}
.\32xl\:grid-cols-10 {
grid-template-columns: repeat(10, minmax(0, 1fr));
}
.\32xl\:grid-cols-11 {
grid-template-columns: repeat(11, minmax(0, 1fr));
}
.\32xl\:grid-cols-12 {
grid-template-columns: repeat(12, minmax(0, 1fr));
}
}
/* === Box sizing === */
.box-border {
box-sizing: border-box;
}
.box-content {
box-sizing: content-box;
}
/* === Display === */
.block {
display: block;
}
.flex {
display: flex;
}
.hidden {
display: none;
}
.inline {
display: inline;
}
.inline-block {
display: inline-block;
}
.inline-flex {
display: inline-flex;
}
.inline-grid {
display: inline-grid;
}
.grid {
display: grid;
}
/* === Overflow === */
.overflow-auto {
overflow: auto;
}
.overflow-hidden {
overflow: hidden;
}
.overflow-scroll {
overflow: scroll;
}
/* === Position === */
.absolute {
position: absolute;
}
.fixed {
position: fixed;
}
.static {
position: static;
}
.sticky {
position: sticky;
}
.relative {
position: relative;
}
/* === Responsive design === */
@media (min-width: 640px) {
.sm\:flex {
display: flex;
}
.sm\:hidden {
display: none;
}
}
@media (min-width: 768px) {
.md\:flex {
display: flex;
}
.md\:hidden {
display: none;
}
}
@media (min-width: 1024px) {
.lg\:flex {
display: flex;
}
.lg\:hidden {
display: none;
}
}
@media (min-width: 1280px) {
.xl\:flex {
display: flex;
}
.xl\:hidden {
display: none;
}
}
@media (min-width: 1536px) {
.\32xl\:flex {
display: flex;
}
.\32xl\:hidden {
display: none;
}
}
/* === Height === */
.h-0 {
height: 0;
}
.h-xs {
height: var(--lumo-size-xs);
}
.h-s {
height: var(--lumo-size-s);
}
.h-m {
height: var(--lumo-size-m);
}
.h-l {
height: var(--lumo-size-l);
}
.h-xl {
height: var(--lumo-size-xl);
}
.h-auto {
height: auto;
}
.h-full {
height: 100%;
}
.h-screen {
height: 100vh;
}
/* === Height (max) === */
.max-h-full {
max-height: 100%;
}
.max-h-screen {
max-height: 100vh;
}
/* === Height (min) === */
.min-h-0 {
min-height: 0;
}
.min-h-full {
min-height: 100%;
}
.min-h-screen {
min-height: 100vh;
}
/* === Icon sizing === */
.icon-s {
height: var(--lumo-icon-size-s);
width: var(--lumo-icon-size-s);
}
.icon-m {
height: var(--lumo-icon-size-m);
width: var(--lumo-icon-size-m);
}
.icon-l {
height: var(--lumo-icon-size-l);
width: var(--lumo-icon-size-l);
}
/* === Width === */
.w-xs {
width: var(--lumo-size-xs);
}
.w-s {
width: var(--lumo-size-s);
}
.w-m {
width: var(--lumo-size-m);
}
.w-l {
width: var(--lumo-size-l);
}
.w-xl {
width: var(--lumo-size-xl);
}
.w-auto {
width: auto;
}
.w-full {
width: 100%;
}
/* === Width (max) === */
.max-w-full {
max-width: 100%;
}
.max-w-max {
max-width: max-content;
}
.max-w-min {
max-width: min-content;
}
.max-w-screen-sm {
max-width: 640px;
}
.max-w-screen-md {
max-width: 768px;
}
.max-w-screen-lg {
max-width: 1024px;
}
.max-w-screen-xl {
max-width: 1280px;
}
.max-w-screen-2xl {
max-width: 1536px;
}
/* === Width (min) === */
.min-w-0 {
min-width: 0;
}
.min-w-full {
min-width: 100%;
}
.min-w-max {
min-width: max-content;
}
.min-w-min {
min-width: min-content;
}
/* === Margin === */
.m-auto {
margin: auto;
}
.m-0 {
margin: 0;
}
.m-xs {
margin: var(--lumo-space-xs);
}
.m-s {
margin: var(--lumo-space-s);
}
.m-m {
margin: var(--lumo-space-m);
}
.m-l {
margin: var(--lumo-space-l);
}
.m-xl {
margin: var(--lumo-space-xl);
}
/* === Margin (bottom) === */
.mb-auto {
margin-bottom: auto;
}
.mb-0 {
margin-bottom: 0;
}
.mb-xs {
margin-bottom: var(--lumo-space-xs);
}
.mb-s {
margin-bottom: var(--lumo-space-s);
}
.mb-m {
margin-bottom: var(--lumo-space-m);
}
.mb-l {
margin-bottom: var(--lumo-space-l);
}
.mb-xl {
margin-bottom: var(--lumo-space-xl);
}
/* === Margin (end) === */
.me-auto {
margin-inline-end: auto;
}
.me-0 {
margin-inline-end: 0;
}
.me-xs {
margin-inline-end: var(--lumo-space-xs);
}
.me-s {
margin-inline-end: var(--lumo-space-s);
}
.me-m {
margin-inline-end: var(--lumo-space-m);
}
.me-l {
margin-inline-end: var(--lumo-space-l);
}
.me-xl {
margin-inline-end: var(--lumo-space-xl);
}
/* === Margin (horizontal) === */
.mx-auto {
margin-left: auto;
margin-right: auto;
}
.mx-0 {
margin-left: 0;
margin-right: 0;
}
.mx-xs {
margin-left: var(--lumo-space-xs);
margin-right: var(--lumo-space-xs);
}
.mx-s {
margin-left: var(--lumo-space-s);
margin-right: var(--lumo-space-s);
}
.mx-m {
margin-left: var(--lumo-space-m);
margin-right: var(--lumo-space-m);
}
.mx-l {
margin-left: var(--lumo-space-l);
margin-right: var(--lumo-space-l);
}
.mx-xl {
margin-left: var(--lumo-space-xl);
margin-right: var(--lumo-space-xl);
}
/* === Margin (left) === */
.ml-auto {
margin-left: auto;
}
.ml-0 {
margin-left: 0;
}
.ml-xs {
margin-left: var(--lumo-space-xs);
}
.ml-s {
margin-left: var(--lumo-space-s);
}
.ml-m {
margin-left: var(--lumo-space-m);
}
.ml-l {
margin-left: var(--lumo-space-l);
}
.ml-xl {
margin-left: var(--lumo-space-xl);
}
/* === Margin (right) === */
.mr-auto {
margin-right: auto;
}
.mr-0 {
margin-right: 0;
}
.mr-xs {
margin-right: var(--lumo-space-xs);
}
.mr-s {
margin-right: var(--lumo-space-s);
}
.mr-m {
margin-right: var(--lumo-space-m);
}
.mr-l {
margin-right: var(--lumo-space-l);
}
.mr-xl {
margin-right: var(--lumo-space-xl);
}
/* === Margin (start) === */
.ms-auto {
margin-inline-start: auto;
}
.ms-0 {
margin-inline-start: 0;
}
.ms-xs {
margin-inline-start: var(--lumo-space-xs);
}
.ms-s {
margin-inline-start: var(--lumo-space-s);
}
.ms-m {
margin-inline-start: var(--lumo-space-m);
}
.ms-l {
margin-inline-start: var(--lumo-space-l);
}
.ms-xl {
margin-inline-start: var(--lumo-space-xl);
}
/* === Margin (top) === */
.mt-auto {
margin-top: auto;
}
.mt-0 {
margin-top: 0;
}
.mt-xs {
margin-top: var(--lumo-space-xs);
}
.mt-s {
margin-top: var(--lumo-space-s);
}
.mt-m {
margin-top: var(--lumo-space-m);
}
.mt-l {
margin-top: var(--lumo-space-l);
}
.mt-xl {
margin-top: var(--lumo-space-xl);
}
/* === Margin (vertical) === */
.my-auto {
margin-bottom: auto;
margin-top: auto;
}
.my-0 {
margin-bottom: 0;
margin-top: 0;
}
.my-xs {
margin-bottom: var(--lumo-space-xs);
margin-top: var(--lumo-space-xs);
}
.my-s {
margin-bottom: var(--lumo-space-s);
margin-top: var(--lumo-space-s);
}
.my-m {
margin-bottom: var(--lumo-space-m);
margin-top: var(--lumo-space-m);
}
.my-l {
margin-bottom: var(--lumo-space-l);
margin-top: var(--lumo-space-l);
}
.my-xl {
margin-bottom: var(--lumo-space-xl);
margin-top: var(--lumo-space-xl);
}
/* === Padding === */
.p-0 {
padding: 0;
}
.p-xs {
padding: var(--lumo-space-xs);
}
.p-s {
padding: var(--lumo-space-s);
}
.p-m {
padding: var(--lumo-space-m);
}
.p-l {
padding: var(--lumo-space-l);
}
.p-xl {
padding: var(--lumo-space-xl);
}
/* === Padding (bottom) === */
.pb-0 {
padding-bottom: 0;
}
.pb-xs {
padding-bottom: var(--lumo-space-xs);
}
.pb-s {
padding-bottom: var(--lumo-space-s);
}
.pb-m {
padding-bottom: var(--lumo-space-m);
}
.pb-l {
padding-bottom: var(--lumo-space-l);
}
.pb-xl {
padding-bottom: var(--lumo-space-xl);
}
/* === Padding (end) === */
.pe-0 {
padding-inline-end: 0;
}
.pe-xs {
padding-inline-end: var(--lumo-space-xs);
}
.pe-s {
padding-inline-end: var(--lumo-space-s);
}
.pe-m {
padding-inline-end: var(--lumo-space-m);
}
.pe-l {
padding-inline-end: var(--lumo-space-l);
}
.pe-xl {
padding-inline-end: var(--lumo-space-xl);
}
/* === Padding (horizontal) === */
.px-0 {
padding-left: 0;
padding-right: 0;
}
.px-xs {
padding-left: var(--lumo-space-xs);
padding-right: var(--lumo-space-xs);
}
.px-s {
padding-left: var(--lumo-space-s);
padding-right: var(--lumo-space-s);
}
.px-m {
padding-left: var(--lumo-space-m);
padding-right: var(--lumo-space-m);
}
.px-l {
padding-left: var(--lumo-space-l);
padding-right: var(--lumo-space-l);
}
.px-xl {
padding-left: var(--lumo-space-xl);
padding-right: var(--lumo-space-xl);
}
/* === Padding (left) === */
.pl-0 {
padding-left: 0;
}
.pl-xs {
padding-left: var(--lumo-space-xs);
}
.pl-s {
padding-left: var(--lumo-space-s);
}
.pl-m {
padding-left: var(--lumo-space-m);
}
.pl-l {
padding-left: var(--lumo-space-l);
}
.pl-xl {
padding-left: var(--lumo-space-xl);
}
/* === Padding (right) === */
.pr-0 {
padding-right: 0;
}
.pr-xs {
padding-right: var(--lumo-space-xs);
}
.pr-s {
padding-right: var(--lumo-space-s);
}
.pr-m {
padding-right: var(--lumo-space-m);
}
.pr-l {
padding-right: var(--lumo-space-l);
}
.pr-xl {
padding-right: var(--lumo-space-xl);
}
/* === Padding (start) === */
.ps-0 {
padding-inline-start: 0;
}
.ps-xs {
padding-inline-start: var(--lumo-space-xs);
}
.ps-s {
padding-inline-start: var(--lumo-space-s);
}
.ps-m {
padding-inline-start: var(--lumo-space-m);
}
.ps-l {
padding-inline-start: var(--lumo-space-l);
}
.ps-xl {
padding-inline-start: var(--lumo-space-xl);
}
/* === Padding (top) === */
.pt-0 {
padding-top: 0;
}
.pt-xs {
padding-top: var(--lumo-space-xs);
}
.pt-s {
padding-top: var(--lumo-space-s);
}
.pt-m {
padding-top: var(--lumo-space-m);
}
.pt-l {
padding-top: var(--lumo-space-l);
}
.pt-xl {
padding-top: var(--lumo-space-xl);
}
/* === Padding (vertical) === */
.py-0 {
padding-bottom: 0;
padding-top: 0;
}
.py-xs {
padding-bottom: var(--lumo-space-xs);
padding-top: var(--lumo-space-xs);
}
.py-s {
padding-bottom: var(--lumo-space-s);
padding-top: var(--lumo-space-s);
}
.py-m {
padding-bottom: var(--lumo-space-m);
padding-top: var(--lumo-space-m);
}
.py-l {
padding-bottom: var(--lumo-space-l);
padding-top: var(--lumo-space-l);
}
.py-xl {
padding-bottom: var(--lumo-space-xl);
padding-top: var(--lumo-space-xl);
}
/* === Spacing === */
.space-xs > *:not(:last-child) {
margin: var(--lumo-space-xs);
}
.space-s > *:not(:last-child) {
margin: var(--lumo-space-s);
}
.space-m > *:not(:last-child) {
margin: var(--lumo-space-m);
}
.space-l > *:not(:last-child) {
margin: var(--lumo-space-l);
}
.space-xl > *:not(:last-child) {
margin: var(--lumo-space-xl);
}
/* === Spacing (bottom) === */
.spacing-b-xs > *:not(:last-child) {
margin-bottom: var(--lumo-space-xs);
}
.spacing-b-s > *:not(:last-child) {
margin-bottom: var(--lumo-space-s);
}
.spacing-b-m > *:not(:last-child) {
margin-bottom: var(--lumo-space-m);
}
.spacing-b-l > *:not(:last-child) {
margin-bottom: var(--lumo-space-l);
}
.spacing-b-xl > *:not(:last-child) {
margin-bottom: var(--lumo-space-xl);
}
/* === Spacing (end) === */
.spacing-e-xs > *:not(:last-child) {
margin-inline-end: var(--lumo-space-xs);
}
.spacing-e-s > *:not(:last-child) {
margin-inline-end: var(--lumo-space-s);
}
.spacing-e-m > *:not(:last-child) {
margin-inline-end: var(--lumo-space-m);
}
.spacing-e-l > *:not(:last-child) {
margin-inline-end: var(--lumo-space-l);
}
.spacing-e-xl > *:not(:last-child) {
margin-inline-end: var(--lumo-space-xl);
}
/* === Spacing (horizontal) === */
.spacing-x-xs > *:not(:last-child) {
margin-left: var(--lumo-space-xs);
margin-right: var(--lumo-space-xs);
}
.spacing-x-s > *:not(:last-child) {
margin-left: var(--lumo-space-s);
margin-right: var(--lumo-space-s);
}
.spacing-x-m > *:not(:last-child) {
margin-left: var(--lumo-space-m);
margin-right: var(--lumo-space-m);
}
.spacing-x-l > *:not(:last-child) {
margin-left: var(--lumo-space-l);
margin-right: var(--lumo-space-l);
}
.spacing-x-xl > *:not(:last-child) {
margin-left: var(--lumo-space-xl);
margin-right: var(--lumo-space-xl);
}
/* === Spacing (left) === */
.spacing-l-xs > *:not(:last-child) {
margin-left: var(--lumo-space-xs);
}
.spacing-l-s > *:not(:last-child) {
margin-left: var(--lumo-space-s);
}
.spacing-l-m > *:not(:last-child) {
margin-left: var(--lumo-space-m);
}
.spacing-l-l > *:not(:last-child) {
margin-left: var(--lumo-space-l);
}
.spacing-l-xl > *:not(:last-child) {
margin-left: var(--lumo-space-xl);
}
/* === Spacing (right) === */
.spacing-r-xs > *:not(:last-child) {
margin-right: var(--lumo-space-xs);
}
.spacing-r-s > *:not(:last-child) {
margin-right: var(--lumo-space-s);
}
.spacing-r-m > *:not(:last-child) {
margin-right: var(--lumo-space-m);
}
.spacing-r-l > *:not(:last-child) {
margin-right: var(--lumo-space-l);
}
.spacing-r-xl > *:not(:last-child) {
margin-right: var(--lumo-space-xl);
}
/* === Spacing (start) === */
.spacing-s-xs > *:not(:last-child) {
margin-inline-start: var(--lumo-space-xs);
}
.spacing-s-s > *:not(:last-child) {
margin-inline-start: var(--lumo-space-s);
}
.spacing-s-m > *:not(:last-child) {
margin-inline-start: var(--lumo-space-m);
}
.spacing-s-l > *:not(:last-child) {
margin-inline-start: var(--lumo-space-l);
}
.spacing-s-xl > *:not(:last-child) {
margin-inline-start: var(--lumo-space-xl);
}
/* === Spacing (top) === */
.spacing-t-xs > *:not(:last-child) {
margin-top: var(--lumo-space-xs);
}
.spacing-t-s > *:not(:last-child) {
margin-top: var(--lumo-space-s);
}
.spacing-t-m > *:not(:last-child) {
margin-top: var(--lumo-space-m);
}
.spacing-t-l > *:not(:last-child) {
margin-top: var(--lumo-space-l);
}
.spacing-t-xl > *:not(:last-child) {
margin-top: var(--lumo-space-xl);
}
/* === Spacing (vertical) === */
.spacing-y-xs > *:not(:last-child) {
margin-bottom: var(--lumo-space-xs);
margin-top: var(--lumo-space-xs);
}
.spacing-y-s > *:not(:last-child) {
margin-bottom: var(--lumo-space-s);
margin-top: var(--lumo-space-s);
}
.spacing-y-m > *:not(:last-child) {
margin-bottom: var(--lumo-space-m);
margin-top: var(--lumo-space-m);
}
.spacing-y-l > *:not(:last-child) {
margin-bottom: var(--lumo-space-l);
margin-top: var(--lumo-space-l);
}
.spacing-y-xl > *:not(:last-child) {
margin-bottom: var(--lumo-space-xl);
margin-top: var(--lumo-space-xl);
}
/* === Font size === */
.text-2xs {
font-size: var(--lumo-font-size-xxs);
}
.text-xs {
font-size: var(--lumo-font-size-xs);
}
.text-s {
font-size: var(--lumo-font-size-s);
}
.text-m {
font-size: var(--lumo-font-size-m);
}
.text-l {
font-size: var(--lumo-font-size-l);
}
.text-xl {
font-size: var(--lumo-font-size-xl);
}
.text-2xl {
font-size: var(--lumo-font-size-xxl);
}
.text-3xl {
font-size: var(--lumo-font-size-xxxl);
}
/* === Font weight === */
.font-thin {
font-weight: 100;
}
.font-extralight {
font-weight: 200;
}
.font-light {
font-weight: 300;
}
.font-normal {
font-weight: 400;
}
.font-medium {
font-weight: 500;
}
.font-semibold {
font-weight: 600;
}
.font-bold {
font-weight: 700;
}
.font-extrabold {
font-weight: 800;
}
.font-black {
font-weight: 900;
}
/* === Line height === */
.leading-none {
line-height: 1;
}
.leading-xs {
line-height: var(--lumo-line-height-xs);
}
.leading-s {
line-height: var(--lumo-line-height-s);
}
.leading-m {
line-height: var(--lumo-line-height-m);
}
/* === List style type === */
.list-none {
list-style-type: none;
}
/* === Text alignment === */
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.text-justify {
text-align: justify;
}
/* === Text color === */
.text-header {
color: var(--lumo-header-text-color);
}
.text-body {
color: var(--lumo-body-text-color);
}
.text-secondary {
color: var(--lumo-secondary-text-color);
}
.text-tertiary {
color: var(--lumo-tertiary-text-color);
}
.text-disabled {
color: var(--lumo-disabled-text-color);
}
.text-primary {
color: var(--lumo-primary-text-color);
}
.text-primary-contrast {
color: var(--lumo-primary-contrast-color);
}
.text-error {
color: var(--lumo-error-text-color);
}
.text-error-contrast {
color: var(--lumo-error-contrast-color);
}
.text-success {
color: var(--lumo-success-text-color);
}
.text-success-contrast {
color: var(--lumo-success-contrast-color);
}
/* === Text overflow === */
.overflow-clip {
text-overflow: clip;
}
.overflow-ellipsis {
text-overflow: ellipsis;
}
/* === Text transform === */
.capitalize {
text-transform: capitalize;
}
.lowercase {
text-transform: lowercase;
}
.uppercase {
text-transform: uppercase;
}
/* === Whitespace === */
.whitespace-normal {
white-space: normal;
}
.whitespace-nowrap {
white-space: nowrap;
}
.whitespace-pre {
white-space: pre;
}
.whitespace-pre-line {
white-space: pre-line;
}
.whitespace-pre-wrap {
white-space: pre-wrap;
}
/* === Responsive design === */
@media (min-width: 640px) {
.sm\:text-2xs {
font-size: var(--lumo-font-size-xxs);
}
.sm\:text-xs {
font-size: var(--lumo-font-size-xs);
}
.sm\:text-s {
font-size: var(--lumo-font-size-s);
}
.sm\:text-m {
font-size: var(--lumo-font-size-m);
}
.sm\:text-l {
font-size: var(--lumo-font-size-l);
}
.sm\:text-xl {
font-size: var(--lumo-font-size-xl);
}
.sm\:text-2xl {
font-size: var(--lumo-font-size-xxl);
}
.sm\:text-3xl {
font-size: var(--lumo-font-size-xxxl);
}
}
@media (min-width: 768px) {
.md\:text-2xs {
font-size: var(--lumo-font-size-xxs);
}
.md\:text-xs {
font-size: var(--lumo-font-size-xs);
}
.md\:text-s {
font-size: var(--lumo-font-size-s);
}
.md\:text-m {
font-size: var(--lumo-font-size-m);
}
.md\:text-l {
font-size: var(--lumo-font-size-l);
}
.md\:text-xl {
font-size: var(--lumo-font-size-xl);
}
.md\:text-2xl {
font-size: var(--lumo-font-size-xxl);
}
.md\:text-3xl {
font-size: var(--lumo-font-size-xxxl);
}
}
@media (min-width: 1024px) {
.lg\:text-2xs {
font-size: var(--lumo-font-size-xxs);
}
.lg\:text-xs {
font-size: var(--lumo-font-size-xs);
}
.lg\:text-s {
font-size: var(--lumo-font-size-s);
}
.lg\:text-m {
font-size: var(--lumo-font-size-m);
}
.lg\:text-l {
font-size: var(--lumo-font-size-l);
}
.lg\:text-xl {
font-size: var(--lumo-font-size-xl);
}
.lg\:text-2xl {
font-size: var(--lumo-font-size-xxl);
}
.lg\:text-3xl {
font-size: var(--lumo-font-size-xxxl);
}
}
@media (min-width: 1280px) {
.xl\:text-2xs {
font-size: var(--lumo-font-size-xxs);
}
.xl\:text-xs {
font-size: var(--lumo-font-size-xs);
}
.xl\:text-s {
font-size: var(--lumo-font-size-s);
}
.xl\:text-m {
font-size: var(--lumo-font-size-m);
}
.xl\:text-l {
font-size: var(--lumo-font-size-l);
}
.xl\:text-xl {
font-size: var(--lumo-font-size-xl);
}
.xl\:text-2xl {
font-size: var(--lumo-font-size-xxl);
}
.xl\:text-3xl {
font-size: var(--lumo-font-size-xxxl);
}
}
@media (min-width: 1536px) {
.\32xl\:text-2xs {
font-size: var(--lumo-font-size-xxs);
}
.\32xl\:text-xs {
font-size: var(--lumo-font-size-xs);
}
.\32xl\:text-s {
font-size: var(--lumo-font-size-s);
}
.\32xl\:text-m {
font-size: var(--lumo-font-size-m);
}
.\32xl\:text-l {
font-size: var(--lumo-font-size-l);
}
.\32xl\:text-xl {
font-size: var(--lumo-font-size-xl);
}
.\32xl\:text-2xl {
font-size: var(--lumo-font-size-xxl);
}
.\32xl\:text-3xl {
font-size: var(--lumo-font-size-xxxl);
}
}