2017-04-29 11:31:11 -04:00
|
|
|
.dbg_info {
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
.gutter-offset {
|
|
|
|
width: 3em;
|
|
|
|
}
|
|
|
|
.gutter-bytes {
|
|
|
|
width: 6em;
|
|
|
|
}
|
|
|
|
.gutter-clock {
|
|
|
|
width: 0.5em;
|
|
|
|
}
|
|
|
|
.gutter-info {
|
|
|
|
width: 1em;
|
|
|
|
}
|
|
|
|
.tooltipbox {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
border-bottom: 1px dotted black;
|
|
|
|
}
|
|
|
|
.tooltipbox .tooltiptext {
|
|
|
|
visibility: hidden;
|
2017-11-17 16:01:07 -05:00
|
|
|
width: 500px;
|
|
|
|
background-color: #660000;
|
2017-04-29 11:31:11 -04:00
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 6px;
|
|
|
|
padding: 5px 0;
|
|
|
|
/* Position the tooltip */
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
2017-11-17 16:01:07 -05:00
|
|
|
/* <pre> tag wrap */
|
|
|
|
white-space: pre-wrap; /* css-3 */
|
|
|
|
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
2017-04-29 11:31:11 -04:00
|
|
|
}
|
|
|
|
.tooltipbox:hover .tooltiptext {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
2018-07-02 20:40:15 -06:00
|
|
|
.tooltiperror {
|
2018-07-26 09:43:49 -04:00
|
|
|
color: #ff6666;
|
|
|
|
font-weight: bold;
|
2018-07-02 20:40:15 -06:00
|
|
|
}
|
2018-07-20 16:25:52 -05:00
|
|
|
.tooltiperrorline {
|
|
|
|
color:#ffcccc;
|
|
|
|
background-color:#660000;
|
|
|
|
}
|
2018-08-27 09:28:31 -04:00
|
|
|
.tooltipinfoline {
|
|
|
|
color:#ccccff;
|
|
|
|
background-color:#000066;
|
|
|
|
}
|
2017-04-29 11:31:11 -04:00
|
|
|
#controls_top {
|
2019-05-22 09:32:29 -04:00
|
|
|
position:absolute;
|
|
|
|
padding:0.5em;
|
2017-04-29 11:31:11 -04:00
|
|
|
height:3em;
|
|
|
|
width:100%;
|
|
|
|
background-color:#999;
|
|
|
|
}
|
|
|
|
#notebook {
|
|
|
|
position:absolute;
|
|
|
|
top:3em;
|
|
|
|
bottom:0;
|
|
|
|
left:0;
|
|
|
|
right:0;
|
2018-11-25 07:18:32 -05:00
|
|
|
background-color:#666;
|
|
|
|
overflow:hidden;
|
|
|
|
display:flex;
|
|
|
|
flex-direction:row;
|
2017-04-29 11:31:11 -04:00
|
|
|
}
|
2017-05-04 11:54:56 -04:00
|
|
|
#workspace {
|
|
|
|
background-color:#333;
|
2018-11-24 11:33:28 -05:00
|
|
|
overflow:hidden;
|
2017-04-29 11:31:11 -04:00
|
|
|
}
|
|
|
|
div.editor {
|
|
|
|
line-height:1.25;
|
|
|
|
font-size:12pt;
|
|
|
|
}
|
2018-07-02 07:34:20 -06:00
|
|
|
div.memdump {
|
|
|
|
background-color: #333;
|
|
|
|
color: #66ff66;
|
|
|
|
white-space: pre;
|
|
|
|
margin-top: 20px auto 0;
|
|
|
|
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
|
|
|
font-size: 10pt;
|
|
|
|
}
|
2017-04-29 11:31:11 -04:00
|
|
|
div.mem_info {
|
|
|
|
position: fixed;
|
2018-11-24 11:33:28 -05:00
|
|
|
right: 10px;
|
2017-04-29 11:31:11 -04:00
|
|
|
bottom: 10px;
|
|
|
|
background-color: #333;
|
|
|
|
color: #66ff66;
|
|
|
|
white-space: pre;
|
|
|
|
padding: 20px;
|
|
|
|
z-index: 12;
|
|
|
|
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
|
|
|
font-size: 12pt;
|
2018-12-06 09:41:45 -05:00
|
|
|
box-shadow: 0px 0px 8px rgba(0,0,0,.5);
|
2017-04-29 11:31:11 -04:00
|
|
|
}
|
2018-07-29 16:26:05 -04:00
|
|
|
div.mem_info a {
|
|
|
|
color: #99ff99;
|
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
div.mem_info a:hover {
|
|
|
|
background-color: #333399;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
div.mem_info a.selected {
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
2018-11-24 16:08:33 -05:00
|
|
|
.mem_info_links {
|
|
|
|
text-align:right;
|
|
|
|
}
|
2017-04-29 11:31:11 -04:00
|
|
|
.btn_group {
|
2019-05-22 09:32:29 -04:00
|
|
|
border-radius:8px;
|
2018-10-03 14:17:02 -04:00
|
|
|
padding:8px;
|
2017-04-29 11:31:11 -04:00
|
|
|
margin-left:8px;
|
|
|
|
background-color: #666;
|
|
|
|
}
|
2018-10-03 10:58:59 -04:00
|
|
|
.btn_group button {
|
2018-10-03 14:17:02 -04:00
|
|
|
padding-left:4px;
|
|
|
|
padding-right:4px;
|
|
|
|
padding-top:2px;
|
|
|
|
padding-bottom:2px;
|
2019-04-03 10:00:37 -04:00
|
|
|
margin:1px;
|
2019-04-03 17:00:05 -04:00
|
|
|
vertical-align:baseline;
|
2018-10-03 10:58:59 -04:00
|
|
|
}
|
2018-03-23 15:05:08 -06:00
|
|
|
.btn_label {
|
|
|
|
color: #ccc;
|
|
|
|
}
|
2017-04-29 11:31:11 -04:00
|
|
|
.btn_group.debug_group {
|
|
|
|
}
|
|
|
|
.btn_group.view_group {
|
|
|
|
}
|
2017-11-14 19:12:52 -05:00
|
|
|
.btn_active {
|
2019-04-02 08:33:13 -04:00
|
|
|
color: #33cc33 !important;
|
2017-11-16 12:08:06 -05:00
|
|
|
}
|
|
|
|
.btn_stopped {
|
2019-04-02 08:33:13 -04:00
|
|
|
color: #ff9933 !important;
|
2017-11-14 19:12:52 -05:00
|
|
|
}
|
2018-08-21 23:39:34 -04:00
|
|
|
.btn_recording {
|
2019-04-03 22:23:58 -04:00
|
|
|
color: #ff6666 !important;
|
2018-08-21 23:39:34 -04:00
|
|
|
}
|
2019-04-03 10:00:37 -04:00
|
|
|
.btn_toolbar {
|
|
|
|
margin:4px;
|
|
|
|
}
|
2017-04-29 11:31:11 -04:00
|
|
|
span.hilite {
|
|
|
|
color: #ff66ff;
|
|
|
|
}
|
|
|
|
div.has-errors {
|
|
|
|
background-color: #ff6666 !important;
|
|
|
|
}
|
|
|
|
div.is-busy-unused {
|
|
|
|
background-color: #8888bb !important;
|
|
|
|
}
|
|
|
|
div.menu_div {
|
|
|
|
position: absolute;
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
div.booklink {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: 6px;
|
|
|
|
background-color: #ffffff;
|
|
|
|
display:none;
|
|
|
|
}
|
|
|
|
div.twitbtn {
|
|
|
|
position: fixed;
|
2018-07-02 07:34:20 -06:00
|
|
|
bottom: 0%;
|
|
|
|
right: 0%;
|
|
|
|
padding: 10px;
|
2017-04-29 11:31:11 -04:00
|
|
|
}
|
2018-07-29 16:26:05 -04:00
|
|
|
a.twitbtn {
|
2017-04-29 11:31:11 -04:00
|
|
|
color:#333399;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
a.dropdown-toggle {
|
|
|
|
color:#66ee66;
|
|
|
|
padding:3px;
|
|
|
|
}
|
2018-10-02 09:44:34 -04:00
|
|
|
/* http://stackoverflow.com/questions/18023493/bootstrap-3-dropdown-sub-menu-missing */
|
2017-04-29 11:31:11 -04:00
|
|
|
.dropdown-submenu {
|
|
|
|
position:relative;
|
|
|
|
}
|
|
|
|
.dropdown-submenu>.dropdown-menu {
|
|
|
|
top:0;
|
|
|
|
left:100%;
|
|
|
|
margin-top:-6px;
|
|
|
|
margin-left:-1px;
|
|
|
|
-webkit-border-radius:0 6px 6px 6px;
|
|
|
|
-moz-border-radius:0 6px 6px 6px;
|
|
|
|
border-radius:0 6px 6px 6px;
|
|
|
|
}
|
|
|
|
.dropdown-submenu:hover>.dropdown-menu {
|
|
|
|
display:block;
|
|
|
|
}
|
|
|
|
.dropdown-submenu>a:after {
|
|
|
|
display:block;
|
|
|
|
content:" ";
|
|
|
|
float:right;
|
|
|
|
width:0;
|
|
|
|
height:0;
|
|
|
|
border-color:transparent;
|
|
|
|
border-style:solid;
|
|
|
|
border-width:5px 0 5px 5px;
|
|
|
|
border-left-color:#cccccc;
|
|
|
|
margin-top:5px;
|
|
|
|
margin-right:-10px;
|
|
|
|
}
|
|
|
|
.dropdown-submenu:hover>a:after {
|
|
|
|
border-left-color:#ffffff;
|
|
|
|
}
|
|
|
|
.dropdown-submenu.pull-left {
|
|
|
|
float:none;
|
|
|
|
}
|
|
|
|
.dropdown-submenu.pull-left>.dropdown-menu {
|
|
|
|
left:-100%;
|
|
|
|
margin-left:10px;
|
|
|
|
-webkit-border-radius:6px 0 6px 6px;
|
|
|
|
-moz-border-radius:6px 0 6px 6px;
|
|
|
|
border-radius:6px 0 6px 6px;
|
|
|
|
}
|
2018-03-24 16:13:27 -06:00
|
|
|
div.emulator {
|
|
|
|
background-color: #666;
|
|
|
|
margin-top: 20px auto 0;
|
2019-05-18 11:19:12 -04:00
|
|
|
display:flex;
|
|
|
|
flex-direction:column;
|
2018-09-11 22:28:30 -04:00
|
|
|
}
|
|
|
|
div.emuoverlay {
|
2018-11-26 06:12:45 -05:00
|
|
|
display:flex;
|
|
|
|
flex-direction:column;
|
2018-03-24 16:13:27 -06:00
|
|
|
height:100%;
|
|
|
|
}
|
2018-09-11 22:28:30 -04:00
|
|
|
div.emuscope {
|
2018-11-26 07:24:49 -05:00
|
|
|
background-color:#333;
|
|
|
|
z-index:1;
|
2018-09-11 22:28:30 -04:00
|
|
|
}
|
|
|
|
div.emuspacer {
|
2018-11-23 13:29:11 -05:00
|
|
|
width:100%;
|
2018-09-11 22:28:30 -04:00
|
|
|
}
|
2018-08-23 23:58:35 -04:00
|
|
|
/* has to be here b/c renders differently after first load if in inline style */
|
2017-04-29 11:31:11 -04:00
|
|
|
.emuvideo {
|
|
|
|
border-radius:20px;
|
|
|
|
border: 4px solid #222;
|
2018-11-27 17:37:45 -05:00
|
|
|
outline-color: #ccc;
|
2018-11-24 13:44:07 -05:00
|
|
|
padding: 20px;
|
2017-04-29 11:31:11 -04:00
|
|
|
background: #000;
|
2018-08-23 23:58:35 -04:00
|
|
|
margin-top:40px;
|
2018-11-24 13:44:07 -05:00
|
|
|
margin-left:5%;
|
|
|
|
margin-right:5%;
|
|
|
|
width:90%;
|
2018-09-26 14:26:21 -04:00
|
|
|
pointer-events:auto;
|
2017-04-29 11:31:11 -04:00
|
|
|
}
|
2019-05-18 11:19:12 -04:00
|
|
|
.emuvideo:focus {
|
|
|
|
outline:none;
|
|
|
|
border-color:#888;
|
|
|
|
}
|
2017-04-29 11:31:11 -04:00
|
|
|
canvas.pixelated {
|
|
|
|
image-rendering: optimizeSpeed; /* Older versions of FF */
|
|
|
|
image-rendering: -moz-crisp-edges; /* FF 6.0+ */
|
|
|
|
image-rendering: -webkit-optimize-contrast; /* Safari */
|
|
|
|
image-rendering: -o-crisp-edges; /* OS X & Windows Opera (12.02+) */
|
|
|
|
image-rendering: pixelated; /* Awesome future-browsers */
|
|
|
|
-ms-interpolation-mode: nearest-neighbor; /* IE */
|
|
|
|
}
|
2017-05-04 11:54:56 -04:00
|
|
|
.palbtn {
|
|
|
|
width:2em;
|
|
|
|
height:2em;
|
|
|
|
border-style:none;
|
|
|
|
}
|
2019-03-23 10:37:49 -04:00
|
|
|
.palbtn.selected {
|
2017-05-04 11:54:56 -04:00
|
|
|
border-width:2px;
|
|
|
|
border-color:white;
|
|
|
|
border-style:dotted;
|
|
|
|
}
|
2017-05-13 07:57:21 -04:00
|
|
|
#javatari-screen canvas {
|
|
|
|
box-sizing: content-box;
|
|
|
|
}
|
|
|
|
#javatari-screen div {
|
|
|
|
box-sizing: content-box;
|
|
|
|
}
|
2017-11-14 09:33:15 -05:00
|
|
|
@font-face {
|
|
|
|
font-family: TinyFont;
|
|
|
|
src: url(04B_03__.TTF);
|
|
|
|
}
|
2019-05-21 22:36:56 -04:00
|
|
|
.toolbarMenuButton {
|
|
|
|
background-color:#666;
|
2018-05-25 14:14:43 -07:00
|
|
|
border-style:solid;
|
2018-11-21 11:53:33 -05:00
|
|
|
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
2018-11-25 07:44:20 -05:00
|
|
|
position:relative;
|
2019-05-21 22:36:56 -04:00
|
|
|
margin-left:0.5em;
|
|
|
|
margin-right:0.5em;
|
|
|
|
}
|
|
|
|
a.toolbarMenuButton {
|
|
|
|
padding:0.3em;
|
2018-11-25 07:44:20 -05:00
|
|
|
}
|
|
|
|
a.dropdown-toggle {
|
|
|
|
}
|
|
|
|
a.dropdown-toggle:hover {
|
|
|
|
color:#ffffff;
|
2018-12-06 09:41:45 -05:00
|
|
|
text-shadow: 0px 0px 2px black;
|
2018-05-25 14:14:43 -07:00
|
|
|
}
|
2018-07-02 07:34:20 -06:00
|
|
|
.nav-tabs > li > a.tab {
|
|
|
|
line-height: 1.0;
|
|
|
|
}
|
|
|
|
.twitter-follow-button,
|
|
|
|
.twitter-follow-button:focus {
|
|
|
|
border-width:3px;
|
|
|
|
border-color:#9999ff;
|
|
|
|
background-color:#333399;
|
|
|
|
border-style:solid;
|
2018-11-21 11:53:33 -05:00
|
|
|
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
2018-07-02 07:34:20 -06:00
|
|
|
color:#77aaaa;
|
|
|
|
padding:6px;
|
|
|
|
}
|
|
|
|
.twitter-follow-button:hover {
|
|
|
|
color:#99ffff;
|
|
|
|
}
|
2018-11-24 11:33:28 -05:00
|
|
|
.dropdown-menu .dropdown-item-checked::before {
|
2018-07-14 15:10:09 -05:00
|
|
|
position: absolute;
|
|
|
|
left: .4rem;
|
|
|
|
content: '\2713';
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
2018-08-21 23:39:34 -04:00
|
|
|
div.replaydiv {
|
2018-11-26 16:14:23 -05:00
|
|
|
width:100%;
|
2018-08-21 23:39:34 -04:00
|
|
|
bottom:0;
|
2018-11-26 16:14:23 -05:00
|
|
|
z-index:1;
|
|
|
|
background-color: #333;
|
|
|
|
padding:0.5em;
|
2018-08-21 23:39:34 -04:00
|
|
|
}
|
2018-08-23 16:02:13 -04:00
|
|
|
.slider {
|
|
|
|
margin-left: 1em;
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
2018-09-11 22:28:30 -04:00
|
|
|
.gutter {
|
|
|
|
background-color: #555;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 50%;
|
2018-09-26 22:34:16 -04:00
|
|
|
pointer-events:auto;
|
2018-11-26 07:24:49 -05:00
|
|
|
z-index:1;
|
2018-09-11 22:28:30 -04:00
|
|
|
}
|
2018-11-23 13:29:11 -05:00
|
|
|
.gutter.gutter-horizontal {
|
|
|
|
background-image: url('grips/vertical.png');
|
|
|
|
cursor: col-resize;
|
|
|
|
}
|
|
|
|
.gutter.gutter-vertical {
|
|
|
|
background-image: url('grips/horizontal.png');
|
|
|
|
cursor: row-resize;
|
|
|
|
}
|
2018-09-11 22:28:30 -04:00
|
|
|
.gutter.gutter-vertical {
|
2018-09-12 20:54:25 -04:00
|
|
|
background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=');
|
2018-09-11 22:28:30 -04:00
|
|
|
}
|
|
|
|
.gutter.gutter-horizontal {
|
2018-09-12 20:54:25 -04:00
|
|
|
background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
|
|
|
|
height:100%;
|
|
|
|
}
|
2018-11-23 13:29:11 -05:00
|
|
|
.split,
|
|
|
|
.gutter.gutter-horizontal {
|
2018-11-25 07:18:32 -05:00
|
|
|
height: 100%;
|
2018-11-23 13:29:11 -05:00
|
|
|
}
|
2018-11-21 11:53:33 -05:00
|
|
|
div.markdown {
|
|
|
|
background-color: #fff;
|
|
|
|
width:94%;
|
|
|
|
margin:3%;
|
|
|
|
padding:1em;
|
|
|
|
}
|
2018-11-21 15:58:44 -05:00
|
|
|
div.markdown table {
|
|
|
|
margin:1em;
|
|
|
|
}
|
|
|
|
div.markdown td {
|
|
|
|
padding:0.2em;
|
|
|
|
}
|
|
|
|
div.markdown th {
|
|
|
|
padding:0.2em;
|
|
|
|
}
|
2018-11-24 11:33:28 -05:00
|
|
|
#sidebar {
|
2019-05-04 19:17:15 -04:00
|
|
|
overflow:auto;
|
2018-11-24 11:33:28 -05:00
|
|
|
}
|
|
|
|
#sidebar ul {
|
|
|
|
list-style-type:none;
|
|
|
|
padding:1em;
|
|
|
|
}
|
|
|
|
#sidebar a {
|
|
|
|
color:#ddffdd;
|
|
|
|
text-overflow:ellipsis;
|
|
|
|
white-space:nowrap;
|
|
|
|
overflow:hidden;
|
|
|
|
display:block;
|
|
|
|
}
|
|
|
|
#sidebar a:focus {
|
|
|
|
text-decoration:none;
|
|
|
|
}
|
|
|
|
#sidebar .dropdown-item-checked {
|
|
|
|
font-weight:bold;
|
|
|
|
background-color:#333;
|
|
|
|
}
|
2018-11-24 17:36:10 -05:00
|
|
|
.logo-gradient {
|
|
|
|
font-size: 1.5em;
|
|
|
|
background: linear-gradient(to right, #ff9999, #ffff99, #99ff99, #99ffff);
|
|
|
|
background-clip: text;
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
color:rgba(0,0,0,0);
|
|
|
|
}
|
2018-11-25 07:18:32 -05:00
|
|
|
.disable-select {
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
2018-11-27 10:14:24 -05:00
|
|
|
.alert {
|
|
|
|
z-index:2;
|
|
|
|
}
|
2019-02-21 16:47:25 -05:00
|
|
|
.segment {
|
|
|
|
border: 2px solid rgba(0,0,0,0.2);
|
|
|
|
border-radius:8px;
|
|
|
|
color: #333;
|
|
|
|
background-color:#999;
|
|
|
|
}
|
2019-02-26 10:56:51 -05:00
|
|
|
.segment:hover {
|
|
|
|
border-color: #ffffff;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2019-03-15 20:34:17 -04:00
|
|
|
.seg_code { color: #ccddff; }
|
|
|
|
.seg_data { color: #aaeeaa; }
|
|
|
|
.seg_io { color: #ffcccc; }
|
|
|
|
.seg_stack { color: #ffff66; }
|
|
|
|
.seg_unknown { color: #cccccc; }
|
2019-02-21 16:47:25 -05:00
|
|
|
.segment.segment-ram {
|
2019-02-21 17:41:59 -05:00
|
|
|
background-color:#aaeeaa;
|
2019-02-21 16:47:25 -05:00
|
|
|
}
|
|
|
|
.segment.segment-rom {
|
2019-02-21 17:41:59 -05:00
|
|
|
background-color:#ccddff;
|
|
|
|
}
|
|
|
|
.segment.segment-io {
|
|
|
|
background-color:#ffcccc;
|
2019-02-21 16:47:25 -05:00
|
|
|
}
|
|
|
|
.segment-offset {
|
|
|
|
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
|
|
|
font-size: 12pt;
|
|
|
|
color:#66dd66;
|
|
|
|
}
|
2019-02-21 17:41:59 -05:00
|
|
|
.vertical-scroll {
|
|
|
|
height:100%;
|
|
|
|
overflow-y:auto;
|
|
|
|
}
|
2019-03-03 14:37:22 -06:00
|
|
|
div.profiler {
|
|
|
|
background-color: #333;
|
|
|
|
color: #ddd;
|
|
|
|
white-space: pre;
|
|
|
|
margin-top: 20px auto 0;
|
|
|
|
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
|
|
|
font-size: 10pt;
|
|
|
|
}
|
|
|
|
span.profiler-lineno {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
span.profiler-local {
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
span.profiler-cident {
|
|
|
|
color: #99ffff;
|
|
|
|
}
|
2019-03-18 14:39:02 -04:00
|
|
|
div.asset_file {
|
|
|
|
border: 2px solid black;
|
|
|
|
border-radius:8px;
|
|
|
|
color: #ddd;
|
|
|
|
background-color:#666;
|
|
|
|
margin:0.5em;
|
|
|
|
padding:1em;
|
|
|
|
}
|
2019-03-22 12:32:37 -04:00
|
|
|
div.asset_file select {
|
|
|
|
color: #000;
|
|
|
|
}
|
2019-03-18 14:39:02 -04:00
|
|
|
div.asset_file_header {
|
|
|
|
font-weight: bold;
|
|
|
|
color: white;
|
2019-03-21 12:13:27 -04:00
|
|
|
background-color: #333;
|
|
|
|
border-radius: 8px;
|
|
|
|
padding-left: 1em;
|
2019-03-18 14:39:02 -04:00
|
|
|
}
|
|
|
|
div.asset_grid {
|
|
|
|
line-height:0;
|
|
|
|
margin: 1em;
|
|
|
|
}
|
|
|
|
div.asset_grid span {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2019-03-21 12:13:27 -04:00
|
|
|
.asset_cell {
|
2019-03-18 14:39:02 -04:00
|
|
|
padding: 0px;
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
2019-03-21 12:13:27 -04:00
|
|
|
.asset_cell:hover {
|
2019-03-20 14:10:50 -04:00
|
|
|
border: 1px solid white;
|
|
|
|
}
|
2019-03-25 20:39:53 -04:00
|
|
|
.asset_cell.selected {
|
2019-03-21 12:13:27 -04:00
|
|
|
border: 1px dotted white !important;
|
|
|
|
box-shadow: 0px 0px 1em rgba(255,255,255,1);
|
|
|
|
}
|
|
|
|
td.asset_editable {
|
|
|
|
padding:0.3em;
|
|
|
|
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
|
|
|
}
|
2019-03-20 14:10:50 -04:00
|
|
|
div.asset_dual {
|
2019-03-21 12:13:27 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
div.asset_dual table {
|
|
|
|
border-spacing: 10px;
|
|
|
|
border-collapse: separate;
|
2019-03-20 14:10:50 -04:00
|
|
|
}
|
|
|
|
div.asset_editor {
|
|
|
|
border-radius:16px;
|
|
|
|
padding:16px;
|
|
|
|
margin:16px;
|
|
|
|
background-color:#999;
|
2019-03-26 14:29:47 -04:00
|
|
|
display:flex;
|
|
|
|
flex-direction:column;
|
|
|
|
align-items:center;
|
|
|
|
}
|
|
|
|
div.asset_toolbar {
|
|
|
|
padding:8px;
|
|
|
|
margin:8px;
|
2019-03-20 14:10:50 -04:00
|
|
|
}
|
2019-05-17 00:42:52 -04:00
|
|
|
.control-insns {
|
2019-05-18 11:19:12 -04:00
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: 2em;
|
2019-05-17 00:42:52 -04:00
|
|
|
}
|
|
|
|
.control-key {
|
|
|
|
border: 2px solid rgba(0,0,0,0.2);
|
|
|
|
border-radius: 0.6em;
|
|
|
|
padding: 0.2em;
|
|
|
|
padding-left: 0.5em;
|
|
|
|
padding-right: 0.5em;
|
|
|
|
background-color: #eee;
|
|
|
|
margin-left: 1em;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
.control-def {
|
|
|
|
color: #ccc;
|
|
|
|
}
|
2019-05-21 13:54:51 -04:00
|
|
|
.book-title {
|
2019-05-21 22:36:56 -04:00
|
|
|
font-size:12pt;
|
2019-05-21 13:54:51 -04:00
|
|
|
}
|