aboutsummaryrefslogtreecommitdiff
path: root/assets/css/bootstrap-3.3.2/scaffolding.less
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--assets/css/bootstrap-3.3.2/scaffolding.less (renamed from assets/css/lib/bootstrap/_scaffolding.scss)46
1 files changed, 23 insertions, 23 deletions
diff --git a/assets/css/lib/bootstrap/_scaffolding.scss b/assets/css/bootstrap-3.3.2/scaffolding.less
index 8cea4cd..2a40fbc 100644
--- a/assets/css/lib/bootstrap/_scaffolding.scss
+++ b/assets/css/bootstrap-3.3.2/scaffolding.less
@@ -9,11 +9,11 @@
// For recommendations on resolving such conflicts, see
// http://getbootstrap.com/getting-started/#third-box-sizing
* {
- @include box-sizing(border-box);
+ .box-sizing(border-box);
}
*:before,
*:after {
- @include box-sizing(border-box);
+ .box-sizing(border-box);
}
@@ -25,11 +25,11 @@ html {
}
body {
- font-family: $font-family-base;
- font-size: $font-size-base;
- line-height: $line-height-base;
- color: $text-color;
- background-color: $body-bg;
+ font-family: @font-family-base;
+ font-size: @font-size-base;
+ line-height: @line-height-base;
+ color: @text-color;
+ background-color: @body-bg;
}
// Reset fonts for relevant elements
@@ -46,17 +46,17 @@ textarea {
// Links
a {
- color: $link-color;
+ color: @link-color;
text-decoration: none;
&:hover,
&:focus {
- color: $link-hover-color;
- text-decoration: underline;
+ color: @link-hover-color;
+ text-decoration: @link-hover-decoration;
}
&:focus {
- @include tab-focus();
+ .tab-focus();
}
}
@@ -79,27 +79,27 @@ img {
// Responsive images (ensure images don't scale beyond their parents)
.img-responsive {
- @include img-responsive();
+ .img-responsive();
}
// Rounded corners
.img-rounded {
- border-radius: $border-radius-large;
+ 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;
- @include transition(all .2s ease-in-out);
+ 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
- @include img-responsive(inline-block);
+ .img-responsive(inline-block);
}
// Perfect circle
@@ -111,10 +111,10 @@ img {
// Horizontal rules
hr {
- margin-top: $line-height-computed;
- margin-bottom: $line-height-computed;
+ margin-top: @line-height-computed;
+ margin-bottom: @line-height-computed;
border: 0;
- border-top: 1px solid $hr-border;
+ border-top: 1px solid @hr-border;
}