45 lines
No EOL
703 B
CSS
45 lines
No EOL
703 B
CSS
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
color: white;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
}
|
|
|
|
.editor {
|
|
display: flex;
|
|
color: white;
|
|
width: 100%;
|
|
height: 100%;
|
|
flex: 1;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.editor .line-numbers {
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
user-select: none;
|
|
}
|
|
|
|
.code-editor {
|
|
flex: 1;
|
|
padding: 3px;
|
|
overflow-x: auto;
|
|
resize: none;
|
|
outline: none;
|
|
background-color: transparent;
|
|
border: none;
|
|
color: #fff;
|
|
font-size: larger;
|
|
}
|
|
|
|
.toast {
|
|
padding: 0.5em;
|
|
padding-left: 0.75em;
|
|
padding-right: 0.75em;
|
|
background-color: rgb(0, 94, 255);
|
|
font-size:x-large;
|
|
border-radius: 15px;
|
|
} |