twbs--bootstrap/less/_scaffolding.less

148 lines
2.5 KiB
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Scaffolding
2012-06-29 04:46:45 +00:00
// --------------------------------------------------
2011-05-04 01:09:25 +00:00
2011-08-17 05:58:01 +00:00
2013-03-10 18:24:07 +00:00
// Reset the box-sizing
//
// Heads up! This reset may cause conflicts with some third-party widgets.
// For recommendations on resolving such conflicts, see
// http://getbootstrap.com/getting-started/#third-box-sizing
*,
*:before,
*:after {
box-sizing: border-box;
2013-03-10 18:24:07 +00:00
}
// Body reset
2011-05-04 01:09:25 +00:00
html {
2014-07-08 06:36:40 +00:00
font-size: @font-size-root;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
2011-05-04 01:09:25 +00:00
body {
2013-03-27 00:12:17 +00:00
font-family: @font-family-base;
2013-04-05 18:42:29 +00:00
font-size: @font-size-base;
2013-03-27 00:12:17 +00:00
line-height: @line-height-base;
2012-11-30 22:37:24 +00:00
color: @text-color;
background-color: @body-bg;
}
2013-06-25 23:07:51 +00:00
// Reset fonts for relevant elements
input,
button,
select,
textarea {
2013-03-27 00:12:17 +00:00
font-family: inherit;
font-size: inherit;
line-height: inherit;
2011-05-04 01:09:25 +00:00
}
// Links
2011-05-04 01:09:25 +00:00
a {
2012-11-30 22:37:24 +00:00
color: @link-color;
2011-05-04 01:09:25 +00:00
text-decoration: none;
2013-08-18 21:28:55 +00:00
&:hover,
&:focus {
color: @link-hover-color;
2014-10-12 09:40:10 +00:00
text-decoration: @link-hover-decoration;
2013-08-18 21:28:55 +00:00
}
&:focus {
.tab-focus();
}
}
// Figures
//
// We reset this here because previously Normalize had no `figure` margins. This
// ensures we don't break anyone's use of the element.
figure {
margin: 0;
}
// Images
img {
vertical-align: middle;
}
// Responsive images (ensure images don't scale beyond their parents)
.img-responsive {
.img-responsive();
}
2012-09-04 18:31:48 +00:00
// Rounded corners
.img-rounded {
.border-radius(@border-radius-lg);
}
// Image thumbnails
.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;
.box-shadow(0 1px 2px rgba(0,0,0,.075));
// Keep them at most 100% wide
.img-responsive(inline-block);
}
2012-09-04 18:31:48 +00:00
// Perfect circle
.img-circle {
2013-08-09 11:57:49 +00: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 07:28:44 +00:00
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
2013-08-07 07:28:44 +00:00
overflow: hidden;
clip: rect(0,0,0,0);
2013-08-07 07:28:44 +00:00
border: 0;
}
2014-02-10 18:34:38 +00:00
// Use in conjunction with .sr-only to only display content when it's focused.
// Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
// Credit: HTML5 Boilerplate
.sr-only-focusable {
&:active,
&:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
}