141 lines
1.7 KiB
SCSS
141 lines
1.7 KiB
SCSS
|
|
// =================
|
||
|
|
// Imports
|
||
|
|
// =================
|
||
|
|
|
||
|
|
@import '../../base/base'; // Base Variables
|
||
|
|
|
||
|
|
/*Basic*/
|
||
|
|
|
||
|
|
.my-gallery {
|
||
|
|
img {
|
||
|
|
width: 100%;
|
||
|
|
height: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
figcaption {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
/*Advance */
|
||
|
|
|
||
|
|
.demo-gallery {
|
||
|
|
width: 100%;
|
||
|
|
height: auto;
|
||
|
|
float: left;
|
||
|
|
|
||
|
|
a {
|
||
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||
|
|
-webkit-touch-callout: none;
|
||
|
|
display: block;
|
||
|
|
float: left;
|
||
|
|
line-height: 0;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
a.demo-gallery__img--main {
|
||
|
|
width: auto;
|
||
|
|
height: auto;
|
||
|
|
}
|
||
|
|
|
||
|
|
.demo-gallery {
|
||
|
|
a img {
|
||
|
|
width: 100%;
|
||
|
|
padding: 4px;
|
||
|
|
border-radius: 8px;
|
||
|
|
}
|
||
|
|
|
||
|
|
figure {
|
||
|
|
display: none;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.demo-gallery__title {
|
||
|
|
line-height: 14px;
|
||
|
|
font-size: 14px;
|
||
|
|
opacity: 0.8;
|
||
|
|
margin-top: 5px;
|
||
|
|
width: 100%;
|
||
|
|
float: left;
|
||
|
|
}
|
||
|
|
|
||
|
|
.share-buttons {
|
||
|
|
h2 {
|
||
|
|
text-align: center;
|
||
|
|
border: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
text-align: center;
|
||
|
|
position: relative;
|
||
|
|
margin: 0 0 24px;
|
||
|
|
|
||
|
|
a {
|
||
|
|
-moz-border-radius: 2px;
|
||
|
|
border-radius: 2px;
|
||
|
|
display: inline-block;
|
||
|
|
padding: 10px 20px;
|
||
|
|
margin: 10px;
|
||
|
|
color: $white;
|
||
|
|
text-decoration: none;
|
||
|
|
background: #5AAF63;
|
||
|
|
font-size: 16px;
|
||
|
|
line-height: 22px;
|
||
|
|
cursor: pointer;
|
||
|
|
|
||
|
|
&:hover {
|
||
|
|
opacity: 0.7;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
#tweet {
|
||
|
|
background: #0096c4;
|
||
|
|
}
|
||
|
|
|
||
|
|
#like {
|
||
|
|
background: #3b5998;
|
||
|
|
}
|
||
|
|
|
||
|
|
#gplus {
|
||
|
|
background: #d34836;
|
||
|
|
}
|
||
|
|
|
||
|
|
.img-1, .img-2, .img-3 {
|
||
|
|
width: 33.333333%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.img-4 {
|
||
|
|
width: 66.666667%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.img-5, .img-6, .img-7 {
|
||
|
|
width: 33.333333%;
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 767px) {
|
||
|
|
.img-1 {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.img-2, .img-3 {
|
||
|
|
width: 50%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.img-4 {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.img-5, .img-6 {
|
||
|
|
width: 50%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.img-7 {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@media (max-width: 575px) {
|
||
|
|
.img-1, .img-2, .img-3, .img-4, .img-5, .img-6, .img-7 {
|
||
|
|
width: 100%;
|
||
|
|
}
|
||
|
|
}
|