-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
98 lines (82 loc) · 1.47 KB
/
index.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
86
87
88
89
90
91
92
93
94
95
96
97
98
@font-face {
font-family: 'Pretendard-Regular';
src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/[email protected]/Pretendard-Regular.woff') format('woff');
font-weight: 400;
font-style: normal;
}
body {
font-family: Pretendard-Regular;
font-size: 13pt;
background-color: #21252b;
}
#run {
background-color: #333344;
color: #4eb797;
width: 81vw;
height: 25px;
text-align: center;
outline: 2px dotted #4eb797;
margin: 3px;
font-family: Pretendard-Regular;
}
#in {
width: 60vw;
height: 90vh;
background-color: #00000000;
color: #00000000;
caret-color: #FFF;
font-family: Pretendard-Regular;
padding: 10px;
}
#out {
width: 20vw;
height: 90vh;
background-color: #1b1d23;
color: azure;
font-family: Pretendard-Regular;
}
mark.err {
background-color: #c8053f55;
color: #CCCCCC;
}
mark.do {
background-color: #00000000;
color: #d38ba1;
}
mark.unexpectedspace{
background-color: #00000000;
color: #d38ba1;
}
mark.err mark.unexpectedspace{
background-color: #ff000088;
}
mark.base {
background-color: #00000000;
color: #CCCCCC;
}
mark.numvar {
background-color: #00000000;
color: #9676bf;
}
mark.numvarname {
background-color: #00000000;
color: #4eb797;
}
mark.string {
background-color: #00000000;
color: #6c88ce;
}
mark.ifwhile {
background-color: #00000000;
color: #cbc159;
}
.hwt-container {
background-color: #282c34;
}
.hwt-content {
font-size: 13pt;
padding: 10px;
}
textarea {
resize: none;
}