-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathstyle.css
71 lines (71 loc) · 1.23 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
* {
font-family: 'Nunito', sans-serif;
}
body {
background-color: #111111;
color: #dddddd;
}
.je-modal {
border-radius: 4px !important;
box-shadow: none !important;
border: 1px solid #eeeeee !important;
background-color: #111111 !important;
color: #dddddd !important;
}
button, select, input, .je-indented-panel, textarea {
border-radius: 4px;
}
button, select {
background-color: #343434;
color: #eeeeee;
border: 1px solid #eeeeee;
}
input, textarea {
background-color: #222222;
color: #dddddd;
border: 1px solid #dddddd;
}
textarea {
resize: none;
}
.je-indented-panel {
border: 1px solid #eeeeee;
}
input[type=checkbox] {
background-color: #343434;
color: #eeeeee;
border: 1px solid #eeeeee;
border-radius: 4px;
-webkit-appearance: initial;
-moz-appearance: initial;
appearance: initial;
width: 1.5em;
height: 1.5em;
margin: 0;
}
input[type=checkbox]:checked {
background-color: #eeeeee;
}
input[type=checkbox]:before {
content: 'x<';
margin-left: 0em;
text-align: center;
color: #dddddd;
}
input[type=checkbox]:checked:before {
content: ':>';
margin-left: 0.3em;
color: #343434;
}
input[disabled] {
opacity: 0.6;
}
#output {
width: 64em;
height: 24em;
max-width: 75vw;
max-height: 50vh;
}
a {
color: #dddddd;
}