| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- // Cyborg 3.1.1
- // Bootswatch
- // -----------------------------------------------------
- @import url("//fonts.googleapis.com/css?family=Droid+Sans:400,700");
- // Navbar =====================================================================
- .navbar {
- border-bottom: 1px solid @gray-dark;
- }
- // Buttons ====================================================================
- // Typography =================================================================
- .text-primary,
- .text-primary:hover {
- color: @brand-primary;
- }
- .text-success,
- .text-success:hover {
- color: @brand-success;
- }
- .text-danger,
- .text-danger:hover {
- color: @brand-danger;
- }
- .text-warning,
- .text-warning:hover {
- color: @brand-warning;
- }
- .text-info,
- .text-info:hover {
- color: @brand-info;
- }
- // Tables =====================================================================
- table,
- .table {
- color: #fff;
- a {
- color: #fff;
- text-decoration: underline;
- }
- }
- .table-responsive > .table {
- background-color: @table-bg;
- }
- // 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,
- .pager {
- a {
- color: #fff;
- }
- }
- // Indicators =================================================================
- .alert {
- .alert-link,
- a {
- color: @alert-warning-text;
- text-decoration: underline;
- }
- }
- // Progress bars ==============================================================
- // Containers =================================================================
- .jumbotron {
- h1, h2, h3, h4, h5, h6 {
- color: #fff;
- }
- }
|