gallery.scss 1.49 KB
Newer Older
Felipe Escala Torres committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
// COMPASS LIBRARY
@import "compass/css3";

// CORE
@import "../../../global/sass/core/variable";
@import "../../../global/sass/core/mixins";
@import "../../../global/sass/core/functions";

/* ========================================================================
 * GALLERY
 * ======================================================================== */
.gallery-img{
  display: block;
  width: 100%;
  margin-bottom: 0px;
}
.gallery-item {
  background: #fcfcfc;
  margin-bottom: 20px;
  position: relative;
  p{
    margin: 0px;
  }
}
.gallery-details{
  padding: 10px;
}
.gallery-summary{
  font-size: 13px;
  .btn{
    margin-top: 10px;
  }
}
.gallery-love{
  background-color: lighten($black, 20%);
  @include border-radius(50%);
  @include resize(30px);
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: center;
  line-height: 30px;
  i{
    color: $red;
  }
}
.gallery-author{
  padding: 0px 10px 10px 10px;
  h4{
    font-size: 14px;
    margin-bottom: 0px;
  }
  span{
    font-size: 12px;
    color: lighten(#636E7B, 20%);
  }
}
#gallery{
  margin-top: 20px;
  min-height: 1300px;
  .mix{
    text-align: left;
    display: none;
    -webkit-backface-visibility: hidden;
    -webkit-transform-origin: 50% 0;
  }
}
#gallery{
  @include column-count(4);
  padding-left: 0px;
}
@media (max-width: 900px){
  #gallery{
    @include column-count(3);
  }
}
@media (max-width: 550px){
  #gallery{
    @include column-count(2);
  }
}
@media (max-width: 400px){
  #gallery{
    @include column-count(1);
  }
}