_brand.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. // stylelint-disable no-duplicate-selectors
  2. //
  3. // Brand guidelines
  4. //
  5. // Logo series wrapper
  6. .bd-brand-logos {
  7. display: table;
  8. width: 100%;
  9. margin-bottom: 1rem;
  10. overflow: hidden;
  11. color: #563d7c;
  12. background-color: #f9f9f9;
  13. border-radius: .25rem;
  14. }
  15. // Individual items
  16. .bd-brand-item {
  17. padding: 4rem 0;
  18. text-align: center;
  19. }
  20. .bd-brand-item + .bd-brand-item {
  21. border-top: 1px solid #fff;
  22. }
  23. .bd-brand-logos .inverse {
  24. color: #fff;
  25. background-color: #563d7c;
  26. }
  27. // Heading content within
  28. .bd-brand-item h1,
  29. .bd-brand-item h3 {
  30. margin-top: 0;
  31. margin-bottom: 0;
  32. }
  33. .bd-brand-item .bd-booticon {
  34. margin-right: auto;
  35. margin-left: auto;
  36. }
  37. // Make the icons stand out on what is/isn't okay
  38. // .bd-brand-item .glyphicon {
  39. // width: 30px;
  40. // height: 30px;
  41. // margin: 10px auto -10px;
  42. // line-height: 30px;
  43. // color: #fff;
  44. // border-radius: 50%;
  45. // }
  46. // .bd-brand-item .glyphicon-ok {
  47. // background-color: #5cb85c;
  48. // }
  49. // .bd-brand-item .glyphicon-remove {
  50. // background-color: #d9534f;
  51. // }
  52. @media (min-width: 768px) {
  53. .bd-brand-item {
  54. display: table-cell;
  55. width: 1%;
  56. }
  57. .bd-brand-item + .bd-brand-item {
  58. border-top: 0;
  59. border-left: 1px solid #fff;
  60. }
  61. .bd-brand-item h1 {
  62. font-size: 4rem;
  63. }
  64. }
  65. //
  66. // Color swatches
  67. //
  68. .color-swatches {
  69. margin: 0 -5px;
  70. overflow: hidden; // clearfix
  71. }
  72. .color-swatch {
  73. float: left;
  74. width: 4rem;
  75. height: 4rem;
  76. margin-right: .25rem;
  77. margin-left: .25rem;
  78. border-radius: .25rem;
  79. @media (min-width: 768px) {
  80. width: 6rem;
  81. height: 6rem;
  82. }
  83. }
  84. // Docs colors
  85. .color-swatches {
  86. .bd-purple {
  87. background-color: $bd-purple;
  88. }
  89. .bd-purple-light {
  90. background-color: $bd-purple-light;
  91. }
  92. .bd-purple-lighter {
  93. background-color: #e5e1ea;
  94. }
  95. .bd-gray {
  96. background-color: #f9f9f9;
  97. }
  98. }