-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (40 loc) · 733 Bytes
/
style.css
File metadata and controls
44 lines (40 loc) · 733 Bytes
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
body {
margin: 0;
display: flex;
height: 100vh;
font-family: Arial, sans-serif;
overflow-x: hidden;
}
#editor {
flex: 1;
background: #000;
color: #0f0;
padding: 10px;
}
textarea {
width: 100%;
height: 90%;
background: #000;
color: #0f0;
border: none;
padding: 10px;
resize: none;
font-family: monospace;
}
button {
width: 200px;
padding: 10px;
margin-top: 10px;
background-color: #04AA6D;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
}
.run-icon {
margin-right: 5px;
}