Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | /*** |
| 2 | General typography |
||
| 3 | ***/ |
||
| 4 | |||
| 5 | /* Headings */ |
||
| 6 | |||
| 7 | h1, |
||
| 8 | h2, |
||
| 9 | h3, |
||
| 10 | h4, |
||
| 11 | h5, |
||
| 12 | h6 { |
||
| 13 | font-family: $font-family-primary; |
||
| 14 | font-weight: 300; |
||
| 15 | } |
||
| 16 | |||
| 17 | h1 { |
||
| 18 | font-size: $font-size-h1; |
||
| 19 | } |
||
| 20 | h2 { |
||
| 21 | font-size: $font-size-h2; |
||
| 22 | } |
||
| 23 | h3 { |
||
| 24 | font-size: $font-size-h3; |
||
| 25 | } |
||
| 26 | h4 { |
||
| 27 | font-size: $font-size-h4; |
||
| 28 | } |
||
| 29 | h5 { |
||
| 30 | font-size: $font-size-h5; |
||
| 31 | } |
||
| 32 | h6 { |
||
| 33 | font-size: $font-size-h6; |
||
| 34 | } |
||
| 35 | |||
| 36 | /* Headings helper text */ |
||
| 37 | |||
| 38 | h1 small, |
||
| 39 | h2 small, |
||
| 40 | h3 small, |
||
| 41 | h4 small, |
||
| 42 | h5 small, |
||
| 43 | h6 small { |
||
| 44 | color: $text-muted-color; |
||
| 45 | } |
||
| 46 | |||
| 47 | /* Block headings */ |
||
| 48 | |||
| 49 | h1.block, |
||
| 50 | h2.block, |
||
| 51 | h3.block, |
||
| 52 | h4.block, |
||
| 53 | h5.block, |
||
| 54 | h6.block { |
||
| 55 | padding-top: 10px; |
||
| 56 | padding-bottom: 10px; |
||
| 57 | } |
||
| 58 | |||
| 59 | /* Links */ |
||
| 60 | |||
| 61 | a { |
||
| 62 | text-shadow: none; |
||
| 63 | color: $link-color; |
||
| 64 | |||
| 65 | &:hover { |
||
| 66 | color: $link-hover-color; |
||
| 67 | } |
||
| 68 | |||
| 69 | &:focus, |
||
| 70 | &:hover, |
||
| 71 | &:active { |
||
| 72 | outline: 0; |
||
| 73 | } |
||
| 74 | } |
||
| 75 | |||
| 76 | /* Horizontal break */ |
||
| 77 | |||
| 78 | hr { |
||
| 79 | margin: 20px 0; |
||
| 80 | border: 0; |
||
| 81 | border-top: 1px solid #eee; |
||
| 82 | border-bottom: 0; |
||
| 83 | } |
||
| 84 | |||
| 85 | /* Unstyled List */ |
||
| 86 | |||
| 87 | .list-unstyled li > .list-unstyled { |
||
| 88 | margin-left: 25px; |
||
| 89 | } |
||
| 90 | |||
| 91 | /* Code */ |
||
| 92 | |||
| 93 | code { |
||
| 94 | border: 1px solid #e1e1e1; |
||
| 95 | -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); |
||
| 96 | -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); |
||
| 97 | box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); |
||
| 98 | } |
||
| 99 | |||
| 100 | |||
| 101 | /* Disabled Navigation Link */ |
||
| 102 | |||
| 103 | .disabled-link { |
||
| 104 | |||
| 105 | .disable-target { |
||
| 106 | opacity: 0.5 !important; |
||
| 107 | filter: alpha(opacity=50) !important; |
||
| 108 | |||
| 109 | &:hover { |
||
| 110 | cursor: not-allowed !important; |
||
| 111 | } |
||
| 112 | } |
||
| 113 | |||
| 114 | &:hover { |
||
| 115 | cursor: not-allowed !important; |
||
| 116 | } |
||
| 117 | } |