AllenWrench/src/styles.css

178 lines
2.9 KiB
CSS

:root {
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 24px;
font-weight: 400;
overflow: hidden;
/* color: #ffffff; */
background-color: #231929;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
}
.container {
background-color: #231929;
}
.sub-element {
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 {
z-index: 1;
background-color: #382C44;
color: #ffffff;
/* filter: drop-shadow(-20px 0 1em #382C44); */
box-shadow: -24px 0 1em 6px #382C44;
overflow-x: hidden;
overflow-y: auto;
height: 92vh;
padding: 8px;
}
.footer {
display: flex;
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 {
display: flex;
justify-content: left;
padding-left: 2px;
background: none;
border: 0px solid #ffffff00;
border-radius: 4px;
padding: 2px;
padding-top: 0;
padding-bottom: 0;
font-size: 18px;
color: #ffffff;
}
.individual {
color: #44B83D;
}
.item:hover {
background-color: #534264;
}
.item:active {
background-color: #59486c;
}
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;
}