PadApp/index.js

26 lines
567 B
JavaScript
Raw Normal View History

2022-12-07 21:59:01 +01:00
import { Stear, SWindow } from "./stear/main.js";
import {applyScrollBarCss1} from "./stear/extra/Style/scrollBar1.js"
import start from "./pages/start.jsx";
2022-12-11 22:23:21 +01:00
import * as color from "./js/color.js"
2022-12-07 21:59:01 +01:00
var stear = new Stear(document.querySelector("#stear"));
stear.style({
2022-12-11 22:23:21 +01:00
backgroundColor: color.bg(),
2022-12-07 21:59:01 +01:00
fontFamily: "Helvetica Neue",
fontWeight: "lighter",
fontSize: "0.9em",
2022-12-11 22:23:21 +01:00
color: color.text(),
2022-12-07 21:59:01 +01:00
});
applyScrollBarCss1();
stear.call(start, {});
window.stear = stear;
Stear.addLanguageFile({
}, "de");
Stear.lang = "de";
2022-12-11 22:23:21 +01:00
window.stear = stear;