mirror of
https://github.com/tsl0922/ttyd.git
synced 2025-12-24 12:44:20 +01:00
53 lines
724 B
CSS
53 lines
724 B
CSS
html, body {
|
|
height: 100%;
|
|
min-height: 100%;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#terminal-container {
|
|
width: auto;
|
|
height: 100%;
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
background-color: #101010;
|
|
}
|
|
|
|
#modal strong {
|
|
color: #268bd2;
|
|
}
|
|
|
|
#modal span {
|
|
color: #2aa198;
|
|
}
|
|
|
|
#modal header {
|
|
font-weight: bold;
|
|
text-align: center;
|
|
padding-bottom: 20px;
|
|
margin-bottom: 20px;
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
}
|
|
|
|
#choose .file-name {
|
|
border-color: transparent;
|
|
}
|
|
|
|
#progress {
|
|
margin-top: 20px;
|
|
padding-top: 20px;
|
|
border-top: 1px dashed #ddd;
|
|
}
|
|
|
|
#progress progress {
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
#progress {
|
|
color: #93a1a1;
|
|
}
|
|
|
|
#progress span {
|
|
font-weight: bold;
|
|
} |