summaryrefslogtreecommitdiff
path: root/spacelab/bootswatch.less
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2012-08-28 18:01:49 -0400
committerThomas Park <thomas@thomaspark.me>2012-08-28 18:01:49 -0400
commit05491d09bf1943330acb2702f2966139b029f3e1 (patch)
treed621fb5eba0c79dd11fa12c6f1134cab9f0fe37f /spacelab/bootswatch.less
parent0501a78aa63ee43167f6fd103f9e810f46c8bcaf (diff)
spacelab: new type and colors to differentiate more from default
Diffstat (limited to 'spacelab/bootswatch.less')
-rwxr-xr-xspacelab/bootswatch.less55
1 files changed, 42 insertions, 13 deletions
diff --git a/spacelab/bootswatch.less b/spacelab/bootswatch.less
index 068f1ed3..5654b6a6 100755
--- a/spacelab/bootswatch.less
+++ b/spacelab/bootswatch.less
@@ -6,6 +6,8 @@
// TYPOGRAPHY
// -----------------------------------------------------
+@import url('http://fonts.googleapis.com/css?family=Muli');
+
// SCAFFOLDING
// -----------------------------------------------------
@@ -20,7 +22,8 @@
}
.brand {
- font-weight: bold;
+
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
&:hover {
color: @linkColor;
@@ -29,8 +32,7 @@
.nav > li > a {
padding: 11px 10px 9px;
- font-weight: bold;
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}
.navbar-text {
@@ -65,12 +67,12 @@
color: @white;
text-shadow: none;
}
-
}
&-inverse {
+
.brand {
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
+ text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
&:hover {
color: @white;
@@ -78,7 +80,7 @@
}
.nav > li > a {
- text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
+ text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.3);
}
.nav li.dropdown.open > .dropdown-toggle .caret,
@@ -99,7 +101,7 @@
div.subnav {
.nav > li > a {
- font-weight: bold;
+
color: @textColor;
&:hover {
@@ -108,6 +110,7 @@ div.subnav {
}
.nav > li.active > a {
+
color: @textColor;
&:hover {
@@ -120,6 +123,7 @@ div.subnav {
}
.nav > li.dropdown.open > .dropdown-toggle {
+
border-left: 1px solid whiteSmoke;
border-right: 1px solid #E5E5E5;
color: @textColor;
@@ -153,7 +157,7 @@ div.subnav {
// BUTTONS
// -----------------------------------------------------
-.btn {
+/*.btn {
.buttonBackground(#F4F4F4, #ECECEC);
color: @textColor;
text-shadow: none;
@@ -190,7 +194,7 @@ div.subnav {
.btn-inverse {
.buttonBackground(lighten(@purple, 5%), @purple);
-}
+}*/
// TABLES
// -----------------------------------------------------
@@ -216,13 +220,38 @@ div.subnav {
// ALERTS, LABELS, BADGES
// -----------------------------------------------------
+.alert {
+ color: @white;
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
+}
+
+.label, .badge {
+
+ padding-top: 4px;
+
+ &-important {
+ background-color: @red;
+ }
+
+ &-warning {
+ background-color: @orange;
+ }
+
+ &-success {
+ background-color: @green;
+ }
+
+ &-info {
+ background-color: @blue;
+ }
+}
+
// MISC
// -----------------------------------------------------
-.label-important, .badge-important { background-color: #BD2C00; }
-.label-warning, .badge-warning { background-color: #E3E84D; }
-.label-success, .badge-success { background-color: #6CC644; }
-.label-info, .badge-info { background-color: #4183C4; }
+.well {
+ background-color: @grayLighter;
+}
.hero-unit {
.box-shadow(inset 0 1px 1px rgba(0,0,0,.05));