diff options
Diffstat (limited to 'cyborg/bootswatch.less')
-rw-r--r-- | cyborg/bootswatch.less | 141 |
1 files changed, 141 insertions, 0 deletions
diff --git a/cyborg/bootswatch.less b/cyborg/bootswatch.less new file mode 100644 index 00000000..e6467571 --- /dev/null +++ b/cyborg/bootswatch.less @@ -0,0 +1,141 @@ +// Cyborg 3.0.0 +// Bootswatch +// ----------------------------------------------------- + +@import url("//fonts.googleapis.com/css?family=Droid+Sans:400,700"); + +// Navbar ===================================================================== + +.navbar { + + border-bottom: 1px solid @gray-dark; +} + +// Buttons ==================================================================== + +// Typography ================================================================= + +h1, h2, h3, h4, h5, h6 { + color: #fff; +} + +.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-color: @brand-warning; + } +} + +.has-error { + .help-block, + .control-label { + color: @brand-danger; + } + + .form-control, + .form-control:focus { + border-color: @brand-danger; + } +} + +.has-success { + .help-block, + .control-label { + color: @brand-success; + } + + .form-control, + .form-control:focus { + border-color: @brand-success; + } +} + +legend { + color: #fff; +} + +.input-group-addon { + background-color: @btn-default-bg; +} + +// Navs ======================================================================= + +.nav { + + .caret, + a:hover .caret { + border-top-color: #fff; + border-bottom-color: #fff; + } +} + +.nav-tabs, +.nav-pills, +.breadcrumb, +.pagination, +.pager { + + a { + color: #fff; + } +} + +// Indicators ================================================================= + +.alert { + + .alert-link, + a { + color: @alert-text; + text-decoration: underline; + } +} + +// Progress bars ============================================================== + +// Containers ================================================================= + +.jumbotron { + + h1, h2, h3, h4, h5, h6 { + color: #fff; + } +}
\ No newline at end of file |