prelim TLR

This commit is contained in:
2025-02-02 06:08:52 +01:00
parent 80e657e55e
commit e651682e41
23 changed files with 2769 additions and 73 deletions
+71
View File
@@ -0,0 +1,71 @@
@font-face {
font-family: 'Consolas';
src: url('./Consolas.ttf') format('truetype');
font-weight: 100;
font-style: normal;
}
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
background: lightgray;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: gray;
height: 200px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: darkgray;
}
#root {
--buttonHoverColor: lightgray;
--fss-select-hover: lightgray;
/* No idea why, zero. I looked at the EFB.css and it has 100%, but doing so screws this over hard */
width: 594px;
height: 100%;
background-image: url(../EFB/Images/bg.png);
background-size: 100% 100%;
color: #000;
font-size: 25px;
padding: 3vw;
#KH_CTRL {
height: 80px;
background: red;
display: flex;
justify-content: space-around;
}
#KH_FE_FPLAN {
#TLR div {
line-height: unset !important;
font-size: unset !important;
}
#TLR pre {
white-space: pre;
line-height: 14px;
font-size: 13px;
font-family: 'Consolas' !important;
}
#TLR img {
width: calc(100vw - 6vw);
}
height: calc(100vh - 6vw - 170px);
width: 100%;
margin-top: 90px;
margin-bottom: 3vw;
overflow-y: scroll;
overflow-x: hidden;
}
}