-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
412c43a
commit 5620f36
Showing
33 changed files
with
5,228 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?php | ||
/* | ||
Plugin Name: AVED Multi Slider | ||
Plugin URI: http://AVEDsoft.com | ||
Description: WooCommerce Functional Slider | ||
Version: 2.0 | ||
Author: AVED soft | Vadim Kopeiken | ||
Author URI: http://avedsoft.com | ||
License: GPL2 | ||
Copyright 2016 AVEDsoft (email : [email protected]) | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License, version 2, as | ||
published by the Free Software Foundation. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | ||
*/ | ||
?> | ||
<?php | ||
|
||
//** Define structure **// | ||
|
||
define( 'AVS_SLIDER_DIR', plugin_dir_path( __FILE__ ) ); | ||
define( 'AVS_SLIDER_URL', plugins_url(__FILE__) ); | ||
|
||
//** Start init **// | ||
|
||
require_once(AVS_SLIDER_DIR.'includes/init.php'); | ||
|
||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#main-set-avs{ | ||
background: #52accc; | ||
margin-top: 50px; | ||
color:#fff; | ||
} | ||
#main-set-avs select{ | ||
color:#444; | ||
} | ||
[hidden_s="true"] | ||
{ | ||
display: none; | ||
} | ||
[hidden_s="false"] | ||
{ | ||
display: block; | ||
} | ||
|
||
div.editor{ | ||
position: absolute; | ||
top: 10px; | ||
left:10px; | ||
right: 10px; | ||
border:1px solid #096484; | ||
padding: 15px; | ||
background: #4796b3; | ||
} | ||
|
||
.list-slides { | ||
margin: 10px; | ||
} | ||
.message-box-succsess | ||
{ | ||
border:1px solid green; | ||
margin-top: 30px; | ||
color:green; | ||
} | ||
.message-box-error | ||
{ | ||
border: 1px solid red; | ||
margin-top: 30px; | ||
color:red; | ||
} | ||
|
||
a{cursor: pointer;} | ||
.avs-created | ||
{ | ||
padding:15px; | ||
} | ||
.col-lg-6.col-md-6 label | ||
{ | ||
width:100%; | ||
float:left; | ||
} | ||
.col-lg-6.col-md-6 label input, .col-lg-6.col-md-6 label select { | ||
float: right; | ||
width: 80px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* | ||
* Custom styles for AVS Slider Plugin | ||
* | ||
* AVS Core | ||
*/ | ||
div.slide ul.products div.qwe { | ||
max-width: 80%; | ||
width: 80%; | ||
margin-top: 5%; | ||
background-color:#fff; | ||
} | ||
div.slide ul.products | ||
{ | ||
background:none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
|
||
/* | ||
* This styles for current output woocommerce products | ||
*/ | ||
div.slide ul.products li.product | ||
{ | ||
max-width: 80%; | ||
width: 100%; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
@charset 'UTF-8'; | ||
/* Arrows */ | ||
.slick-prev, | ||
.slick-next | ||
{ | ||
font-size: 0; | ||
line-height: 0; | ||
|
||
position: absolute; | ||
top: 50%; | ||
|
||
display: block; | ||
|
||
width: 20px; | ||
height: 20px; | ||
padding: 0; | ||
-webkit-transform: translate(0, -50%); | ||
-ms-transform: translate(0, -50%); | ||
transform: translate(0, -50%); | ||
|
||
cursor: pointer; | ||
|
||
color: transparent; | ||
border: none; | ||
outline: none; | ||
background: transparent; | ||
} | ||
|
||
|
||
.slick-prev | ||
{ | ||
left: -50px; | ||
outline: none; | ||
background:url("../img/arrow-prev.png") no-repeat scroll 10px 14px rgba(0, 0, 0, 0.3); | ||
border: 1px solid rgb(221, 221, 221); | ||
font-weight:bold; | ||
font-size:20px; | ||
color: #656464; | ||
background-color: #fff; | ||
transition: all 0.6s ease 0s; | ||
cursor: pointer; | ||
width:50px; | ||
height:50px; | ||
border-radius: 50px; | ||
} | ||
|
||
|
||
.slick-next | ||
{ | ||
right: -50px; | ||
outline: none; | ||
background:url("../img/arrow-next.png") no-repeat scroll 10px 14px rgba(0, 0, 0, 0.3); | ||
border: 1px solid rgb(221, 221, 221); | ||
font-weight:bold; | ||
font-size:20px; | ||
color: #656464; | ||
background-color: #fff; | ||
transition: all 0.6s ease 0s; | ||
cursor: pointer; | ||
width:50px; | ||
height:50px; | ||
border-radius: 50px; | ||
} | ||
.slick-next:hover, .slick-prev:hover{ | ||
box-shadow: 0 0 10px 0 rgb(102,102,102); | ||
} | ||
@media screen and (max-width: 420px) { | ||
.slick-next {right: -40px;width:40px;height:40px;background-position:5px 9px;} | ||
.slick-prev {left: -40px;width:40px;height:40px;background-position:5px 9px;} | ||
} | ||
/* Dots */ | ||
.slick-dotted.slick-slider | ||
{ | ||
margin-bottom: 30px; | ||
} | ||
|
||
.slick-dots | ||
{ | ||
position: absolute; | ||
bottom: -25px; | ||
|
||
display: block; | ||
|
||
width: 100%; | ||
padding: 0; | ||
margin: 0; | ||
|
||
list-style: none; | ||
|
||
text-align: center; | ||
} | ||
.slick-dots li | ||
{ | ||
position: relative; | ||
|
||
display: inline-block; | ||
|
||
width: 20px; | ||
height: 20px; | ||
margin: 0 5px; | ||
padding: 0; | ||
|
||
cursor: pointer; | ||
} | ||
.slick-dots li button | ||
{ | ||
font-size: 0; | ||
line-height: 0; | ||
|
||
display: block; | ||
|
||
width: 20px; | ||
height: 20px; | ||
padding: 5px; | ||
|
||
cursor: pointer; | ||
|
||
color: transparent; | ||
border: 0; | ||
outline: none; | ||
background: transparent; | ||
} | ||
.slick-dots li button:hover, | ||
.slick-dots li button:focus | ||
{ | ||
outline: none; | ||
} | ||
.slick-dots li button:hover:before, | ||
.slick-dots li button:focus:before | ||
{ | ||
opacity: 1; | ||
} | ||
.slick-dots li button:before | ||
{ | ||
font-family: 'slick'; | ||
font-size: 6px; | ||
line-height: 20px; | ||
|
||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
|
||
width: 20px; | ||
height: 20px; | ||
|
||
content: '•'; | ||
text-align: center; | ||
|
||
opacity: .25; | ||
color: black; | ||
|
||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
.slick-dots li.slick-active button:before | ||
{ | ||
opacity: .75; | ||
color: black; | ||
} |
Oops, something went wrong.