73 lines
1.3 KiB
CSS
73 lines
1.3 KiB
CSS
/* Podstawowe style dla edytora */
|
|
.code-editor-container {
|
|
border: 1px solid #dee2e6;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.code-editor-toolbar {
|
|
background: #f8f9fa;
|
|
padding: 10px;
|
|
border-bottom: 1px solid #dee2e6;
|
|
}
|
|
|
|
.code-editor-textarea {
|
|
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
border: none;
|
|
padding: 15px;
|
|
width: 100%;
|
|
min-height: 400px;
|
|
resize: vertical;
|
|
}
|
|
|
|
.code-editor-textarea:focus {
|
|
outline: none;
|
|
}
|
|
|
|
.file-explorer {
|
|
background: #f8f9fa;
|
|
min-height: 500px;
|
|
border-right: 1px solid #dee2e6;
|
|
}
|
|
|
|
.file-item {
|
|
padding: 8px 12px;
|
|
border-bottom: 1px solid #eee;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.file-item:hover {
|
|
background: #e9ecef;
|
|
}
|
|
|
|
.file-item.active {
|
|
background: #007bff;
|
|
color: white;
|
|
}
|
|
|
|
.console-output {
|
|
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
|
|
font-size: 12px;
|
|
background: #1e1e1e;
|
|
color: #d4d4d4;
|
|
padding: 10px;
|
|
border-radius: 3px;
|
|
min-height: 200px;
|
|
max-height: 300px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.console-input {
|
|
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
|
|
background: #252526;
|
|
color: #d4d4d4;
|
|
border: 1px solid #3e3e42;
|
|
}
|
|
|
|
.console-input:focus {
|
|
background: #252526;
|
|
color: #d4d4d4;
|
|
border-color: #007bff;
|
|
} |