13 lines
489 B
CSS
13 lines
489 B
CSS
html, body {
|
|
height: 100%; /* ges Hoehe der Seite -> weitere Hoehenangaben werden relativ hierzu ausgewertet */
|
|
overflow: hidden; /* hide scrollbars */
|
|
opacity: 1.0;
|
|
background-size: cover;
|
|
/* TODO: Make the transition time configurable */
|
|
-webkit-transition: background 5s linear;
|
|
-moz-transition: background 5s linear;
|
|
-o-transition: background 5s linear;
|
|
-ms-transition: background 5s linear;
|
|
transition: background 5s linear;
|
|
}
|