summaryrefslogtreecommitdiff
path: root/united/bootswatch.less
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2012-02-10 19:54:27 -0500
committerThomas Park <thomas@thomaspark.me>2012-02-10 19:54:27 -0500
commite71fca26f54df8313bda1e41159b73fc1897ed86 (patch)
tree4fd89f5c00d5b3c1852cb95e15548f9815a633c6 /united/bootswatch.less
parenta6084de5156775df12e05a06609c6b3452552d2c (diff)
Added css and less files
Diffstat (limited to 'united/bootswatch.less')
-rwxr-xr-xunited/bootswatch.less52
1 files changed, 52 insertions, 0 deletions
diff --git a/united/bootswatch.less b/united/bootswatch.less
new file mode 100755
index 00000000..0d14766e
--- /dev/null
+++ b/united/bootswatch.less
@@ -0,0 +1,52 @@
+// Bootswatch.less
+// Swatch: United
+// -----------------------------------------------------
+
+// TYPOGRAPHY
+// -----------------------------------------------------
+
+// Ubuntu web font
+@import url(http://fonts.googleapis.com/css?family=Ubuntu);
+
+// NAVBAR
+// -----------------------------------------------------
+
+// Added dividers to items
+.navbar .nav > li > a {
+ border-right: 1px solid #C03D14;
+ border-left: 1px solid #E6633A;
+}
+
+// Lightened color of active item
+.navbar .nav .active > a,
+.navbar .nav .active > a:hover {
+ background-color: rgba(0,0,0,.2);
+}
+
+// Styled item divider
+.navbar .divider-vertical {
+ background-color: inherit;
+ border-right: 0px solid #CE4213;
+}
+
+// BUTTONS
+// -----------------------------------------------------
+
+// Reversed gradient on primary button
+.btn-primary {
+ .buttonBackground(lighten(@primaryButtonBackground, 15%), @primaryButtonBackground);
+}
+
+// Made warning button yellow since orange is taken
+.btn-warning {
+ .buttonBackground(lighten(@yellow, 15%), @yellow);
+}
+
+// ALERTS
+// -----------------------------------------------------
+
+// Removed text-shadow
+.alert {
+ text-shadow: none !important;
+}
+