Portfolio/static/css/style.css
tombdf cdaf2c4157
feat!: convert portfolio to Haskell web application
* Migrate from static HTML/JS to Haskell/Scotty web application
* Add server-side routing and API endpoints
* Implement language switching and command processing
* Set up project structure with stack
* Move static assets to dedicated directory
* Add type definitions and template rendering
2025-02-25 22:02:55 +01:00

48 lines
779 B
CSS

body, html {
margin: 0;
padding: 0;
height: 100%;
font-family: 'Courier New', Courier, monospace;
background-color: #000;
color: #0f0;
}
#terminal {
height: 100%;
padding: 20px;
overflow-y: auto;
box-sizing: border-box;
}
#input-line {
display: flex;
align-items: center;
}
#prompt {
color: #0f0;
margin-right: 10px;
}
#user-input {
background-color: transparent;
border: none;
color: #0f0;
font-family: inherit;
font-size: inherit;
flex-grow: 1;
}
#user-input:focus {
outline: none;
}
.output {
margin-bottom: 10px;
white-space: pre-wrap;
}
#welcome-text {
white-space: pre-wrap;
}
.output a {
color: #0ff;
text-decoration: underline;
}
.output a:hover {
color: #ff0;
}