stitches
Version:
Stitches is an HTML5 sprite sheet generator.
84 lines (74 loc) • 1.84 kB
CSS
/*!
* Stitches - HTML5 Sprite Generator
* http://draeton.github.com/stitches
*
* HTML5 Sprite Sheet Generator
*
* Copyright 2013 Matthew Cobbs
* Licensed under the MIT license.
*/
.stitches {
min-width: 400px;
}
.stitches > img {
display: none;
}
.stitches-toolbar {
margin: 0;
padding: 6px;
background-color: #fafafa;
background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
*zoom: 1;
border: 1px solid #d4d4d4;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
.stitches-progress {
height: 4px;
background-color: #e5e5e5;
}
.stitches-progress .progress {
margin: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.stitches-drop-box {
position: relative;
z-index: 0;
min-height: 400px;
}
.stitches-overlay {
display: none;
position: absolute;
z-index: 1000;
width: 100%;
height: 100%;
background-color: #e5e5e5;
background-image: url(../img/stripes90.gif);
}
.stitches-overlay.in {
opacity: 0.4;
}
.stitches-wrap {
position: absolute;
z-index: 0;
width: 100%;
height: 100%;
background-color: #e5e5e5;
overflow: auto;
}
.stitches-canvas {
position: relative;
z-index: 0;
width: 0;
height: 0;
background-image: url(../img/checkerboard10.png);
}