twbs--bootstrap/less/scaffolding.less

96 lines
1.6 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
// -------------------------
* {
2013-03-17 18:15:04 +00:00
.box-sizing(border-box);
2013-03-10 18:24:07 +00:00
}
// Body reset
// -------------------------
2011-05-04 01:09:25 +00:00
html {
font-size: 62.5%;
-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;
}
a:hover,
a:focus {
2013-04-01 00:27:22 +00:00
color: @link-hover-color;
text-decoration: underline;
2011-05-04 01:09:25 +00:00
}
a:focus {
.tab-focus();
}
// Images
// -------------------------
img {
vertical-align: middle;
}
// Responsive images (ensure images don't scale beyond their parents)
.img-responsive {
display: inline-block;
2013-06-25 23:07:51 +00:00
max-width: 100%; // Part 1: Set a maximum relative to the parent
height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching
}
2012-09-04 18:31:48 +00:00
// Rounded corners
.img-rounded {
border-radius: @border-radius-large;
}
// Image thumbnails
// See thumbnails.less for `.img-thumbnail`
2012-09-04 18:31:48 +00:00
// Perfect circle
.img-circle {
border-radius: 500px; // crank the border-radius so it works with most reasonably sized images
}
// Horizontal rules
// -------------------------
hr {
margin-top: @line-height-computed;
margin-bottom: @line-height-computed;
border: 0;
border-top: 1px solid @hr-border;
}