| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- // Amelia 3.1.1
- // Bootswatch
- // -----------------------------------------------------
- @import url("//fonts.googleapis.com/css?family=Lobster|Cabin:400,700");
- // Navbar =====================================================================
- .navbar {
- &-brand {
- font-family: 'Lobster', cursive;
- }
- }
- // Buttons ====================================================================
- .btn {
-
- .caret {
- border-top-color: #fff;
- }
- }
- .btn-default {
- &:hover {
- color: @btn-default-color;
- }
- .caret {
- border-top-color: @btn-default-color;
- }
- }
- // Typography =================================================================
- .text-primary,
- .text-primary:hover {
- color: lighten(@brand-primary, 40%);
- }
- .text-success,
- .text-success:hover {
- color: lighten(@brand-success, 20%);
- }
- .text-danger,
- .text-danger:hover {
- color: lighten(@brand-danger, 20%);
- }
- .text-warning,
- .text-warning:hover {
- color: lighten(@brand-warning, 20%);
- }
- .text-info,
- .text-info:hover {
- color: lighten(@brand-info, 40%);
- }
- // Tables =====================================================================
- .table-responsive > .table {
- background-color: @table-bg;
- }
- table,
- .table {
- a {
- color: #fff;
- text-decoration: underline;
- }
- }
- // Forms ======================================================================
- .has-warning {
- .help-block,
- .control-label {
- color: lighten(@brand-warning, 20%);
- }
- .form-control,
- .form-control:focus {
- border-color: lighten(@brand-warning, 20%);
- }
- }
- .has-error {
- .help-block,
- .control-label {
- color: lighten(@brand-primary, 40%);
- }
- .form-control,
- .form-control:focus {
- border-color: lighten(@brand-primary, 40%);
- }
- }
- .has-success {
- .help-block,
- .control-label {
- color: lighten(@brand-success, 20%);
- }
- .form-control,
- .form-control:focus {
- border-color: lighten(@brand-success, 20%);
- }
- }
- legend {
- font-family: 'Lobster', cursive;
- color: #fff;
- }
- .input-group-addon {
- color: @btn-default-color;
- }
- // Navs =======================================================================
- .pagination {
- a:hover {
- color: #fff;
- }
- }
- .pager {
- a:hover {
- color: #fff;
- }
- }
- // Indicators =================================================================
- // Progress bars ==============================================================
- // Containers =================================================================
- .popover {
- color: @gray-dark;
- }
|