21 lines
332 B
CSS
21 lines
332 B
CSS
/* Hintergrundbild */
|
|
.scroll-content {
|
|
background: url("../images/background.png");
|
|
background-size: cover;
|
|
color: #333;
|
|
font: 100% Arial, Sans Serif;
|
|
height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.dragzone{
|
|
height:48px;
|
|
width: 64px;
|
|
}
|
|
|
|
.dropzone{
|
|
height:96px;
|
|
width: 128px;
|
|
} |