mirror of https://github.com/twbs/ratchet.git
Build mobile apps with simple HTML, CSS, and JS components.
http://goratchet.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
387 B
21 lines
387 B
11 years ago
|
//
|
||
|
// Typography
|
||
|
// --------------------------------------------------
|
||
|
|
||
|
h1, h2, h3, h4, h5, h6 {
|
||
|
margin: 10px 15px;
|
||
|
line-height: 1;
|
||
|
}
|
||
|
h1, .h1 { font-size: 36px; }
|
||
|
h2, .h2 { font-size: 30px; }
|
||
|
h3, .h3 { font-size: 24px; }
|
||
|
h4, .h4 { font-size: 18px; }
|
||
|
h5, .h5 { font-size: 14px; }
|
||
|
h6, .h6 { font-size: 12px; }
|
||
|
|
||
|
// Paragraphs
|
||
|
p {
|
||
|
margin: 10px 15px;
|
||
|
font-size: 14px;
|
||
|
color: #777;
|
||
|
}
|