Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
berlintay authored Aug 10, 2024
1 parent 77dab81 commit c59a597
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,21 +57,29 @@ body, html {
}

#terminal {
padding: 20px;
height: 60vh;
flex-grow: 1; /* This will allow the terminal to expand and fill available space */
width: 80%;
padding: 10px;
background-color: black;
color: #00FF00;
overflow-y: auto;
white-space: pre-wrap;
border: 1px solid #00FF00;
border-radius: 5px;
margin-bottom: 10px; /* Add some margin to separate it from the prompt */
}

.prompt {
display: flex;
align-items: center;
width: 80%; /* Ensure the prompt spans the same width as the terminal */
margin-bottom: 10px;
}

.prompt span {
color: var(--accent-color);
color: #7e9cd8;
}


#command-input {
background-color: transparent;
border: none;
Expand Down

0 comments on commit c59a597

Please sign in to comment.