Clean up obsolete files

- Remove old web.py, wifi.py, patterns.py
- Remove old static files from root
- Remove unused component files
This commit is contained in:
2026-01-11 21:34:17 +13:00
parent cccda24448
commit 5f6e45af09
13 changed files with 114 additions and 1078 deletions

View File

@@ -1,20 +1,37 @@
/* Default styles for the light component */
light-component {
display: block;
width: 100px;
height: 100px;
background-color: #4caf50;
color: white;
text-align: center;
line-height: 100px;
cursor: grab;
position: absolute;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
/* General tab styles */
.tabs {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
/* Styles when the component is being dragged */
light-component:active {
cursor: grabbing;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
.tab {
padding: 10px 20px;
margin: 0 10px;
cursor: pointer;
background-color: #f1f1f1;
border: 1px solid #ccc;
border-radius: 4px;
transition: background-color 0.3s ease;
}
.tab:hover {
background-color: #ddd;
}
.tab.active {
background-color: #ccc;
}
.tab-content {
display: flex;
justify-content: center;
}
.tab-pane {
display: none;
}
.tab-pane.active {
display: block;
}