24 lines
500 B
JavaScript
24 lines
500 B
JavaScript
import { Stear, SWindow } from "./stear/main.js";
|
|
import {applyScrollBarCss1} from "./stear/extra/Style/scrollBar1.js"
|
|
import start from "./pages/start.jsx";
|
|
|
|
|
|
var stear = new Stear(document.querySelector("#stear"));
|
|
|
|
stear.style({
|
|
backgroundColor: "#dde",
|
|
fontFamily: "Helvetica Neue",
|
|
fontWeight: "lighter",
|
|
fontSize: "0.9em",
|
|
color: "#2a2a2a",
|
|
});
|
|
|
|
applyScrollBarCss1();
|
|
|
|
stear.call(start, {});
|
|
window.stear = stear;
|
|
|
|
Stear.addLanguageFile({
|
|
|
|
}, "de");
|
|
Stear.lang = "de";
|