Compare commits

..

No commits in common. "634860c1c45c2cf3a72e8178c15f563c99ad218f" and "fa6f5b369e52c8003cf72b77005ac8af1e351aed" have entirely different histories.

3 changed files with 0 additions and 63 deletions

View File

@ -1,3 +0,0 @@
{
"printWidth": 200
}

View File

@ -1,3 +0,0 @@
{
"editor.renderWhitespace": "all"
}

View File

@ -1,57 +0,0 @@
body {
background-color: #1e1e1e;
color: #e0e0e0;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
height: 100vh;
}
.button-container {
padding: 10px;
background-color: #2d2d2d;
}
.run-button {
background-color: #4caf50;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 4px;
transition: transform 0.1s ease-in-out, box-shadow 0.3s ease-in-out;
}
.run-button:hover {
box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}
.run-button:active {
transform: scale(0.95);
}
.editor-container {
display: flex;
width: 100%;
flex-grow: 1;
}
.editor-wrapper {
flex: 1;
padding: 10px;
}
.CodeMirror {
height: 100%;
background-color: #2d2d2d;
color: #e0e0e0;
}
.CodeMirror-gutters {
background-color: #1e1e1e;
border-right: 1px solid #4a4a4a;
}
.CodeMirror-linenumber {
color: #888;
}