06663623d86b1f6e75f64c0d767034e56d709ec9.svn-base 1.7 KB

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