This repository has been archived on 2025-08-04. You can view files and clone it, but cannot push or open issues or pull requests.
rhaj/_archive/talk/static/style.css
2025-06-03 21:47:36 +03:00

50 lines
828 B
CSS

.card {
height: calc(100vh - 150px);
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card-header {
background-color: #f1f3f5;
border-bottom: 1px solid #dee2e6;
}
.card-body {
overflow: hidden;
height: calc(100% - 110px);
}
.card-footer {
background-color: #f8f9fa;
border-top: 1px solid #dee2e6;
padding: 10px 15px;
}
.CodeMirror {
height: 100%;
font-size: 14px;
font-family: 'Courier New', monospace;
}
#outputArea {
height: 100%;
overflow: auto;
margin: 0;
font-family: 'Courier New', monospace;
font-size: 14px;
white-space: pre-wrap;
background-color: #f8f9fa;
color: #212529;
}
#modelSelect {
width: auto;
}
@media (max-width: 767.98px) {
.card {
height: 400px;
margin-bottom: 20px;
}
}