witty/assets/main.css

54 lines
880 B
CSS
Raw Normal View History

2022-01-04 21:41:41 +01:00
#terminal {
display: flex;
justify-content: center;
2022-01-12 13:33:06 +01:00
margin: 10px 0 20px;
2022-01-04 21:41:41 +01:00
}
#terminal #terminal_view {
padding: 10px 20px;
border-radius: 6px;
background-color: #282a36;
}
.xterm-viewport.xterm-viewport {
scrollbar-width: thin;
}
2022-01-05 03:21:21 +01:00
2022-01-04 21:41:41 +01:00
.xterm-viewport::-webkit-scrollbar {
width: 10px;
}
2022-01-05 03:21:21 +01:00
2022-01-04 21:41:41 +01:00
.xterm-viewport::-webkit-scrollbar-track {
opacity: 0;
2022-01-05 03:21:21 +01:00
}
2022-01-04 21:41:41 +01:00
.xterm-viewport::-webkit-scrollbar-thumb {
min-height: 20px;
background-color: #ffffff20;
}
2022-01-11 21:22:24 +01:00
.banner {
position: absolute;
top: 0;
left: 0;
background-color: #0b0b33;
width: 100%;
}
.banner-content {
font-family: sans-serif;
font-size: 22px;
padding: 0.5rem;
color: #ffffffff;
2022-01-04 21:41:41 +01:00
text-align: center;
2022-01-11 21:22:24 +01:00
}
.navbar-xs .navbar-brand {
padding: 0px 12px;
font-size: 22px;
}
.navbar-xs .navbar-nav>li>a {
padding-top: 0px;
padding-bottom: 0px;
2022-01-04 21:41:41 +01:00
}