123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- * {
- @include box-sizing(border-box);
- }
- *: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;
- }
- a {
- color: $link-color;
- text-decoration: none;
- &:hover,
- &:focus {
- color: $link-hover-color;
- text-decoration: underline;
- }
- &:focus {
- @include tab-focus();
- }
- }
- figure {
- margin: 0;
- }
- 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;
- }
|