File styles.css of Package mddb
body {
font-family: 'Courier New', monospace;
background-color: #000;
color: #00FF00;
height: 100vh;
font-size: 1.2rem;
margin: 0;
padding: 50px;
}
#terminal {
text-align: left;
width: 80%; /* Ograniczenie szeroko?ci dla lepszego wygl?du */
margin: 0 auto; /* Wy?rodkowanie terminala */
}
#output {
border: 2px solid #00FF00;
padding: 20px;
text-align: center; /* Wy?rodkowanie tre?ci wewn?trz #output */
display: block;
margin-bottom: 20px;
}
pre {
display: inline-block;
text-align: center; /* Wy?rodkowanie grafiki ASCII */
width: 100%; /* Ustawi szeroko?? grafiki na pe?n? szeroko?? ramki */
}
#input-line {
display: flex;
}
#input {
background-color: #000;
color: #00FF00;
border: none;
outline: none;
width: 100%;
}
.prefix {
margin-right: 10px;
}
#alert {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
z-index: 10;
display: flex;
justify-content: center;
align-items: center;
visibility: hidden;
}
.alert-content {
background-color: #222;
padding: 20px;
border: 2px solid red;
text-align: center;
color: #cf0a03;
}
.alert-content p {
color: red;
font-weight: bold;
margin-bottom: 20px;
}
.alert-content label {
display: block;
margin-bottom: 10px;
}