Compare commits

...

3 Commits

Author SHA1 Message Date
634860c1c4 Create style.css 2024-07-01 22:48:49 -04:00
677e5604fa Create settings.json 2024-07-01 22:48:33 -04:00
5128a504f4 Create .prettierrc 2024-07-01 22:48:31 -04:00
3 changed files with 63 additions and 0 deletions

3
.prettierrc Normal file
View File

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

3
.vscode/settings.json vendored Normal file
View File

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

57
site/style.css Normal file
View File

@ -0,0 +1,57 @@
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;
}