bootswatch.less 2.3 KB

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