Drone Config

This commit is contained in:
2023-07-23 15:00:54 -04:00
parent a847d8c52c
commit 8a10aa8853
10 changed files with 570 additions and 27 deletions

View File

@@ -22,12 +22,18 @@
width: 100%;
padding: 2px;
border: 0px solid #ffffff00;
border-bottom: 1px solid #d2b8eb3e;
border-radius: 4px;
margin-left: 4px;
}
.sub-element:hover {
background-color: #231929;
color: #44B83D;
}
.last {
border-bottom: 0px solid #ffffff00;
}
.menu {
@@ -47,10 +53,14 @@
color: #ffffff;
background-color: #231929;
}
.footer-content {
z-index: 2;
background-color: #231929;
justify-content: end;
text-align: right;
cursor: pointer;
color: #44B83D;
font-family: 'Courier New', Courier, monospace;
}
.item {
@@ -67,6 +77,11 @@
color: #ffffff;
}
.individual {
color: #44B83D;
}
.item:hover {
background-color: #534264;
}
@@ -78,3 +93,85 @@
h1 {
text-align: center;
}
a {
text-decoration: none;
color: #ffffff;
cursor: pointer;
}
a:hover {
color: #44B83D;
}
.drone-id-input {
margin-left: 0;
padding-left: 0;
}
.drone-id-input input{
width: 50%;
text-align: center;
border: 0px solid #ffffff00;
border-bottom: 1px solid #d2b8eb3e;
border-radius: 4px;
background-color: #231929;
color: #ffffff;
font-family: 'Courier New', Courier, monospace;
font-size: 18px;
}
.modal-footer {
position: absolute;
bottom: 20px;
left: 0;
right: 0;
padding-left: 20px;
padding-right: 20px;
}
h2 {
text-align: center;
font-family: 'Courier New', Courier, monospace;
font-size: 18px;
}
.config-overlay {
background-color: #23192967;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.config-modal {
position: absolute;
top: 20px;
left: 40px;
right: 40px;
bottom: 40px;
padding: 18px;
background-color: #382C44;
color: #ffffff;
filter: drop-shadow(0 0 0.2em #6f5887);
border-radius: 20px;
}
.modal-close {
font-size: 24px;
cursor: pointer;
}
.modal-close:hover {
color: #44B83D;
}
.icon {
color: #ffffff;
cursor: pointer;
}
.icon:hover {
color: #44B83D;
}