The frontend/UI server, written in JS using the MarkoJS library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
422 B

6 years ago
  1. .background {
  2. /* Set rules to fill background */
  3. width: 100%;
  4. /* Set up proportionate scaling */
  5. min-height: 100%;
  6. height: auto;
  7. /* Set up positioning */
  8. position: fixed;
  9. top: 0;
  10. left: 0;
  11. user-select: none;
  12. -webkit-user-drag: none;
  13. z-index: -1;
  14. }
  15. .background.landscape {
  16. /* Set rules to fill background */
  17. height: 100%;
  18. /* Set up proportionate scaling */
  19. min-width: 100%;
  20. width: auto;
  21. }