0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/less/scaffolding.less

120 lines
1.8 KiB
Plaintext
Raw Normal View History

2012-06-29 06:46:45 +02:00
//
// Scaffolding
2012-06-29 06:46:45 +02:00
// --------------------------------------------------
2011-05-04 03:09:25 +02:00
2011-08-17 07:58:01 +02:00
2013-03-10 19:24:07 +01:00
// Reset the box-sizing
*,
*:before,
*:after {
2013-03-17 19:15:04 +01:00
.box-sizing(border-box);
2013-03-10 19:24:07 +01:00
}
// Body reset
2011-05-04 03:09:25 +02:00
html {
font-size: 62.5%;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
2011-05-04 03:09:25 +02:00
body {
2013-03-27 01:12:17 +01:00
font-family: @font-family-base;
2013-04-05 20:42:29 +02:00
font-size: @font-size-base;
2013-03-27 01:12:17 +01:00
line-height: @line-height-base;
2012-11-30 23:37:24 +01:00
color: @text-color;
background-color: @body-bg;
}
2013-06-26 01:07:51 +02:00
// Reset fonts for relevant elements
input,
button,
select,
textarea {
2013-03-27 01:12:17 +01:00
font-family: inherit;
font-size: inherit;
line-height: inherit;
2011-05-04 03:09:25 +02:00
}
// Links
2011-05-04 03:09:25 +02:00
a {
2012-11-30 23:37:24 +01:00
color: @link-color;
2011-05-04 03:09:25 +02:00
text-decoration: none;
2013-08-18 23:28:55 +02:00
&:hover,
&:focus {
color: @link-hover-color;
text-decoration: underline;
}
&: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 20:31:48 +02:00
// Rounded corners
.img-rounded {
border-radius: @border-radius-large;
}
// Image thumbnails
//
// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.
.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);
// Keep them at most 100% wide
.img-responsive(inline-block);
}
2012-09-04 20:31:48 +02:00
// Perfect circle
.img-circle {
2013-08-09 13:57:49 +02: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 09:28:44 +02:00
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
2013-08-07 09:28:44 +02:00
overflow: hidden;
clip: rect(0 0 0 0);
border: 0;
}