|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
-
-
-
-
-
-
-
-
-
-
- * {
- .box-sizing(border-box);
- }
- *:before,
- *:after {
- .box-sizing(border-box);
- }
-
-
-
-
- html {
- font-size: 10px;
- -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: @link-hover-decoration;
- }
-
- &:focus {
- .tab-focus();
- }
- }
-
-
-
-
-
-
-
- figure {
- margin: 0;
- }
-
-
-
-
- img {
- vertical-align: middle;
- }
-
-
- .img-responsive {
- .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;
- .transition(all .2s ease-in-out);
-
-
- .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;
- }
-
-
-
-
-
- .sr-only-focusable {
- &:active,
- &:focus {
- position: static;
- width: auto;
- height: auto;
- margin: 0;
- overflow: visible;
- clip: auto;
- }
- }
-
-
-
-
-
-
-
-
- [role="button"] {
- cursor: pointer;
- }
|