
Skip to content
Personal
Open source
Business
Explore
Pricing
Blog
Support
This repository

2
0

    0

aescobarr/natusfera
Code
Issues 0
Pull requests 0
Projects 0
Wiki
Pulse
Graphs
natusfera/app/assets/stylesheets/jquery/plugins/jquery.jcarousel.css.scss
ddb64c8 on 12 Jan
aescobarr Initial commit
204 lines (173 sloc) 4.53 KB
/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width: 75px;
    height: 75px;
}

/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.jcarousel-next {
    z-index: 3;
    display: none;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
}


/* iNat-specific styles */
.jcarousel-skin-inat .jcarousel-container {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background: #eee;
    border: 1px solid #ddd;
}

.jcarousel-skin-inat .jcarousel-container-horizontal {
    width: 245px;
    padding: 10px 20px;
}

.jcarousel-skin-inat .jcarousel-container-vertical {
    width: 75px;
    height: 245px;
    padding: 20px 10px;
}

.jcarousel-skin-inat .jcarousel-clip-horizontal {
    width:  245px;
    height: 75px;
}

.jcarousel-skin-inat .jcarousel-clip-vertical {
    width:  75px;
    height: 245px;
}

.jcarousel-skin-inat .jcarousel-item {
    width: 75px;
    height: 75px;
}

.jcarousel-skin-inat .jcarousel-item-horizontal {
    margin-right: 10px;
}

.jcarousel-skin-inat .jcarousel-item-vertical {
    margin-bottom: 10px;
}

.jcarousel-skin-inat .jcarousel-item-placeholder {
    background: #fff;
    color: #000;
    background: #fff image-url('spinner-small.gif') no-repeat center center;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-skin-inat .jcarousel-next-horizontal {
    position: absolute;
    top: 40px;
    right: 0px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    background: transparent image-url('toggle_arrow_right.png') no-repeat 50% 50%;
}

.jcarousel-skin-inat .jcarousel-next-horizontal:hover {
/*    background-position: -32px 0;*/
}

.jcarousel-skin-inat .jcarousel-next-horizontal:active {
/*    background-position: -64px 0;*/
}

.jcarousel-skin-inat .jcarousel-next-disabled-horizontal,
.jcarousel-skin-inat .jcarousel-next-disabled-horizontal:hover,
.jcarousel-skin-inat .jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

.jcarousel-skin-inat .jcarousel-prev-horizontal {
    position: absolute;
    top: 40px;
    left: 0px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    background: transparent image-url('toggle_arrow_left.png') no-repeat 50% 50%;
}

.jcarousel-skin-inat .jcarousel-prev-horizontal:hover {
    background-position: -32px 0;
}

.jcarousel-skin-inat .jcarousel-prev-horizontal:active {
    background-position: -64px 0;
}

.jcarousel-skin-inat .jcarousel-prev-disabled-horizontal,
.jcarousel-skin-inat .jcarousel-prev-disabled-horizontal:hover,
.jcarousel-skin-inat .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}

/**
 *  Vertical Buttons
 */
.jcarousel-skin-inat .jcarousel-next-vertical {
    position: absolute;
    bottom: 5px;
    left: 43px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    background: transparent image-url('toggle_arrow_down.png') no-repeat 0 0;
}

.jcarousel-skin-inat .jcarousel-next-vertical:hover {
    background-position: 0 -32px;
}

.jcarousel-skin-inat .jcarousel-next-vertical:active {
    background-position: 0 -64px;
}

.jcarousel-skin-inat .jcarousel-next-disabled-vertical,
.jcarousel-skin-inat .jcarousel-next-disabled-vertical:hover,
.jcarousel-skin-inat .jcarousel-next-disabled-vertical:active {
    cursor: default;
    background-position: 0 -96px;
}

.jcarousel-skin-inat .jcarousel-prev-vertical {
    position: absolute;
    top: 5px;
    left: 43px;
    width:16px;
    height:16px;
    cursor: pointer;
    background: transparent image-url('toggle_arrow_up.png') no-repeat 0 0;
}

.jcarousel-skin-inat .jcarousel-prev-vertical:hover {
    background-position: 0 -32px;
}

.jcarousel-skin-inat .jcarousel-prev-vertical:active {
    background-position: 0 -64px;
}

.jcarousel-skin-inat .jcarousel-prev-disabled-vertical,
.jcarousel-skin-inat .jcarousel-prev-disabled-vertical:hover,
.jcarousel-skin-inat .jcarousel-prev-disabled-vertical:active {
    cursor: default;
    background-position: 0 -96px;
}

    Contact GitHub API Training Shop Blog About 

    © 2016 GitHub, Inc. Terms Privacy Security Status Help 

