Skip to content

Instantly share code, notes, and snippets.

@pavlakis
Created February 3, 2013 19:19
Show Gist options
  • Save pavlakis/4703242 to your computer and use it in GitHub Desktop.
Save pavlakis/4703242 to your computer and use it in GitHub Desktop.
The css file for the slider example app.
@charset "UTF-8";
body{
background-color:#ffffff;
}
#container{
position:absolute;
left:0px;
top:0px;
z-index: 0;
}
#frame {
position:absolute;
left:100px;
top:100px;
width:400px;
height:150px;
z-index: 3;
border: 2px solid blue;
overflow: hidden;
}
#slides_container {
position: relative;
width: 1600px;
}
.slide {
float: left;
display: block;
width: 400px;
z-index: 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment