1// Global 2 3/* Body */ 4html { 5 height: 100%; 6} 7 8body { 9 height: 100%; 10 -webkit-font-smoothing: antialiased; 11 -moz-osx-font-smoothing: grayscale; 12 box-sizing: border-box; 13} 14 15a:hover, 16a:active, 17a:focus { 18 outline: none; 19} 20 21/* Typography */ 22.small { 23 font-size: 11px; 24} 25 26.row-even .small, 27.row-odd .small, 28.row-even .small a, 29.row-odd .small a { 30 color: #888; 31} 32 33/* Page Title in Content */ 34.content-title { 35 font-size: 24px; 36 font-weight: normal; 37 line-height: 26px; 38 margin-top: 0; 39} 40 41/* Content */ 42.well .page-header { 43 margin: -10px 0 18px 0; 44 padding-bottom: 5px; 45} 46 47.well .module-title.nav-header { 48 padding: 0 0 7px; 49 margin: 0; 50 font-size: 13px; 51} 52 53.well .row-even p, 54.well .row-odd p { 55 margin-bottom: 0; 56} 57 58/* Headings */ 59 60h1, h2, h3, h4, h5, h6 { 61 margin: (@baseLineHeight / 1.5) 0; 62} 63 64h1 { 65 font-size: 26px; 66 line-height: 28px; 67} 68 69h2 { 70 font-size: 22px; 71 line-height: 24px; 72} 73 74h3 { 75 font-size: 18px; 76 line-height: 20px; 77} 78 79h4 { 80 font-size: 14px; 81 line-height: 16px; 82} 83 84h5 { 85 font-size: 13px; 86 line-height: 15px; 87} 88 89h6 { 90 font-size: 12px; 91 line-height: 14px; 92} 93 94.truncate { 95 white-space: nowrap; 96 overflow: hidden; 97 text-overflow: ellipsis; 98} 99