inital commit
BIN
res/images/base_1.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
res/images/base_2.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
res/images/buttons/Alternate1.png
Normal file
|
After Width: | Height: | Size: 919 B |
BIN
res/images/buttons/Alternate2.png
Normal file
|
After Width: | Height: | Size: 915 B |
BIN
res/images/buttons/Off.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
res/images/buttons/On.png
Normal file
|
After Width: | Height: | Size: 887 B |
BIN
res/images/licht_blau.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
res/images/licht_gelb.jpg
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
res/images/licht_gruen.jpg
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
res/images/licht_rot.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
res/images/licht_summer.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
res/images/licht_weiss.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
res/images/module_blue.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
res/images/module_green.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
res/images/module_red.jpg
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
res/images/module_sounder.jpg
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
BIN
res/images/module_white.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
res/images/module_yellow.jpg
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
res/images/no.png
Normal file
|
After Width: | Height: | Size: 973 B |
BIN
res/images/top.jpg
Normal file
|
After Width: | Height: | Size: 19 KiB |
72
res/style.css
Normal 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;
|
||||
}
|
||||
|
||||