twbs--bootstrap/less/scaffolding.less

88 lines
1.6 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
// Body reset
// -------------------------
2011-05-03 21:09:25 -04:00
html {
font-size: 62.5%;
// Touch the Mobile Magic™
-webkit-overflow-scrolling: touch;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
// Disable iOS/WinMobile font size changes
@media screen and (max-device-width: 480px) {
html {
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
}
2011-05-03 21:09:25 -04:00
body {
margin: 0;
2012-11-30 17:37:24 -05:00
color: @text-color;
2013-02-15 19:51:16 -05:00
font-family: @font-family-base;
font-size: 14px;
font-size: 1.4rem;
line-height: 1.5;
2012-11-30 17:37:24 -05:00
background-color: @body-background;
}
// Reset fonts for revelant elements
body,
input,
button,
select,
textarea {
font-family: @font-family-base;
font-size: @font-size-base;
line-height: @line-height-base;
2011-05-03 21:09:25 -04:00
}
// 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 {
2012-11-30 17:37:24 -05:00
color: @link-color-hover;
text-decoration: underline;
2011-05-03 21:09:25 -04:00
}
a:focus {
.tab-focus();
}
// Images
// -------------------------
img {
// Responsive images (ensure images don't scale beyond their parents)
max-width: 100%; // Part 1: Set a maxium relative to the parent
width: auto\9; // IE8 need help adjusting responsive images
height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
// Match vertical alignment with other comment elements
vertical-align: middle;
}
2012-09-04 14:31:48 -04:00
// Rounded corners
.img-rounded {
border-radius: 6px;
}
// Image thumbnails
// See thumbnails.less for `.img-thumbnail`
2012-09-04 14:31:48 -04:00
// Perfect circle
.img-circle {
border-radius: 500px; // crank the border-radius so it works with most reasonably sized images
}