inital commit

This commit is contained in:
grey
2025-03-06 18:52:49 +01:00
commit 5820933da1
26 changed files with 738 additions and 0 deletions

BIN
res/images/base_1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
res/images/base_2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 919 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 915 B

BIN
res/images/buttons/Off.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

BIN
res/images/buttons/On.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 887 B

BIN
res/images/licht_blau.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
res/images/licht_gelb.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
res/images/licht_gruen.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

BIN
res/images/licht_rot.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
res/images/licht_summer.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

BIN
res/images/licht_weiss.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
res/images/module_blue.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
res/images/module_green.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
res/images/module_red.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

BIN
res/images/module_white.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
res/images/no.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 973 B

BIN
res/images/top.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

72
res/style.css Normal file
View File

@@ -0,0 +1,72 @@
html {
font-family: Arial, sans-serif;
}
.leftPreview {
width: 50%;
float: left;
padding: 10px;
}
#leuchte img {
padding: 0px;
margin: 0px;
vertical-align: middle;
box-sizing: border-box;
}
#leuchte br {
padding: 0px;
margin: 0px;
height: 0px;
}
.ringConf img {
width: 10%;
}
#ctrlPane {
margin-top: "24px" !important;
}
.ctrl {
background-color: transparent;
border: 0px solid black;
height: 82px;
/* Center items vertically */
display: flex;
align-items: center;
}
.ctrl-action {
background-color: transparent;
border: 0px solid black;
height: 40px;
width: 40px;
padding-left: 10px;
}
.ctrl-action:active {
background-color: #f0f0f0;
filter: brightness(50%);
}
.is-lit {
/* Make image brighter */
filter: brightness(120%);
}
/* Blinking anim (no fading) */
@keyframes blinker {
0% { filter: brightness(120%); }
50% { filter: brightness(100%); }
100% { filter: brightness(120%); }
}
.is-alternating-1 {
animation: blinker 1s linear infinite;
}