123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- // Carbon Ads
- // For Page Headings
- #carbonads {
- padding: 1rem;
- border-radius: $border-radius-lg;
- overflow: hidden;
- font-size: 0.8rem;
- line-height: 1rem;
- background-color: fade-out($gray-100, 0.85);
- box-shadow: 0 0 1rem 0.5rem fade-out($gray-900, 0.9);
- .carbon-wrap {
- .carbon-img {
- margin: 0;
- display: block;
- float: left;
- img {
- display: block;
- border-radius: 0.5rem;
- }
- }
- .carbon-text {
- display: block;
- margin-left: 145px;
- color: fade-out($white, 0.2);
- text-decoration: none;
- font-weight: 700;
- }
- }
- .carbon-poweredby {
- display: block;
- margin-left: 145px;
- margin-top: 0.5rem;
- color: fade-out($white, 0.4);
- text-decoration: none;
- font-weight: 700;
- }
- }
- .carbon-inverse {
- #carbonads {
- background-color: $primary;
- }
- }
- // Carbon Native Test
- .native-standard {
- position: relative;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
- }
- .native-standard .native-banner {
- border-radius: $border-radius-lg;
- box-shadow: $box-shadow-lg;
- display: flex;
- padding: 20px;
- margin-bottom: 30px;
- text-decoration: none;
- flex-flow: row nowrap;
- justify-content: space-between;
- align-items: center;
- }
- .native-standard .native-banner .native-img {
- margin-right: 20px;
- max-height: 50px;
- line-height: 0;
- }
- .native-standard .native-banner .native-main {
- display: flex;
- margin: 0 auto;
- justify-content: center;
- flex-grow: 1;
- flex-flow: row nowrap;
- align-items: center;
- }
- .native-standard .native-banner .native-details {
- display: flex;
- margin-right: 20px;
- flex-flow: column nowrap;
- }
- .native-standard .native-banner .native-company {
- margin-bottom: 4px;
- text-transform: uppercase;
- letter-spacing: 2px;
- font-size: 10px;
- line-height: 1;
- }
- .native-standard .native-banner .native-desc {
- max-width: 600px;
- letter-spacing: 1px;
- font-weight: 300;
- line-height: 1.4;
- }
- .native-standard .native-banner .native-cta {
- padding: 10px 16px;
- border-radius: 3px;
- box-shadow: 0 6px 13px 0 hsla(0, 0%, 0%, .15);
- text-transform: uppercase;
- white-space: nowrap;
- letter-spacing: 1px;
- font-weight: 400;
- font-size: 12px;
- line-height: 1;
- transition: all 0.3s ease-in-out;
- transform: translateY(-1px);
- }
- .native-standard .native-banner .native-cta:hover {
- box-shadow: none;
- transform: translateY(1px);
- }
- .native-standard .native-via {
- position: absolute;
- right: 0;
- bottom: 0;
- padding: 5px 10px;
- border-top: 0;
- border-top-left-radius: 3px;
- background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
- color: #444;
- text-decoration: none;
- text-transform: uppercase;
- letter-spacing: 0.7px;
- font-weight: 600;
- font-size: 8px;
- line-height: 1;
- }
- @media only screen and (min-width: 320px) and (max-width: 759px) {
- .native-standard,
- .native-standard .native-main {
- flex-flow: column nowrap;
- }
- .native-standard .native-details,
- .native-standard .native-img {
- margin: 0;
- }
- .native-standard .native-img {
- display: none;
- }
- .native-standard .native-company {
- letter-spacing: 1px;
- }
- .native-standard .native-details {
- text-align: left;
- font-size: 14px;
- }
- .native-standard .native-cta {
- display: none;
- }
- }
|