-
Notifications
You must be signed in to change notification settings - Fork 21
/
runmycode-panel.css
173 lines (147 loc) · 3.52 KB
/
runmycode-panel.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
#runmycode-runner {
color: #565d64;
position: fixed;
top: 150px;
/* set these so Chrome doesn't return 'auto' from getComputedStyle */
z-index: 999;
box-shadow: 5px 5px 10px #888;
font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
#runmycode-runner .panel {
background-color: #fff;
border: 1px solid transparent;
border-radius: 2px;
margin-bottom: 0;
}
#runmycode-runner .panel-default {
border-color: #e5e5e5;
}
#runmycode-runner .panel-group {
margin-bottom: 0;
}
#runmycode-runner .panel-group .panel+.panel {
margin-top: 5px;
}
#runmycode-runner .panel-heading {
padding: 6px 16px;
border-bottom: 1px solid #e5e5e5;
border-top-right-radius: 1px;
border-top-left-radius: 1px;
cursor: pointer;
line-height: 27px;
background-color: #f5f5f5;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
#runmycode-runner-handle.panel-heading {
cursor: move;
}
#runmycode-runner .panel-title {
margin: 0;
font-size: 14px;
font-weight: 600;
line-height: inherit;
clear: inherit;
color: inherit;
text-transform: inherit;
text-shadow: inherit;
}
#runmycode-runner .panel-title>a {
color: inherit;
text-decoration: none;
}
#runmycode-runner .panel-title>a:hover {
text-decoration: underline;
}
#runmycode-runner .panel-body {
padding: 15px;
}
#runmycode-runner .panel-runner .panel-body {
padding: 0;
}
#runmycode-runner .close {
float: right;
font-size: 21px;
font-weight: bold;
font-family: inherit;
line-height: 1;
opacity: 0.3;
padding: 0;
margin: 0;
border: 0;
background: transparent;
}
#runmycode-runner .close:hover, #runmycode-runner .close:focus {
cursor: pointer;
opacity: 0.7;
}
#runmycode-runner .collapse {
display: none;
}
#runmycode-runner .collapse.in {
display: block;
}
#runmycode-runner .btn {
border: 1px solid #e5e5e5;
font-size: 14px;
border-radius: 3px;
padding: 10px 0;
font-weight: bold;
font-family: inherit;
cursor: pointer;
background-image: none;
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
#runmycode-runner .btn-block {
display: block;
width: 100%;
margin: 0 0 15px 0;
}
#runmycode-runner .btn-warning {
background-color: #fc9403;
color: #fff;
}
#runmycode-runner .btn-warning:active {
background-color: #c26700;
}
#runmycode:disabled {
color: white !important;
font-weight: bold !important;
background-color: rgba(252, 148, 3, 0.5) !important;
box-shadow: none !important;
pointer-events: none !important;
cursor: not-allowed !important;
}
#runmycode-run-input, #runmycode-run-output {
font-family: "Monaco", "Menlo", "Ubuntu Mono", "Consolas", "source-code-pro", monospace;
padding: 6px 10px;
min-width: 100%;
display: block;
margin: 0;
font-size: 14px;
color: inherit;
line-height: normal;
box-sizing: border-box;
border: 1px solid #e5e5e5;
}
/*#runmycode-runner textarea[readonly] {
background-color: #f9f9f9;
}*/
#runmycode-runner .error {
color: red;
}
#runmycode-run-input {
min-height: 46px;
}
#runmycode-run-output {
resize: both;
min-height: 90px;
}
.hidden {
display: none;
}