70 lines
857 B
CSS
70 lines
857 B
CSS
|
.gridster * {
|
||
|
margin:0;
|
||
|
padding:0;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
list-style-type: none;
|
||
|
}
|
||
|
|
||
|
|
||
|
/*/
|
||
|
/* demo
|
||
|
/*/
|
||
|
|
||
|
|
||
|
body {
|
||
|
font-size: 16px;
|
||
|
font-family: 'Helvetica Neue', Arial, sans-serif;
|
||
|
color: #444;
|
||
|
margin: 30px 40px;
|
||
|
}
|
||
|
|
||
|
.controls {
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
/*/
|
||
|
/* gridster
|
||
|
/*/
|
||
|
|
||
|
.gridster ul {
|
||
|
background-color: #EFEFEF;
|
||
|
}
|
||
|
|
||
|
.gridster li {
|
||
|
font-size: 1em;
|
||
|
font-weight: bold;
|
||
|
text-align: center;
|
||
|
line-height: 100%;
|
||
|
}
|
||
|
|
||
|
|
||
|
.gridster {
|
||
|
margin: 0 auto;
|
||
|
|
||
|
opacity: .8;
|
||
|
|
||
|
-webkit-transition: opacity .6s;
|
||
|
-moz-transition: opacity .6s;
|
||
|
-o-transition: opacity .6s;
|
||
|
-ms-transition: opacity .6s;
|
||
|
transition: opacity .6s;
|
||
|
}
|
||
|
|
||
|
.gridster .gs-w {
|
||
|
background: #DDD;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.gridster .player {
|
||
|
background: #BBB;
|
||
|
}
|
||
|
|
||
|
|
||
|
.gridster .preview-holder {
|
||
|
border: none!important;
|
||
|
background: red!important;
|
||
|
}
|
||
|
|