123 lines
2.5 KiB
SCSS
123 lines
2.5 KiB
SCSS
.color-unset {
|
|
color: unset;
|
|
}
|
|
|
|
.line-break-anywhere {
|
|
line-break: anywhere;
|
|
}
|
|
|
|
.transition-200 {
|
|
transition: 200ms;
|
|
}
|
|
|
|
.rotate-180 {
|
|
transform: rotateX(180deg);
|
|
}
|
|
|
|
.min-h-screen {
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.outline-none {
|
|
outline: none;
|
|
}
|
|
|
|
/* Print utilities
|
|
------------------------------------------------------------------------------*/
|
|
@media print {
|
|
.no-print {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
/* Opacity utilities
|
|
------------------------------------------------------------------------------*/
|
|
.opacity-0 {
|
|
opacity: 0;
|
|
}
|
|
.opacity-60 {
|
|
opacity: 0.6;
|
|
}
|
|
.opacity-70 {
|
|
opacity: 0.7;
|
|
}
|
|
.opacity-100 {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Text utilities
|
|
------------------------------------------------------------------------------*/
|
|
.underline-dashed {
|
|
padding-bottom: $spacer-1;
|
|
background-image: linear-gradient(
|
|
to right,
|
|
var(--color-auto-gray-3) 50%,
|
|
transparent 0%
|
|
);
|
|
background-repeat: repeat-x;
|
|
background-position: bottom;
|
|
background-size: 10px 1px;
|
|
}
|
|
|
|
.font-weight-semibold {
|
|
font-weight: $font-weight-semibold;
|
|
}
|
|
|
|
/* List utilities
|
|
------------------------------------------------------------------------------*/
|
|
.list-style-inside {
|
|
list-style: inside;
|
|
}
|
|
|
|
/* Hover utilities
|
|
------------------------------------------------------------------------------*/
|
|
.hover\:color-bg-info:hover {
|
|
background: var(--color-bg-info);
|
|
}
|
|
|
|
/* Z-Index utilities
|
|
------------------------------------------------------------------------------*/
|
|
.-z-1 {
|
|
z-index: -1;
|
|
}
|
|
.z-1 {
|
|
z-index: 1;
|
|
}
|
|
.z-2 {
|
|
z-index: 2;
|
|
}
|
|
|
|
/* Gradient utilities
|
|
------------------------------------------------------------------------------*/
|
|
.fade-tertiary-left {
|
|
background: linear-gradient(to right, var(--color-bg-primary), transparent);
|
|
}
|
|
|
|
.fade-tertiary-right {
|
|
background: linear-gradient(to left, var(--color-bg-primary), transparent);
|
|
}
|
|
|
|
.fade-tertiary-bottom {
|
|
background: linear-gradient(to top, var(--color-bg-primary), transparent);
|
|
}
|
|
|
|
/* Blue primary button
|
|
------------------------------------------------------------------------------*/
|
|
.btn-primary-matte {
|
|
color: var(--color-text-inverse);
|
|
background-color: var(--color-auto-blue-5);
|
|
border-color: var(--color-btn-primary-border);
|
|
box-shadow: var(--color-btn-primary-shadow),
|
|
var(--color-btn-primary-inset-shadow);
|
|
}
|
|
|
|
.btn-primary-matte:hover {
|
|
background-color: var(--color-auto-blue-6);
|
|
}
|
|
|
|
/* Border colors
|
|
------------------------------------------------------------------------------*/
|
|
.color-border-transparent {
|
|
border-color: transparent !important;
|
|
}
|