startpage/src/css/style.css

51 lines
831 B
CSS

@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
body {
margin: 0;
padding: 0;
font-family: 'Source Code Pro', monospace;
color: #e3e3e3;
}
#main {
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-size: cover;
}
#terminal {
width: 40%;
height: 60%;
overflow-y: scroll;
cursor: text;
padding: 1em;
border: #237e99 3px solid;
border-radius: 1em;
background-color: #252625d1;
backdrop-filter: blur(8px);
}
.line {
min-height: 1.5em;
}
.red {
color: #c22f2f;
}
#command-line input {
width: 70%;
background: none;
color: inherit;
font-family: inherit;
font-size: 1em;
border: none;
}
#command-line input:focus {
outline: none;
}