24 lines
308 B
CSS
24 lines
308 B
CSS
|
|
.editor {
|
||
|
|
background: #0f0f1a;
|
||
|
|
color: #e0e0e0;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
flex: 1;
|
||
|
|
min-width: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.editor__placeholder {
|
||
|
|
text-align: center;
|
||
|
|
color: #555;
|
||
|
|
}
|
||
|
|
|
||
|
|
.editor__placeholder p {
|
||
|
|
margin: 8px 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.editor__hint {
|
||
|
|
font-size: 12px;
|
||
|
|
color: #444;
|
||
|
|
}
|