Skip to content

Commit

Permalink
Merge pull request #19 from tulimaki/add-extra-styles-for-carousel
Browse files Browse the repository at this point in the history
Add extra styles for carousel
  • Loading branch information
Pikkupomo authored Sep 13, 2016
2 parents 4c7a64a + 8f93840 commit 807888d
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
if __name__ == '__main__':
setuptools.setup(
name="shuup_megastore_theme",
version="1.1.0",
version="1.1.1",
description="Shuup Megastore Theme",
packages=setuptools.find_packages(),
include_package_data=True,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,61 @@ section.carousel-banner-section {
display: none;
}
}

.carousel-plugin {
.fa {
font-size: 30px;
z-index: 10;
position: absolute;
top: 50%;
margin-top: -15px;
}
.fa-angle-left {
left: -25px;
z-index: 1000;
}
.fa-angle-right {
right: -25px;
}

&.one {
.fa-angle-left {
left: 40px;
}
.fa-angle-right {
right: 40px;
}
.owl-dots {
position: absolute;
bottom: 0 !important;
left: 50%;
z-index: 15;
width: 60%;
margin-left: -30%;
padding-left: 0;
list-style: none;
text-align: center;
}
.owl-dot {
background: transparent;
border-radius: 10px;
border: 1px solid #6f6f6f;
display: inline-block;
height: 10px;
margin: 1px;
width: 10px;
&.active {
margin: 0;
width: 12px;
height: 12px;
background-color: #6f6f6f;
}
}
}
}

.carousel-banner-section {
margin-top: 30px;
margin-bottom: 15px;
padding: 0 30px;
}

0 comments on commit 807888d

Please sign in to comment.