12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- // Footer Ads
- .bsa-cpc #_default_ {
- position: relative;
- display: flex;
- font-size: 14px;
- line-height: 1.5;
- }
- .bsa-cpc .default-ad {
- display: none;
- }
- .bsa-cpc ._default_ {
- position: relative;
- display: block;
- overflow: hidden;
- margin: 0 1em;
- padding: 1em;
- width: 50%;
- border-radius: $border-radius-lg;
- background-color: $white;
- line-height: 1.5;
- @extend .shadow;
- }
- .bsa-cpc a {
- text-align: left;
- color: inherit;
- text-decoration: none;
- transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
- }
- .bsa-cpc a:hover {
- border-color: $gray-500;
- }
- .bsa-cpc .default-image img {
- display: inline-block;
- vertical-align: middle;
- margin-right: 10px;
- width: 36px;
- border-radius: 7.5%;
- }
- .bsa-cpc .default-description,
- .bsa-cpc .default-title {
- display: block;
- margin-left: 46px;
- max-width: calc(100% - 36px);
- }
- .bsa-cpc .default-title {
- font-weight: 600;
- }
- @media only screen and (min-width: 320px) and (max-width: 759px) {
- .bsa-cpc #_default_ {
- flex-wrap: wrap;
- }
- .bsa-cpc ._default_ {
- margin: 0.5em 0;
- width: 100%;
- }
- }
- // Footer Social
- .footer-social {
- .footer-social-link {
- height: 4rem;
- width: 4rem;
- font-size: 1.5rem;
- &:hover {
- text-decoration: none;
- }
- }
- }
- // Footer Main
- .footer-main {
- color: fade-out($white, 0.6);
- a {
- color: fade-out($white, 0.3);
- }
- }
|