overhaul frontpage jumbotron, add js for twitter buttons back in, fix up some form ids and classes, straighten out the use of primary button variable

This commit is contained in:
Mark Otto
2012-01-26 10:00:09 -08:00
parent 106625a2ec
commit 0ef4b6419f
22 changed files with 394 additions and 236 deletions

View File

@@ -59,7 +59,7 @@
&.primary {
color: @white;
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
.gradientBar(@blue, @blueDark)
.gradientBar(@primaryButtonBackground, spin(@primaryButtonBackground, 15));
}
// Transitions

View File

@@ -133,10 +133,16 @@ input[type=image] {
.box-shadow(none);
}
// Make textarea height behave
textarea {
height: auto;
}
// Hidden inputs
input[type=hidden] {
display: none;
}
// CHECKBOXES & RADIOS

View File

@@ -134,12 +134,14 @@
// Border Radius
.border-radius(@radius: 5px) {
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
border-radius: @radius;
}
// Drop shadows
.box-shadow(@shadow: 0 1px 3px rgba(0,0,0,.25)) {
-webkit-box-shadow: @shadow;
-moz-box-shadow: @shadow;
box-shadow: @shadow;
}
@@ -179,6 +181,7 @@
// Heads up: FF 3.6 and under need "padding" instead of "padding-box"
.background-clip(@clip) {
-webkit-background-clip: @clip;
-moz-background-clip: @clip;
background-clip: @clip;
}

View File

@@ -45,7 +45,7 @@
@baseLineHeight: 18px;
// Buttons
@primaryButtonColor: @blue;
@primaryButtonBackground: @linkColor;