twbs--bootstrap/less/scaffolding.less

118 lines
1.8 KiB
Plaintext
Raw Normal View History

2012-06-29 00:46:45 -04:00
//
// Scaffolding
2012-06-29 00:46:45 -04:00
// --------------------------------------------------
2011-05-03 21:09:25 -04:00
2011-08-17 01:58:01 -04:00
2013-03-10 14:24:07 -04:00
// Reset the box-sizing
// -------------------------
*,
*:before,
*:after {
2013-03-17 14:15:04 -04:00
.box-sizing(border-box);
2013-03-10 14:24:07 -04:00
}
// Body reset
// -------------------------
2011-05-03 21:09:25 -04:00
html {
font-size: 62.5%;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
2011-05-03 21:09:25 -04:00
body {
2013-03-26 20:12:17 -04:00
font-family: @font-family-base;
2013-04-05 14:42:29 -04:00
font-size: @font-size-base;
2013-03-26 20:12:17 -04:00
line-height: @line-height-base;
2012-11-30 17:37:24 -05:00
color: @text-color;
background-color: @body-bg;
}
2013-06-25 19:07:51 -04:00
// Reset fonts for relevant elements
input,
button,
select,
textarea {
2013-03-26 20:12:17 -04:00
font-family: inherit;
font-size: inherit;
line-height: inherit;
2011-05-03 21:09:25 -04:00
}
// Reset unusual Firefox-on-Android default style, see https://github.com/necolas/normalize.css/issues/214
button,
input,
select[multiple],
textarea {
background-image: none;
}
// Links
// -------------------------
2011-05-03 21:09:25 -04:00
a {
2012-11-30 17:37:24 -05:00
color: @link-color;
2011-05-03 21:09:25 -04:00
text-decoration: none;
}
a:hover,
a:focus {
2013-03-31 20:27:22 -04:00
color: @link-hover-color;
text-decoration: underline;
2011-05-03 21:09:25 -04:00
}
a:focus {
.tab-focus();
}
// Images
// -------------------------
img {
vertical-align: middle;
}
// Responsive images (ensure images don't scale beyond their parents)
.img-responsive {
.img-responsive();
}
2012-09-04 14:31:48 -04:00
// Rounded corners
.img-rounded {
border-radius: @border-radius-large;
}
// Image thumbnails
// See thumbnails.less for `.img-thumbnail`
2012-09-04 14:31:48 -04:00
// Perfect circle
.img-circle {
2013-08-09 07:57:49 -04:00
border-radius: 50%; // set radius in percents
}
// Horizontal rules
// -------------------------
hr {
margin-top: @line-height-computed;
margin-bottom: @line-height-computed;
border: 0;
border-top: 1px solid @hr-border;
}
// Only display content to screen readers
// See: http://a11yproject.com/posts/how-to-hide-content/
// -------------------------
.sr-only {
2013-08-07 03:28:44 -04:00
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
2013-08-07 03:28:44 -04:00
overflow: hidden;
clip: rect(0 0 0 0);
border: 0;
}