-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
executable file
·85 lines (73 loc) · 1.32 KB
/
styles.css
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #1e1e1e;
color: #dcdcdc;
}
.ide-container {
display: flex;
height: 100vh;
}
.sidebar {
width: 250px;
background-color: #252526;
padding: 10px;
display: flex;
flex-direction: column;
}
.logo {
color: #61dafb;
text-align: center;
margin-bottom: 20px;
}
.file-explorer {
list-style-type: none;
padding: 0;
margin: 0;
font-size: 14px;
}
.file-explorer li {
padding: 10px;
cursor: pointer;
border-radius: 5px;
}
.file-explorer li:hover {
background-color: #373737;
}
.editor {
flex-grow: 1;
display: flex;
flex-direction: column;
background-color: #1e1e1e;
color: #dcdcdc;
}
.editor-header {
display: flex;
background-color: #333333;
padding: 10px;
border-bottom: 1px solid #444444;
}
.editor-header span {
margin-right: 20px;
cursor: pointer;
padding: 5px 10px;
border-radius: 3px;
}
.editor-header span:hover {
background-color: #444444;
}
.code-area {
flex-grow: 1;
background-color: #1e1e1e;
color: #dcdcdc;
border: none;
padding: 20px;
font-family: "Courier New", Courier, monospace;
font-size: 14px;
line-height: 1.5;
resize: none;
outline: none;
}
.code-area:focus {
outline: none;
}