/
task-tracker
/
TaskTracker.UI
Обзор
Документация
Войти
/
task-tracker
/
TaskTracker.UI
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
src/styles/_text.scss
182 строки
3 KB
Ametusik
#1
: Архитектура проекта
28 апр 2025, 12:44
28 апр 2025, 12:44
f47df22
Код
Авторство
О чём код?
@use "colors"; .text-muted { color: colors.$muted-text-color; } .text-raised { color: colors.$default-text-color; } .text-raised-inverse { color: colors.$default-text-color-inverse; } .text-bold { font-weight: bold!important; } .text-underline { text-decoration: underline; } .text-italic { font-style: italic; } .text-center { text-align: center; } .text-left { text-align: left; } .text-right { text-align: right; } .text-wrap { text-wrap: wrap!important; } .text-no-wrap { text-wrap: nowrap!important; } .text-overflow { overflow: hidden; text-overflow: ellipsis; } .word-wrap { word-wrap: break-word!important; text-wrap: unset!important; } .display-6 { font-size: 1.5rem; font-weight: 300; line-height: 1; } .display-5 { font-size: 2.5rem; font-weight: 300; line-height: 1.2; } .display-4 { font-size: 3.5rem; font-weight: 300; line-height: 1.2; } .display-3 { font-size: 4.5rem; font-weight: 300; line-height: 1.2; } .display-2 { font-size: 5.5rem; font-weight: 300; line-height: 1.2; } .display-1 { font-size: 6.5rem; font-weight: 300; line-height: 1.2; } .text-10 { font-size: 10px; line-height: 12px; } .text-12 { font-size: 12px; line-height: 14px; } .text-14 { font-size: 14px; line-height: 16px; } .text-18 { font-size: 18px; line-height: 20px; } .label { font-size: 14px; height: 14px; line-height: 14px; } .link { text-decoration-color: colors.$link-text-color; text-decoration-line: none; color: colors.$link-text-color; } .text-blue { color: colors.$text-blue-color!important; } .text-success { color: colors.$text-success-color!important; } .text-info { color: colors.$text-info-color!important; } .text-warning { color: colors.$text-warning-color!important; } .text-error { color: colors.$text-error-color!important; } .field-block { display: flex; box-sizing: border-box; position: relative; min-height: 34px; max-width: 100%; min-width: 100px; justify-content: left; align-items: flex-start; padding-top: 6px; .label { display: block; box-sizing: border-box; position: absolute; color: colors.$text-blue-color; font-size: 14px; top: -3px; left: 0; font-family: Roboto, sans-serif; font-weight: 700; line-height: 0; text-overflow: clip; } .field { font-size: 14px; color: colors.$muted-text-color; font-weight: bold; display: block; box-sizing: border-box; line-height: 1.2; } } .font-regular { font-weight: 400; }