OLD | NEW |
(Empty) | |
| 1 // Uses vertical_rythm library from |
| 2 // http://compass-style.org/reference/compass/typography/vertical_rhythm/ |
| 3 // as explained in _typography.scss |
| 4 @import "compass/typography/vertical_rhythm"; |
| 5 |
| 6 .api { |
| 7 color: #333; |
| 8 font-size: 14px; |
| 9 |
| 10 .api-summary { |
| 11 td, th { |
| 12 padding: 5px 10px; |
| 13 } |
| 14 } |
| 15 |
| 16 .api-reference { |
| 17 .description { |
| 18 margin-left: 20px; |
| 19 } |
| 20 table.innerTable { |
| 21 margin: 10px 0; |
| 22 td, th { |
| 23 padding: 5px 10px; |
| 24 border: 1px solid #eee; |
| 25 } |
| 26 th { |
| 27 background: none; |
| 28 } |
| 29 p { |
| 30 margin: 0; |
| 31 } |
| 32 } |
| 33 td, th { |
| 34 border: 1px solid #eee; |
| 35 } |
| 36 th { |
| 37 background: #fafafa; |
| 38 } |
| 39 h2 { |
| 40 background-color: darken($gray-light, 5%); |
| 41 padding: $default-padding; |
| 42 margin-left: $default-padding * -1; |
| 43 margin-right: $default-padding * -1; |
| 44 } |
| 45 h3 { |
| 46 margin-top: rhythm(2); |
| 47 } |
| 48 } |
| 49 } |
OLD | NEW |