Modul Sleva v hlavičce stránky

Upozornění na bonus nebo speciální akci v šedivém buttonu hned vedle lajkovacího tlačítka nahoře v hlavičce stránky.

Třída .discount_in_head.

TODO

  • Vymanit ze zajetí #content – po přesunu všech barev do proměnných

Použití:

Varianta: s obrázkovou ikonou namísto textem

Třída .discount_in_head.with_image_icon.

.discount_in_head {
    text-align: center;
    width: auto;
    margin: 0 auto @base-line-height auto;
    font-size: @smaller-font-size;
    line-height: @smaller-line-height;

    b {
      color: #444;
        font-weight: normal;
        font-size: 20px;
        line-height: 22px;
    }

    p {
      margin: 0;
    }
}

.discount_in_head a {
    display: inline-block;
    padding: 7px 10px 6px;
    color: #999;
    background: #ddd;
    .border-radius(5px);

    &:hover,
    &:focus,
    &:active {
        text-decoration: none;
        background: #444;
        color: #ddd;

        b {
            color: #ddd;
        }
    }
}

.discount_in_head {
    @media @large-start {
        position: absolute;
        top: -2px;
        right: 30px;
        margin-bottom: 0;
    }
}



.discount_in_head.with_image_icon {
    a,
    a:hover,
    a:focus,
    a:active {
        background: transparent;
        padding: 0;
    }

    img {
        max-height: 60px;
    }

    a:hover,
    a:focus,
    a:active {
      img {
        .opacity(.95);
      }
    }
}