| |
| |
| |
| |
| |
| |
| |
| *, |
| *:before, |
| *:after { |
| @include box-sizing(border-box); |
| } |
| |
| |
| |
| |
| html { |
| font-size: 62.5%; |
| -webkit-tap-highlight-color: rgba(0,0,0,0); |
| } |
| |
| body { |
| font-family: $font-family-base; |
| font-size: $font-size-base; |
| line-height: $line-height-base; |
| color: $text-color; |
| background-color: $body-bg; |
| } |
| |
| |
| input, |
| button, |
| select, |
| textarea { |
| font-family: inherit; |
| font-size: inherit; |
| line-height: inherit; |
| } |
| |
| |
| |
| |
| |
| button, |
| input, |
| select[multiple], |
| textarea { |
| background-image: none; |
| } |
| |
| |
| |
| |
| a { |
| color: $link-color; |
| text-decoration: none; |
| |
| &:hover, |
| &:focus { |
| color: $link-hover-color; |
| text-decoration: underline; |
| } |
| |
| &:focus { |
| @include tab-focus(); |
| } |
| } |
| |
| |
| |
| |
| img { |
| vertical-align: middle; |
| } |
| |
| |
| .img-responsive { |
| @include img-responsive(); |
| } |
| |
| |
| .img-rounded { |
| border-radius: $border-radius-large; |
| } |
| |
| |
| |
| |
| .img-thumbnail { |
| padding: $thumbnail-padding; |
| line-height: $line-height-base; |
| background-color: $thumbnail-bg; |
| border: 1px solid $thumbnail-border; |
| border-radius: $thumbnail-border-radius; |
| @include transition(all .2s ease-in-out); |
| |
| |
| @include img-responsive(inline-block); |
| } |
| |
| |
| .img-circle { |
| border-radius: 50%; |
| } |
| |
| |
| |
| |
| hr { |
| margin-top: $line-height-computed; |
| margin-bottom: $line-height-computed; |
| border: 0; |
| border-top: 1px solid $hr-border; |
| } |
| |
| |
| |
| |
| |
| |
| .sr-only { |
| position: absolute; |
| width: 1px; |
| height: 1px; |
| margin: -1px; |
| padding: 0; |
| overflow: hidden; |
| clip: rect(0 0 0 0); |
| border: 0; |
| } |