2019-02-24 07:19:06 +03:00
|
|
|
/*
|
|
|
|
|
|
|
|
Media Query Extensions:
|
|
|
|
-ns = not-small
|
|
|
|
-m = medium
|
|
|
|
-l = large
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
:root {
|
2020-06-08 23:22:58 +03:00
|
|
|
--lh-1-0: 1.0em;
|
2019-02-24 07:19:06 +03:00
|
|
|
--lh-1-1: 1.1em;
|
|
|
|
--lh-1-3: 1.333em;
|
|
|
|
--lh-1-4: 1.4em;
|
|
|
|
--lh-1-6: 1.6em;
|
|
|
|
--lh-2-0: 2.0em;
|
|
|
|
}
|
|
|
|
|
2020-06-08 23:22:58 +03:00
|
|
|
.lh-1 { line-height: var(--lh-1-0); }
|
2019-02-24 07:19:06 +03:00
|
|
|
.lh-solid { line-height: var(--lh-1-1); }
|
|
|
|
.lh-heading { line-height: var(--lh-1-3); }
|
|
|
|
.lh-title { line-height: var(--lh-1-4); }
|
|
|
|
.lh-copy { line-height: var(--lh-1-6); }
|
|
|
|
.lh-list { line-height: 3.2rem; }
|
|
|
|
.lh-code { line-height: var(--lh-1-3); }
|
2019-10-03 13:56:31 +03:00
|
|
|
.lh-zero { line-height: 0; }
|
2019-02-24 07:19:06 +03:00
|
|
|
|
|
|
|
@media (--breakpoint-not-small) {
|
2020-06-08 23:22:58 +03:00
|
|
|
.lh-1-ns { line-height: var(--lh-1-0); }
|
2019-02-24 07:19:06 +03:00
|
|
|
.lh-solid-ns { line-height: var(--lh-1-1); }
|
|
|
|
.lh-heading-ns { line-height: var(--lh-1-3); }
|
|
|
|
.lh-title-ns { line-height: var(--lh-1-4); }
|
|
|
|
.lh-copy-ns { line-height: var(--lh-1-6); }
|
|
|
|
.lh-list-ns { line-height: var(--lh-2-0); }
|
|
|
|
.lh-code-ns { line-height: var(--lh-1-3); }
|
2019-10-03 13:56:31 +03:00
|
|
|
.lh-zero-ns { line-height: 0; }
|
2019-02-24 07:19:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (--breakpoint-medium) {
|
2020-06-08 23:22:58 +03:00
|
|
|
.lh-1-m { line-height: var(--lh-1-0); }
|
2019-02-24 07:19:06 +03:00
|
|
|
.lh-solid-m { line-height: var(--lh-1-1); }
|
|
|
|
.lh-heading-m { line-height: var(--lh-1-3); }
|
|
|
|
.lh-title-m { line-height: var(--lh-1-4); }
|
|
|
|
.lh-copy-m { line-height: var(--lh-1-6); }
|
|
|
|
.lh-list-m { line-height: var(--lh-2-0); }
|
|
|
|
.lh-code-m { line-height: var(--lh-1-3); }
|
2019-10-03 13:56:31 +03:00
|
|
|
.lh-zero-m { line-height: 0; }
|
2019-02-24 07:19:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (--breakpoint-large) {
|
2020-06-08 23:22:58 +03:00
|
|
|
.lh-1-l { line-height: var(--lh-1-0); }
|
2019-02-24 07:19:06 +03:00
|
|
|
.lh-solid-l { line-height: var(--lh-1-1); }
|
|
|
|
.lh-heading-l { line-height: var(--lh-1-3); }
|
|
|
|
.lh-title-l { line-height: var(--lh-1-4); }
|
|
|
|
.lh-copy-l { line-height: var(--lh-1-6); }
|
|
|
|
.lh-list-l { line-height: var(--lh-2-0); }
|
|
|
|
.lh-code-l { line-height: var(--lh-1-3); }
|
2019-10-03 13:56:31 +03:00
|
|
|
.lh-zero-l { line-height: 0; }
|
2019-02-24 07:19:06 +03:00
|
|
|
}
|