Browse Source

Added .SCSS with base CSS File so the css of the plugin could be easily added to SASS projects

pull/220/head
Marcial Cambronero 11 years ago
parent
commit
1943fd71d8
  1. 36
      _rslides.scss

36
_rslides.scss

@ -0,0 +1,36 @@
/*! http://responsiveslides.com v1.54 by @viljamis */
/* SCSS sintax so you can easily add it to your SASS project*/
$slider_class: rslides; //you can change this or add it to your _vars.scss
.#{$slider_class} {
position: relative;
list-style: none;
overflow: hidden;
width: 100%;
padding: 0;
margin: 0;
li {
-webkit-backface-visibility: hidden;
position: absolute;
display: none;
width: 100%;
left: 0;
top: 0;
&:first-child {
position: relative;
display: block;
float: left;
}
}
img {
display: block;
height: auto;
float: left;
width: 100%;
border: 0;
}
}
Loading…
Cancel
Save