Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | // TITLE 1 |
| 2 | |||
| 3 | .m-heading-1 { |
||
| 4 | margin: 0 0 20px 0; |
||
| 5 | background: #ffffff; |
||
| 6 | |||
| 7 | > h3 { |
||
| 8 | font-size:20px; |
||
| 9 | color: $general-heading-color; |
||
| 10 | font-weight:500; |
||
| 11 | margin:0 0 15px 0; |
||
| 12 | |||
| 13 | > i { |
||
| 14 | font-size: 18px; |
||
| 15 | color: lighten($general-heading-color, 30%); |
||
| 16 | } |
||
| 17 | } |
||
| 18 | |||
| 19 | > p { |
||
| 20 | color: $general-text-color; |
||
| 21 | margin: 10px 0 0 0; |
||
| 22 | |||
| 23 | &:first-child { |
||
| 24 | margin-top: 0; |
||
| 25 | } |
||
| 26 | } |
||
| 27 | |||
| 28 | &.m-bordered { |
||
| 29 | border-right: 1px solid $gray-base; |
||
| 30 | border-top: 1px solid $gray-base; |
||
| 31 | border-bottom: 1px solid $gray-base; |
||
| 32 | padding: 15px 15px; |
||
| 33 | |||
| 34 | .page-container-bg-solid & { |
||
| 35 | border-right: 0; |
||
| 36 | border-top: 0; |
||
| 37 | border-bottom: 0; |
||
| 38 | } |
||
| 39 | } |
||
| 40 | |||
| 41 | padding-left: 15px; |
||
| 42 | border-left: 8px solid lighten($general-heading-color, 30%); |
||
| 43 | |||
| 44 | |||
| 45 | &.m-title-md { |
||
| 46 | |||
| 47 | > h3 { |
||
| 48 | font-size:18px; |
||
| 49 | margin-bottom: 10px; |
||
| 50 | |||
| 51 | > i { |
||
| 52 | font-size: 16px; |
||
| 53 | color: lighten($general-heading-color, 30%); |
||
| 54 | } |
||
| 55 | } |
||
| 56 | |||
| 57 | > p { |
||
| 58 | margin: 15px 0; |
||
| 59 | } |
||
| 60 | } |
||
| 61 | |||
| 62 | &.m-title-sm { |
||
| 63 | |||
| 64 | > h3 { |
||
| 65 | font-size:16px; |
||
| 66 | margin-bottom: 10px; |
||
| 67 | |||
| 68 | > i { |
||
| 69 | font-size: 14px; |
||
| 70 | color: lighten($general-heading-color, 30%); |
||
| 71 | } |
||
| 72 | } |
||
| 73 | |||
| 74 | > p { |
||
| 75 | margin: 10px 0; |
||
| 76 | } |
||
| 77 | } |
||
| 78 | } |
||
| 79 | |||
| 80 | // END |
||
| 81 | |||
| 82 | // BEGIN: Mobile Mode |
||
| 83 | |||
| 84 | @media (max-width: $screen-sm-max) { /* 991px */ |
||
| 85 | .m-heading-1 { |
||
| 86 | margin: 0px 0; |
||
| 87 | } |
||
| 88 | } |
||
| 89 | |||
| 90 | // END |