diff options
| author | Darin Dimitroff <d@thecrazyones.agency> | 2016-11-22 13:07:51 +0200 |
|---|---|---|
| committer | Darin Dimitroff <d@thecrazyones.agency> | 2016-11-22 13:07:51 +0200 |
| commit | dedfd8a8098db999f81a55a845e0e4d041f9d7a8 (patch) | |
| tree | a2b93f205083ba4f1c11c9e8f3b54c384cce1bc9 /src/css/imports/_line-height.css | |
| parent | 4b9c3e021037a5df04df7e8c804d979501c136ad (diff) | |
Adds Tachyons
Diffstat (limited to 'src/css/imports/_line-height.css')
| -rwxr-xr-x | src/css/imports/_line-height.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/css/imports/_line-height.css b/src/css/imports/_line-height.css new file mode 100755 index 0000000..afbef0d --- /dev/null +++ b/src/css/imports/_line-height.css @@ -0,0 +1,34 @@ +/* + + LINE HEIGHT / LEADING + Docs: http://tachyons.io/docs/typography/line-height + + Media Query Extensions: + -ns = not-small + -m = medium + -l = large + +*/ + + .lh-solid { line-height: 1; } + .lh-title { line-height: 1.25; } + .lh-copy { line-height: 1.5; } + +@media (--breakpoint-not-small) { + .lh-solid-ns { line-height: 1; } + .lh-title-ns { line-height: 1.25; } + .lh-copy-ns { line-height: 1.5; } +} + +@media (--breakpoint-medium) { + .lh-solid-m { line-height: 1; } + .lh-title-m { line-height: 1.25; } + .lh-copy-m { line-height: 1.5; } +} + +@media (--breakpoint-large) { + .lh-solid-l { line-height: 1; } + .lh-title-l { line-height: 1.25; } + .lh-copy-l { line-height: 1.5; } +} + |
