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