first commit
This commit is contained in:
@@ -0,0 +1,138 @@
|
||||
.eael-woo-collections {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
}
|
||||
.eael-woo-collections .eael-woo-collection-badge {
|
||||
position: absolute;
|
||||
top: 25px;
|
||||
left: 0;
|
||||
background: #278cff;
|
||||
color: #fff;
|
||||
padding: 5px 15px 5px 10px;
|
||||
line-height: 15px;
|
||||
font-size: 14px;
|
||||
border-top-right-radius: 10px;
|
||||
border-bottom-right-radius: 10px;
|
||||
}
|
||||
.eael-woo-collections .eael-woo-collections-bg {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
-o-object-fit: cover;
|
||||
object-fit: cover;
|
||||
}
|
||||
.eael-woo-collections .eael-woo-collections-thumbnail {
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
.eael-woo-collections .eael-woo-collections-bg-hover-zoom-in {
|
||||
-webkit-transition: -webkit-transform 300ms;
|
||||
transition: -webkit-transform 300ms;
|
||||
transition: transform 300ms;
|
||||
transition: transform 300ms, -webkit-transform 300ms;
|
||||
}
|
||||
.eael-woo-collections .eael-woo-collections-bg-hover-zoom-out {
|
||||
-webkit-transform: scale(1.1);
|
||||
-ms-transform: scale(1.1);
|
||||
transform: scale(1.1);
|
||||
-webkit-transition: -webkit-transform 300ms;
|
||||
transition: -webkit-transform 300ms;
|
||||
transition: transform 300ms;
|
||||
transition: transform 300ms, -webkit-transform 300ms;
|
||||
}
|
||||
.eael-woo-collections .eael-woo-collections-bg-hover-blur {
|
||||
-webkit-transition: -webkit-filter 300ms;
|
||||
transition: -webkit-filter 300ms;
|
||||
transition: filter 300ms;
|
||||
transition: filter 300ms, -webkit-filter 300ms;
|
||||
}
|
||||
.eael-woo-collections .eael-woo-collections-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
padding: 25px;
|
||||
-webkit-transition: background-color 300ms;
|
||||
transition: background-color 300ms;
|
||||
}
|
||||
.eael-woo-collections .eael-woo-collections-overlay.eael-woo-collections-overlay-center {
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
.eael-woo-collections .eael-woo-collections-overlay.eael-woo-collections-overlay-right {
|
||||
-webkit-box-pack: end;
|
||||
-ms-flex-pack: end;
|
||||
justify-content: flex-end;
|
||||
text-align: right;
|
||||
}
|
||||
.eael-woo-collections .eael-woo-collections-overlay .eael-woo-collections-overlay-inner {
|
||||
-ms-flex-item-align: end;
|
||||
align-self: flex-end;
|
||||
}
|
||||
.eael-woo-collections .eael-woo-collections-overlay .eael-woo-collections-overlay-inner.eael-woo-collections-overlay-inner-middle {
|
||||
-ms-flex-item-align: center;
|
||||
align-self: center;
|
||||
}
|
||||
.eael-woo-collections .eael-woo-collections-overlay .eael-woo-collections-overlay-inner.eael-woo-collections-overlay-inner-top {
|
||||
-ms-flex-item-align: start;
|
||||
align-self: flex-start;
|
||||
}
|
||||
.eael-woo-collections .eael-woo-collections-overlay .eael-woo-collections-overlay-inner span {
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
line-height: 1;
|
||||
color: #000;
|
||||
-webkit-transition: all 300ms;
|
||||
transition: all 300ms;
|
||||
}
|
||||
.eael-woo-collections .eael-woo-collections-overlay .eael-woo-collections-overlay-inner h2 {
|
||||
font-size: 34px;
|
||||
font-weight: 400;
|
||||
line-height: 1.2;
|
||||
color: #000;
|
||||
-webkit-transition: all 300ms;
|
||||
transition: all 300ms;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.eael-woo-collections:hover .eael-woo-collections-bg-hover-zoom-in {
|
||||
-webkit-transform: scale(1.1);
|
||||
-ms-transform: scale(1.1);
|
||||
transform: scale(1.1);
|
||||
}
|
||||
.eael-woo-collections:hover .eael-woo-collections-bg-hover-zoom-out {
|
||||
-webkit-transform: scale(1);
|
||||
-ms-transform: scale(1);
|
||||
transform: scale(1);
|
||||
}
|
||||
.eael-woo-collections:hover .eael-woo-collections-bg-hover-blur {
|
||||
-webkit-filter: blur(2px);
|
||||
filter: blur(2px);
|
||||
}
|
||||
.eael-woo-collections.eael-woo-collections-layout-two {
|
||||
-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
|
||||
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
.eael-woo-collections.eael-woo-collections-layout-two > a {
|
||||
display: block;
|
||||
color: inherit;
|
||||
overflow: hidden;
|
||||
}
|
||||
.eael-woo-collections.eael-woo-collections-layout-two .eael-woo-collections-thumbnail {
|
||||
border-radius: 5px;
|
||||
}
|
||||
.eael-woo-collections.eael-woo-collections-layout-two .eael-woo-collections-content {
|
||||
text-align: center;
|
||||
padding-top: 30px;
|
||||
}
|
||||
.eael-woo-collections.eael-woo-collections-layout-two .eael-woo-collections-overlay {
|
||||
padding: 20px;
|
||||
}
|
||||
.rtl .eael-woo-collections .eael-woo-collections-overlay {
|
||||
direction: ltr;
|
||||
}
|
||||
Reference in New Issue
Block a user