mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-20 12:13:57 +00:00
71 lines
972 B
CSS
71 lines
972 B
CSS
@media (pointer: fine) {
|
|
::-webkit-scrollbar {
|
|
width: 20px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background-color: transparent;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: rgba(97, 97, 97, 0.7);
|
|
border-radius: 20px;
|
|
min-height: 50px;
|
|
border: 6px solid transparent;
|
|
background-clip: content-box;
|
|
transition: all 0.1s linear;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background-color: rgba(97, 97, 97, 0.9);
|
|
}
|
|
}
|
|
|
|
button {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.terminal-output {
|
|
line-height: 1.5;
|
|
font-weight: 600;
|
|
font-size: 1.05em;
|
|
font-family: monospace;
|
|
height: 100%;
|
|
}
|
|
|
|
.terminal-black {
|
|
color: #0c0c0c;
|
|
}
|
|
|
|
.terminal-red {
|
|
color: #ff3131;
|
|
}
|
|
|
|
.terminal-green {
|
|
color: #86c000;
|
|
}
|
|
|
|
.terminal-yellow {
|
|
color: #ffb940;
|
|
}
|
|
|
|
.terminal-blue {
|
|
color: #3a96dd;
|
|
}
|
|
|
|
.terminal-cyan {
|
|
color: #00adf7;
|
|
}
|
|
|
|
.terminal-pink {
|
|
color: #9750dd;
|
|
}
|
|
|
|
.terminal-white {
|
|
color: #ececec;
|
|
}
|
|
|
|
.terminal-dark-gray {
|
|
color: rgb(81, 81, 81);
|
|
}
|