bootswatch.less 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. // Readable 3.1.1
  2. // Bootswatch
  3. // -----------------------------------------------------
  4. @import url("//fonts.googleapis.com/css?family=Raleway:400,700");
  5. // Navbar =====================================================================
  6. .navbar {
  7. font-family: @headings-font-family;
  8. &-nav > li > a {
  9. padding: @padding-base-vertical @padding-base-horizontal;
  10. margin: 12px 6px;
  11. border: 1px solid transparent;
  12. border-radius: @border-radius-base;
  13. &:hover {
  14. border: 1px solid #ddd;
  15. }
  16. }
  17. &-nav > .active > a,
  18. &-nav > .active > a:hover {
  19. border: 1px solid #ddd;
  20. }
  21. &-default .navbar-nav > .active > a:hover {
  22. color: @navbar-default-link-hover-color;
  23. }
  24. &-inverse .navbar-nav > .active > a:hover {
  25. color: @navbar-inverse-link-hover-color;
  26. }
  27. &-brand {
  28. margin-top: 6px;
  29. }
  30. }
  31. // Buttons ====================================================================
  32. .btn {
  33. font-family: @headings-font-family;
  34. }
  35. // Typography =================================================================
  36. // Tables =====================================================================
  37. // Forms ======================================================================
  38. legend {
  39. font-family: @headings-font-family;
  40. }
  41. .input-group-addon {
  42. font-family: @font-family-sans-serif;
  43. }
  44. // Navs =======================================================================
  45. .nav {
  46. .open > a,
  47. .open > a:hover,
  48. .open > a:focus {
  49. border: 1px solid #ddd;
  50. }
  51. }
  52. .pagination {
  53. font-family: @headings-font-family;
  54. &-lg > li > a,
  55. &-lg > li > span {
  56. padding: 14px 24px;
  57. }
  58. }
  59. .pager {
  60. font-family: @headings-font-family;
  61. a {
  62. color: @text-color;
  63. }
  64. a:hover {
  65. border-color: transparent;
  66. color: #fff;
  67. }
  68. .disabled a {
  69. border-color: @pager-border;
  70. }
  71. }
  72. // Indicators =================================================================
  73. .alert {
  74. a,
  75. .alert-link {
  76. color: @alert-success-text;
  77. text-decoration: underline;
  78. }
  79. }
  80. .label {
  81. font-family: @headings-font-family;
  82. font-weight: normal;
  83. &-default {
  84. border: 1px solid #ddd;
  85. color: @text-color;
  86. }
  87. }
  88. .badge {
  89. font-family: @headings-font-family;
  90. font-weight: normal;
  91. }
  92. // Progress bars ==============================================================
  93. // Containers =================================================================
  94. .panel {
  95. .box-shadow(none);
  96. &-default .panel-heading,
  97. &-default .panel-footer {
  98. background-color: #fff;
  99. font-family: @headings-font-family;
  100. font-weight: bold;
  101. }
  102. &-primary,
  103. &-success,
  104. &-warning,
  105. &-danger,
  106. &-info {
  107. .panel-heading {
  108. color: #fff;
  109. }
  110. .panel-body {
  111. border: 1px solid #ddd;
  112. border-top-width: 0;
  113. border-radius: 0 0 @border-radius-base @border-radius-base;
  114. }
  115. }
  116. }