Improved sKai support and overall download algo

This commit is contained in:
Luxferre
2023-03-26 15:44:43 +03:00
parent 175fbe4312
commit 5e4c21e30d
5 changed files with 60 additions and 8 deletions
+5 -4
View File
@@ -7,8 +7,8 @@
* {box-sizing: border-box; margin:0;padding:0}
html, body {
position: fixed;
width: 100%;
height: 100%;
width: 100vw;
height: 100vh;
color: var(--fg-color);
background: var(--bg-color);
font-family: sans-serif
@@ -19,8 +19,9 @@ body[data-theme="dark"] {
--link-color: cyan;
}
header {position: absolute; top: 0; left: 0; padding-left: 1px; width: 100%; height: 26px; border-bottom: 1px solid var(--fg-color); vertical-align: middle}
main {position: absolute; top: 26px; left: 0; width: 100%; height: calc(100% - 46px);font-size: 16px}
.preheader {position: absolute; top: 0; left: 0; width: 100%; height: 26px; background: #111}
header {position: absolute; top: 26px; left: 0; padding-left: 1px; width: 100%; height: 26px; border-bottom: 1px solid var(--fg-color); vertical-align: middle}
main {position: absolute; top: 52px; left: 0; width: 100%; height: calc(100% - 72px);font-size: 16px}
footer {position: absolute; bottom: 0; left: 0; width: 100%; padding: 0 4px; height: 20px; border-top: 1px solid var(--fg-color); font-size: 14px}
header>* {display:inline-block; font-size: 18px; padding: 2px; vertical-align: middle;line-height:22px}