2022-06-09 16:26:27 +02:00
|
|
|
import { Stear, SWindow } from "../stear/main.js";
|
2022-06-09 15:29:53 +02:00
|
|
|
|
2022-08-13 17:52:45 +02:00
|
|
|
import start from "./start.js";
|
2022-06-09 15:29:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
var stear = new Stear(document.querySelector("#stear"));
|
|
|
|
|
|
|
|
stear.style({
|
|
|
|
backgroundColor: "#dde",
|
|
|
|
fontFamily: "Helvetica Neue",
|
|
|
|
fontWeight: "lighter",
|
|
|
|
fontSize: "0.9em",
|
|
|
|
color: "#2a2a2a",
|
|
|
|
});
|
|
|
|
|
2022-08-13 17:52:45 +02:00
|
|
|
/*stear.addElement("connect", connect);
|
|
|
|
stear.addElement("start", start);*/
|
2022-06-09 15:29:53 +02:00
|
|
|
|
2022-08-13 17:52:45 +02:00
|
|
|
stear.call(start, {});
|