1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- .bd-featurette {
- padding-top: 3rem;
- padding-bottom: 3rem;
- font-size: 1rem;
- line-height: 1.5;
- color: #555;
- text-align: center;
- background-color: #fff;
- border-top: 1px solid #eee;
- .highlight {
- text-align: left;
- }
- @include media-breakpoint-up(sm) {
- text-align: left;
- }
- @include media-breakpoint-up(md) {
- .col-sm-6:first-child {
- padding-right: ($grid-gutter-width * 1.5);
- };
- .col-sm-6:last-child {
- padding-left: ($grid-gutter-width * 1.5);
- }
- }
- }
- .bd-featurette-title {
- margin-bottom: .5rem;
- font-size: 2rem;
- font-weight: normal;
- color: #333;
- + .lead {
- font-size: 1rem;
- margin-bottom: 2rem;
- }
- }
- .half-rule {
- width: 6rem;
- margin: 2.5rem auto;
- @include media-breakpoint-up(sm) {
- margin-right: 0;
- margin-left: 0;
- }
- }
- .bd-featurette h4 {
- margin-top: 1rem;
- margin-bottom: .5rem;
- font-weight: normal;
- color: #333;
- }
- .bd-featurette-img {
- display: block;
- margin-bottom: 1.25rem;
- color: #333;
- }
- .bd-featurette-img:hover {
- color: $brand-primary;
- text-decoration: none;
- }
- .bd-featurette-img img {
- display: block;
- margin-bottom: 1rem;
- }
- @media (min-width: 480px) {
- .bd-featurette .img-responsive {
- margin-top: 2rem;
- }
- }
- @media (min-width: 768px) {
- .bd-featurette {
- padding-top: 6rem;
- padding-bottom: 6rem;
- }
- .bd-featurette-title {
- font-size: 2.5rem;
- + .lead {
- font-size: 1.5rem;
- }
- }
- .bd-featurette .lead {
- max-width: 80%;
- }
- .bd-featurette .img-responsive {
- margin-top: 0;
- }
- }
|