diff --git a/dev/Styles/@Boot.css b/dev/Styles/@Boot.css index f6490ef18..9fb8fa512 100644 --- a/dev/Styles/@Boot.css +++ b/dev/Styles/@Boot.css @@ -1,13 +1,12 @@ html, body { - background-color: #eee; font-family: "DejaVu Sans", Verdana, Geneva, "Bitstream Vera Sans", "DejaVu LGC Sans", sans-serif; margin: 0; padding: 0; } body { - background-color: #aaa; - color: #333; + background: var(--main-bg-color, #aaa); + color: var(--main-color, #333); } #rl-loading, #rl-loading-error { diff --git a/dev/Styles/Layout.less b/dev/Styles/Layout.less index 887af0819..ce4a3cca1 100644 --- a/dev/Styles/Layout.less +++ b/dev/Styles/Layout.less @@ -1,6 +1,5 @@ .UserBackground body { - background-size: cover; background-size: contain; background-repeat: no-repeat; background-position: center; diff --git a/dev/Styles/Main.less b/dev/Styles/Main.less index b6ee1ee8b..bcdc35598 100644 --- a/dev/Styles/Main.less +++ b/dev/Styles/Main.less @@ -4,31 +4,26 @@ */ html, body { - font-family: Arial, Verdana, Geneva, sans-serif; height: 100%; - margin: 0; overflow: hidden; - padding: 0; line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } body { - background: var(--main-bg-color, #e3e3e3); - color: var(--main-color, #333); - -webkit-touch-callout: none; - position: absolute; + position: fixed; top: 0; left: 0; bottom: 0; right: 0; } -/* -.rl-mobile -*/ +html:not(.rl-mobile) { + min-width: 700px; +} + @media screen and (min-width: 1000px) { body { background-image: var(--main-bg-image);