File "main-volantino.scss"

Full Path: /srv/www/www.cadoro.it/src/scss/main-volantino.scss
File size: 1.74 KB
MIME-type: text/plain
Charset: utf-8

.volantino-prodotto {
  color: #000;
  display: block;
  border: 1px solid #aaa;
  padding: 10px;
  min-height: 280px;

  &:hover,
  &:focus,
  &:active {
    text-decoration: none;
  }

  .volantino-prodotto--immagine {
    min-height: 175px;
    line-height: 175px;
    text-align: center;
    position: relative;

    img {
      display: inline-block;
      max-height: 240px;
      max-width: 100%;
    }

    .cartiglio {
      line-height: 50px;
      position: absolute;
      top: 0; right: 0;
      text-align: right;

      img {
        max-height: 50px;
        max-width: 50px;
      }
    }
  }

  .volantino-prodotto--titolo {
    font-size: 14px;
    line-height: 18px;
    height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;

    strong {
      display: block;
    }
  }

  .volantino-prodotto--prezzo {
    border-bottom: 1px solid #e10f21;
    border-top: 1px solid #e10f21;
    padding-top: 15px;
    padding-bottom: 10px;

    .sconto {
      font-weight: bold;
      text-align: center;
      font-size: 14px;
      line-height: 14px;

      .sconto--listino {
        display: inline-block;
        margin-right: 10px;
        text-decoration: line-through;
      }
      .sconto--sconto {
        display: inline-block;
        margin-left: 10px;
      }
    }

    .prezzo {
      text-align: center;
      margin-top: 5px;
      color: #e10f21;
      font-size: 36px;
      font-weight: bold;
      line-height: 36px;
    }
  }

  .volantino-prodotto--azione {
    background: transparent url(../images/volantino-plus.png) 24px 8px no-repeat;
    text-align: left;
    color: #e10f21;
    font-size: 13px;
    line-height: 17px;
    padding: 10px 10px 0 75px;
  }
}

@media(max-width: 500px) {
  .volantino-prodotto {
  min-height: 475px;
  }
}