summaryrefslogtreecommitdiff
path: root/flatly/bootswatch.less
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2013-08-06 15:16:13 -0400
committerThomas Park <thomas@thomaspark.me>2013-08-06 15:16:13 -0400
commit20e2d90874a3e1116c76e1547210d191dd0159f4 (patch)
treea9d775814f5dbdf36d45a486f3ab58d0253aafc6 /flatly/bootswatch.less
parent55f9c2cec0e48dc5190a1f81f297e469c2d5015b (diff)
first commit for 3.0.0-rc1
Diffstat (limited to 'flatly/bootswatch.less')
-rw-r--r--flatly/bootswatch.less133
1 files changed, 133 insertions, 0 deletions
diff --git a/flatly/bootswatch.less b/flatly/bootswatch.less
new file mode 100644
index 00000000..a0aa5c24
--- /dev/null
+++ b/flatly/bootswatch.less
@@ -0,0 +1,133 @@
+// Flatly 3.0.0
+// Bootswatch
+// -----------------------------------------------------
+
+@import url("//fonts.googleapis.com/css?family=Lato:400,700,900,400italic");
+
+// Navbar =====================================================================
+
+// Buttons ====================================================================
+
+// Typography =================================================================
+
+.text-primary {
+ color: @brand-primary;
+}
+
+.text-success {
+ color: @brand-success;
+}
+
+.text-danger {
+ color: @brand-danger;
+}
+
+.text-warning {
+ color: @brand-warning;
+}
+
+.text-info {
+ color: @brand-info;
+}
+
+// Tables =====================================================================
+
+.table {
+
+ tr.success,
+ tr.warning,
+ tr.danger {
+ color: #fff;
+ }
+}
+
+// Forms ======================================================================
+
+.has-warning {
+ .help-block,
+ .control-label {
+ color: @brand-warning;
+ }
+
+ .form-control,
+ .form-control:focus {
+ border: 2px solid @brand-warning;
+ }
+}
+
+.has-error {
+ .help-block,
+ .control-label {
+ color: @brand-danger;
+ }
+
+ .form-control,
+ .form-control:focus {
+ border: 2px solid @brand-danger;
+ }
+}
+
+.has-success {
+ .help-block,
+ .control-label {
+ color: @brand-success;
+ }
+
+ .form-control,
+ .form-control:focus {
+ border: 2px solid @brand-success;
+ }
+}
+
+// Navs =======================================================================
+
+.pagination {
+
+ a {
+ color: #fff;
+ }
+
+ .disabled {
+ &>a,
+ &>a:hover,
+ &>a:focus,
+ &>span {
+ background-color: lighten(@brand-success, 15%);
+ }
+ }
+}
+
+.pager {
+ a {
+ color: #fff;
+ }
+
+ .disabled {
+ &>a,
+ &>a:hover,
+ &>a:focus,
+ &>span {
+ background-color: lighten(@brand-success, 15%);
+ }
+ }
+}
+
+// Indicators =================================================================
+
+.alert {
+
+ a,
+ .alert-link {
+ color: #fff;
+ text-decoration: underline;
+ }
+}
+
+// Progress bars ==============================================================
+
+.progress {
+ height: 10px;
+ .box-shadow(none);
+}
+
+// Containers =================================================================