_bootswatch.scss 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. // Journal 3.3.4
  2. // Bootswatch
  3. // -----------------------------------------------------
  4. @import url("//fonts.googleapis.com/css?family=News+Cycle:400,700");
  5. // Navbar =====================================================================
  6. .navbar {
  7. font-size: 18px;
  8. font-family: $font-family-sans-serif;
  9. font-weight: $headings-font-weight;
  10. &-default {
  11. .badge {
  12. background-color: #000;
  13. color: #fff;
  14. }
  15. }
  16. &-inverse {
  17. .badge {
  18. background-color: #fff;
  19. color: $navbar-inverse-bg;
  20. }
  21. }
  22. }
  23. .navbar-brand {
  24. font-size: inherit;
  25. font-weight: $headings-font-weight;
  26. text-transform: uppercase;
  27. }
  28. // Buttons ====================================================================
  29. // Typography =================================================================
  30. // Tables =====================================================================
  31. // Forms ======================================================================
  32. .has-warning {
  33. .help-block,
  34. .control-label,
  35. .form-control-feedback {
  36. color: $brand-danger;
  37. }
  38. .form-control,
  39. .form-control:focus {
  40. border-color: $brand-danger;
  41. }
  42. }
  43. .has-error {
  44. .help-block,
  45. .control-label,
  46. .form-control-feedback {
  47. color: $brand-primary;
  48. }
  49. .form-control,
  50. .form-control:focus {
  51. border-color: $brand-primary;
  52. }
  53. }
  54. .has-success {
  55. .help-block,
  56. .control-label,
  57. .form-control-feedback {
  58. color: $brand-success;
  59. }
  60. .form-control,
  61. .form-control:focus {
  62. border-color: $brand-success;
  63. }
  64. }
  65. // Navs =======================================================================
  66. // Indicators =================================================================
  67. .badge {
  68. padding-bottom: 4px;
  69. vertical-align: 3px;
  70. font-size: 10px;
  71. }
  72. // Progress bars ==============================================================
  73. // Containers =================================================================
  74. .jumbotron {
  75. h1, h2, h3, h4, h5, h6 {
  76. font-family: $font-family-sans-serif;
  77. font-weight: $headings-font-weight;
  78. color: #000;
  79. }
  80. }
  81. .panel {
  82. &-primary,
  83. &-success,
  84. &-warning,
  85. &-danger,
  86. &-info {
  87. .panel-title {
  88. color: #fff;
  89. }
  90. }
  91. }