mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-24 13:58:12 -05:00
18 lines
294 B
CSS
18 lines
294 B
CSS
/* not so fancy background */
|
|
|
|
#bg {
|
|
background-color: white;
|
|
}
|
|
|
|
#bg > div {
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-image: url(./images/background.jpg);
|
|
z-index: 0;
|
|
}
|