mirror of
https://github.com/syssecfsu/witty.git
synced 2024-11-01 17:49:26 +01:00
32 lines
591 B
CSS
32 lines
591 B
CSS
#terminal {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin: 20px 0 50px;
|
|
}
|
|
|
|
#terminal #terminal_view {
|
|
padding: 10px 20px;
|
|
border-radius: 6px;
|
|
background-color: #282a36;
|
|
max-width: 860px;
|
|
}
|
|
|
|
.xterm-viewport.xterm-viewport {
|
|
scrollbar-width: thin;
|
|
}
|
|
.xterm-viewport::-webkit-scrollbar {
|
|
width: 10px;
|
|
}
|
|
.xterm-viewport::-webkit-scrollbar-track {
|
|
opacity: 0;
|
|
}
|
|
.xterm-viewport::-webkit-scrollbar-thumb {
|
|
min-height: 20px;
|
|
background-color: #ffffff20;
|
|
}
|
|
|
|
h2 {
|
|
font-family: 'Fira Sans', sans-serif;
|
|
font-size: 32;
|
|
text-align: center;
|
|
} |