-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (94 loc) · 1.44 KB
/
style.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
* {
transition: all 0.1s ease;
}
.numberOrBoolean {
color: #c3c321;
}
.string {
color: #75b927;
}
.error {
/* color: rgb(255, 0, 0); */
color: #c22644;
}
.space {
opacity: 0;
}
.undefined {
color: #5f5f5e;
}
.null {
font-weight: bolder;
}
.RegExp {
color: #c22644;
}
.function {
color: #55acbb;
}
#input {
--padding: 10px;
width: 100%;
display: flex;
flex-direction: row;
}
#input textarea {
background-color: rgb(50, 51, 44);
border-width: 0;
padding: var(--padding);
width: 100%;
display: inline-block;
color: inherit;
font: inherit;
line-height: inherit;
overflow: scroll;
}
#output {
background-color: rgb(46, 47, 44);
overflow: scroll;
padding: 0;
}
#output,
#input {
margin-top: 5px;
font-family: Consolas, "Courier New", Courier, monospace;
font-size: 16px;
color: whitesmoke;
height: calc(100% - 35px);
line-height: 20px;
}
#output > div {
border-bottom: 1px rgb(70, 70, 70) solid;
padding: 8px 10px;
}
body,
button {
color: whitesmoke;
font-size: 16px;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
button {
background-color: rgb(0, 95, 149);
border-width: 0;
border-radius: 2px;
float: right;
}
body {
background-color: #272822;
}
.panel {
width: 49%;
display: inline-block;
height: 100%;
}
#outPanel {
float: right;
}
@media screen and (max-width: 550px) {
.panel {
margin-top: 10px;
display: block;
width: 100%;
height: 50%;
}
}