mirror of
https://github.com/tachyons-css/tachyons.git
synced 2026-02-06 14:26:46 +00:00
First pass at integrating cms module
This commit is contained in:
parent
862d2cc0b5
commit
beae1111f7
@ -1862,6 +1862,20 @@ code, .code { font-family: Consolas, monaco, monospace; }
|
||||
.z-inherit { z-index: inherit; }
|
||||
.z-initial { z-index: initial; }
|
||||
.z-unset { z-index: unset; }
|
||||
/*
|
||||
|
||||
CMS
|
||||
|
||||
*/
|
||||
.nested-copy-line-height p, .nested-copy-line-height ul,
|
||||
.nested-copy-line-height ol { line-height: 1.5; }
|
||||
.nested-headline-line-height h1, .nested-headline-line-height h2,
|
||||
.nested-headline-line-height h3, .nested-headline-line-height h4,
|
||||
.nested-headline-line-height h5, .nested-headline-line-height h6 { line-height: 1.25; }
|
||||
.nested-list-reset ul, .nested-list-reset ol { padding-left: 0; margin-left: 0; list-style-type: none; }
|
||||
.nested-copy-indent p+p { text-indent: 1em; margin-top: 0; margin-bottom: 0; }
|
||||
.nested-copy-seperator p+p { margin-top: 1.5em; }
|
||||
.nested-img img { width: 100%; max-width: 100%; display: block; }
|
||||
/*
|
||||
|
||||
STYLES
|
||||
|
||||
2
css/tachyons.min.css
vendored
2
css/tachyons.min.css
vendored
File diff suppressed because one or more lines are too long
44
src/_children.css
Normal file
44
src/_children.css
Normal file
@ -0,0 +1,44 @@
|
||||
/*
|
||||
|
||||
CMS
|
||||
|
||||
*/
|
||||
|
||||
.nested-copy-line-height p,
|
||||
.nested-copy-line-height ul,
|
||||
.nested-copy-line-height ol {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.nested-headline-line-height h1,
|
||||
.nested-headline-line-height h2,
|
||||
.nested-headline-line-height h3,
|
||||
.nested-headline-line-height h4,
|
||||
.nested-headline-line-height h5,
|
||||
.nested-headline-line-height h6 {
|
||||
line-height: 1.25;
|
||||
}
|
||||
|
||||
.nested-list-reset ul,
|
||||
.nested-list-reset ol {
|
||||
padding-left: 0;
|
||||
margin-left: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
|
||||
.nested-copy-indent p+p {
|
||||
text-indent: 1em;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.nested-copy-seperator p+p {
|
||||
margin-top: 1.5em;
|
||||
}
|
||||
|
||||
.nested-img img {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
@ -77,6 +77,7 @@
|
||||
@import './_vertical-align';
|
||||
@import './_hovers';
|
||||
@import './_z-index';
|
||||
@import './_children';
|
||||
@import './_styles';
|
||||
|
||||
/* Variables */
|
||||
|
||||
Loading…
Reference in New Issue
Block a user