File size: 726 Bytes
826b37e 8138a51 826b37e 8138a51 826b37e 8138a51 826b37e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
@font-face {
font-family: 'CodeFont';
src: url('/font/code.woff') format('woff');
}
body {
margin: 0;
padding: 10px;
background: #1e1e1e;
color: white;
font-family: Arial, sans-serif;
}
.editor-container {
width: 100%;
display: flex;
flex-direction: column;
gap: 10px;
}
select, button, label {
padding: 8px;
font-size: 16px;
background: #2d2d2d;
color: white;
cursor: pointer;
border: none;
border-radius: 4px;
transition: 0.3s;
}
select:hover, button:hover {
background: #444;
}
.CodeMirror {
height: 500px;
font-size: 16px;
font-family: 'CodeFont', monospace;
border-radius: 4px;
border: 1px solid #555;
}
button {
font-weight: bold;
}
label {
cursor: pointer;
} |