8fbf2ccacc14dec845cd96d3069b6c5c3c84d875.svn-base 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. .bd-featurette {
  2. padding-top: 3rem;
  3. padding-bottom: 3rem;
  4. font-size: 1rem;
  5. line-height: 1.5;
  6. color: #555;
  7. text-align: center;
  8. background-color: #fff;
  9. border-top: 1px solid #eee;
  10. .highlight {
  11. text-align: left;
  12. }
  13. @include media-breakpoint-up(sm) {
  14. text-align: left;
  15. }
  16. @include media-breakpoint-up(md) {
  17. .col-sm-6:first-child {
  18. padding-right: ($grid-gutter-width * 1.5);
  19. };
  20. .col-sm-6:last-child {
  21. padding-left: ($grid-gutter-width * 1.5);
  22. }
  23. }
  24. }
  25. .bd-featurette-title {
  26. margin-bottom: .5rem;
  27. font-size: 2rem;
  28. font-weight: normal;
  29. color: #333;
  30. + .lead {
  31. font-size: 1rem;
  32. margin-bottom: 2rem;
  33. }
  34. }
  35. .half-rule {
  36. width: 6rem;
  37. margin: 2.5rem auto;
  38. @include media-breakpoint-up(sm) {
  39. margin-right: 0;
  40. margin-left: 0;
  41. }
  42. }
  43. .bd-featurette h4 {
  44. margin-top: 1rem;
  45. margin-bottom: .5rem;
  46. font-weight: normal;
  47. color: #333;
  48. }
  49. .bd-featurette-img {
  50. display: block;
  51. margin-bottom: 1.25rem;
  52. color: #333;
  53. }
  54. .bd-featurette-img:hover {
  55. color: $brand-primary;
  56. text-decoration: none;
  57. }
  58. .bd-featurette-img img {
  59. display: block;
  60. margin-bottom: 1rem;
  61. }
  62. @media (min-width: 480px) {
  63. .bd-featurette .img-responsive {
  64. margin-top: 2rem;
  65. }
  66. }
  67. @media (min-width: 768px) {
  68. .bd-featurette {
  69. padding-top: 6rem;
  70. padding-bottom: 6rem;
  71. }
  72. .bd-featurette-title {
  73. font-size: 2.5rem;
  74. + .lead {
  75. font-size: 1.5rem;
  76. }
  77. }
  78. .bd-featurette .lead {
  79. max-width: 80%;
  80. }
  81. .bd-featurette .img-responsive {
  82. margin-top: 0;
  83. }
  84. }