Collector/scene.css

13 lines
489 B
CSS
Raw Normal View History

2023-06-23 19:40:45 +00:00
html, body {
height: 100%; /* ges Hoehe der Seite -> weitere Hoehenangaben werden relativ hierzu ausgewertet */
overflow: hidden; /* hide scrollbars */
opacity: 1.0;
2023-06-23 19:24:16 +00:00
background-size: cover;
2023-06-23 19:40:45 +00:00
/* 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;
2023-06-23 19:24:16 +00:00
}