bootswatch.less 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. // Amelia 3.1.1
  2. // Bootswatch
  3. // -----------------------------------------------------
  4. @import url("//fonts.googleapis.com/css?family=Lobster|Cabin:400,700");
  5. // Navbar =====================================================================
  6. .navbar {
  7. &-brand {
  8. font-family: 'Lobster', cursive;
  9. }
  10. }
  11. // Buttons ====================================================================
  12. .btn {
  13. .caret {
  14. border-top-color: #fff;
  15. }
  16. }
  17. .btn-default {
  18. &:hover {
  19. color: @btn-default-color;
  20. }
  21. .caret {
  22. border-top-color: @btn-default-color;
  23. }
  24. }
  25. // Typography =================================================================
  26. .text-primary,
  27. .text-primary:hover {
  28. color: lighten(@brand-primary, 40%);
  29. }
  30. .text-success,
  31. .text-success:hover {
  32. color: lighten(@brand-success, 20%);
  33. }
  34. .text-danger,
  35. .text-danger:hover {
  36. color: lighten(@brand-danger, 20%);
  37. }
  38. .text-warning,
  39. .text-warning:hover {
  40. color: lighten(@brand-warning, 20%);
  41. }
  42. .text-info,
  43. .text-info:hover {
  44. color: lighten(@brand-info, 40%);
  45. }
  46. // Tables =====================================================================
  47. .table-responsive > .table {
  48. background-color: @table-bg;
  49. }
  50. table,
  51. .table {
  52. a {
  53. color: #fff;
  54. text-decoration: underline;
  55. }
  56. }
  57. // Forms ======================================================================
  58. .has-warning {
  59. .help-block,
  60. .control-label {
  61. color: lighten(@brand-warning, 20%);
  62. }
  63. .form-control,
  64. .form-control:focus {
  65. border-color: lighten(@brand-warning, 20%);
  66. }
  67. }
  68. .has-error {
  69. .help-block,
  70. .control-label {
  71. color: lighten(@brand-primary, 40%);
  72. }
  73. .form-control,
  74. .form-control:focus {
  75. border-color: lighten(@brand-primary, 40%);
  76. }
  77. }
  78. .has-success {
  79. .help-block,
  80. .control-label {
  81. color: lighten(@brand-success, 20%);
  82. }
  83. .form-control,
  84. .form-control:focus {
  85. border-color: lighten(@brand-success, 20%);
  86. }
  87. }
  88. legend {
  89. font-family: 'Lobster', cursive;
  90. color: #fff;
  91. }
  92. .input-group-addon {
  93. color: @btn-default-color;
  94. }
  95. // Navs =======================================================================
  96. .pagination {
  97. a:hover {
  98. color: #fff;
  99. }
  100. }
  101. .pager {
  102. a:hover {
  103. color: #fff;
  104. }
  105. }
  106. // Indicators =================================================================
  107. // Progress bars ==============================================================
  108. // Containers =================================================================
  109. .popover {
  110. color: @gray-dark;
  111. }