Slight style changes

This commit is contained in:
momo5502
2025-04-29 09:19:14 +02:00
parent 312c8aeeaf
commit fd6d4f0420
8 changed files with 429 additions and 51 deletions

View File

@@ -4,8 +4,8 @@ html {
@media (pointer: fine) {
::-webkit-scrollbar {
width: 14px;
height: 14px;
width: 20px;
height: 20px;
}
::-webkit-scrollbar-track {
@@ -15,7 +15,7 @@ html {
::-webkit-scrollbar-thumb {
background-color: rgba(97, 97, 97, 0.7);
border-radius: 20px;
border: 4px solid transparent;
border: 6px solid transparent;
background-clip: content-box;
transition: all 0.1s linear;
min-height: 50px;
@@ -34,14 +34,47 @@ button {
cursor: pointer;
}
.resizable-cell,
button.fancy-primary,
button.fancy-secondary {
transition: all 0.2s ease;
}
button.fancy-primary {
background: linear-gradient(
180deg,
rgba(38, 144, 255, 1) 0%,
rgba(0, 123, 255, 1) 100%
);
border: 1px solid rgb(18, 101, 236);
text-shadow: rgba(0, 0, 0, 0.2) 0px 1px;
}
button.fancy-primary:hover {
background: linear-gradient(
180deg,
rgba(46, 151, 255, 1) 0%,
rgba(8, 130, 255, 1) 100%
);
border: 1px solid rgb(33, 33, 34);
}
button.fancy-secondary {
background: linear-gradient(180deg, rgb(38, 38, 39) 0%, rgb(34, 34, 35) 100%);
border: 1px solid rgb(42, 42, 44);
}
button.fancy-secondary:hover {
background: linear-gradient(180deg, rgb(42, 42, 43) 0%, rgb(38, 38, 39) 100%);
border: 1px solid rgb(33, 33, 34);
}
.terminal-output span {
padding: 4px;
padding: 0px 16px;
}
.terminal-output {
font-weight: 600;
font-size: 1.0em;
font-size: 1.05em;
font-family: monospace;
height: 100%;
}