summaryrefslogtreecommitdiff
path: root/simplex/bootswatch.less
diff options
context:
space:
mode:
Diffstat (limited to 'simplex/bootswatch.less')
-rwxr-xr-xsimplex/bootswatch.less89
1 files changed, 89 insertions, 0 deletions
diff --git a/simplex/bootswatch.less b/simplex/bootswatch.less
new file mode 100755
index 00000000..c882bd65
--- /dev/null
+++ b/simplex/bootswatch.less
@@ -0,0 +1,89 @@
+// Bootswatch.less
+// Swatch: Simplex
+// -----------------------------------------------------
+
+// TYPOGRAPHY
+// -----------------------------------------------------
+
+// Make headers black
+h1, h2, h3, h4, h5, h6 {
+ color: @black;
+}
+
+// NAVBAR
+// -----------------------------------------------------
+
+// Gray text color
+.navbar .brand, .subnav a {
+ color: @navbarText;
+}
+
+// Make active item white
+.navbar .nav .active > a,
+.navbar .nav .active > a:hover {
+ background-color: @grayDarker;
+ color: @white;
+}
+
+// Remove text-shadow and make white on hover
+.navbar .nav > li > a {
+ text-shadow: none;
+ &:hover {
+ color: @white;
+ background-color: rgba(256, 256, 256, 0.2);
+ }
+}
+
+// Remove menu item dividers on subnav
+.subnav .nav > li > a {
+ border-left: 0px solid white !important;
+ border-right: 0px solid white !important;
+ color: @grayDark;
+}
+
+// FORMS
+// -----------------------------------------------------
+
+// Style search input
+.search-query {
+ border: 1px solid #CCC;
+ .border-radius(2px);
+ background-color: @white;
+}
+
+// BUTTONS
+// -----------------------------------------------------
+
+// Make buttons boxier and flatter
+.btn {
+ .border-radius(2px);
+ #gradient > .vertical-three-colors(@white, @white, 25%, darken(@white, 10%));
+}
+
+.btn-primary {
+ .buttonBackground(lighten(@primaryButtonBackground, 5%), @primaryButtonBackground);
+}
+
+.btn-warning {
+ .buttonBackground(lighten(@orange, 5%), @orange);
+}
+
+.btn-danger {
+ .buttonBackground(lighten(@red, 5%), @red);
+}
+
+.btn-success {
+ .buttonBackground(lighten(@green, 5%), @green);
+}
+
+.btn-info {
+ .buttonBackground(lighten(#5bc0de, 5%), #5bc0de);
+}
+
+// ICONS
+// -----------------------------------------------------
+
+// Make icons gray
+i[class^="icon-"]{
+ opacity: 0.6;
+}