2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-17 19:21:23 +03:00

Part 1 of unCamelCasing variables

This commit is contained in:
Mark Otto
2012-11-30 14:37:24 -08:00
parent fe8061b84e
commit 7a3d15eb21
31 changed files with 191 additions and 196 deletions
+7 -7
View File
@@ -8,8 +8,8 @@
body {
margin: 0;
color: @textColor;
background-color: @bodyBackground;
color: @text-color;
background-color: @body-background;
}
// Reset fonts for revelant elements
@@ -18,9 +18,9 @@ input,
button,
select,
textarea {
font-family: @baseFontFamily;
font-size: @baseFontSize;
line-height: @baseLineHeight;
font-family: @base-font-family;
font-size: @base-font-size;
line-height: @base-line-height;
}
@@ -28,11 +28,11 @@ textarea {
// -------------------------
a {
color: @linkColor;
color: @link-color;
text-decoration: none;
}
a:hover {
color: @linkColorHover;
color: @link-color-hover;
text-decoration: underline;
}