13 lines
342 B
CSS
13 lines
342 B
CSS
|
|
body {
|
||
|
|
font-family: 'Helvetica Neue', Arial, sans-serif;
|
||
|
|
background: #004756;
|
||
|
|
color: #fff;
|
||
|
|
}
|
||
|
|
.gridster .gridster-item {
|
||
|
|
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||
|
|
-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||
|
|
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||
|
|
color: #004756;
|
||
|
|
background: #ffffff;
|
||
|
|
padding: 10px;
|
||
|
|
}
|