Changed everything to be box-sizing: border-box;

This commit is contained in:
the-djmaze 2022-11-21 11:00:39 +01:00
parent 2d832ff5ea
commit cb167da854
25 changed files with 37 additions and 109 deletions

View file

@ -35,15 +35,29 @@
--fontSerif: "URW Palladio L", Georgia, Times, serif;
}
*, *::before, *::after {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
-webkit-text-size-adjust: 100%; /* 2 */
}
#rl-app {
background-color: var(--main-bg-color, #aaa);
color: var(--main-color, #333);
font-family: var(--fontSans);
-webkit-touch-callout: none;
font-size: var(--main-font-size, 14px);
line-height: 1.25; /* 1 */
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
#rl-loading, #rl-loading-error {