/* these are special */

.slip-reordering {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.slip-swiping-container {
    overflow-x: hidden;
}

#slippylist li {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    cursor: default;
}


/* the rest is junk for the demo page */

#slippylist li.demo-allow-select {
    padding: 0 1em 0 1em;
    line-height: 1.3;
    user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
}

#slippylist li.demo-allow-select span {
    cursor: text;
}

/*
body {
    background: #eee;
    font-family: Helvetica, Arial, sans-serif;
    margin: 0 auto;
}
*/

#slippylist {
    clear: left;
    margin: 1em;
    padding: 0 0 1px;
}

#slippylist li {
    display: block;
    border: 1px solid black;
    /*background: white;*/
    margin: 0;
    padding: 0 1em;
    border-radius: 3px;
    margin-bottom: -1px;
    max-width: 100%;
    line-height: 3;
    vertical-align: middle;
    overflow-x: hidden;

}

#slippylist input {
    vertical-align: middle;
}

#slippylist .instant::after {
    content: " =";
}

#slippylist .instant {
    float: right;
}

.skewed {
    transform: rotate(2deg) scale(0.99);
    -webkit-transform: rotate(2deg) scale(0.99);
}

.demo-no-swipe.demo-no-reorder {
    /*
    opacity: 0.9;
    */
    border:black
}


