mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2025-08-05 13:24:52 +00:00
Deploying to gh-pages from @ sehugg/8bitworkshop@3a960c3e6e 🚀
This commit is contained in:
BIN
css/04B_03__.TTF
Normal file
BIN
css/04B_03__.TTF
Normal file
Binary file not shown.
423
css/codemirror.css
Normal file
423
css/codemirror.css
Normal file
@@ -0,0 +1,423 @@
|
||||
/* BASICS */
|
||||
|
||||
.CodeMirror {
|
||||
/* Set height, width, borders, and global font properties here */
|
||||
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
||||
font-size: 0.8em;
|
||||
height: 94vh;
|
||||
direction: ltr;
|
||||
}
|
||||
|
||||
/* PADDING */
|
||||
|
||||
.CodeMirror-lines {
|
||||
padding: 4px 0; /* Vertical padding around content */
|
||||
}
|
||||
.CodeMirror pre {
|
||||
padding: 0 4px; /* Horizontal padding of content */
|
||||
}
|
||||
|
||||
.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
||||
background-color: white; /* The little square between H and V scrollbars */
|
||||
}
|
||||
|
||||
/* GUTTER */
|
||||
|
||||
.CodeMirror-gutters {
|
||||
border-right: 1px solid #ddd;
|
||||
background-color: #f7f7f7;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.CodeMirror-linenumber {
|
||||
padding: 0 5px 0 5px;
|
||||
min-width: 20px;
|
||||
text-align: right;
|
||||
color: #99cc99 !important;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.CodeMirror-guttermarker { color: black; }
|
||||
.CodeMirror-guttermarker-subtle { color: #999; }
|
||||
|
||||
/* CURSOR */
|
||||
|
||||
.CodeMirror-cursor {
|
||||
border-left: 1px solid black;
|
||||
border-right: none;
|
||||
width: 0;
|
||||
}
|
||||
/* Shown when moving in bi-directional text */
|
||||
.CodeMirror div.CodeMirror-secondarycursor {
|
||||
border-left: 1px solid silver;
|
||||
}
|
||||
.cm-fat-cursor .CodeMirror-cursor {
|
||||
width: auto;
|
||||
border: 0 !important;
|
||||
background: #7e7;
|
||||
}
|
||||
.cm-fat-cursor div.CodeMirror-cursors {
|
||||
z-index: 1;
|
||||
}
|
||||
.cm-fat-cursor-mark {
|
||||
background-color: rgba(20, 255, 20, 0.5);
|
||||
-webkit-animation: blink 1.06s steps(1) infinite;
|
||||
-moz-animation: blink 1.06s steps(1) infinite;
|
||||
animation: blink 1.06s steps(1) infinite;
|
||||
}
|
||||
.cm-animate-fat-cursor {
|
||||
width: auto;
|
||||
border: 0;
|
||||
-webkit-animation: blink 1.06s steps(1) infinite;
|
||||
-moz-animation: blink 1.06s steps(1) infinite;
|
||||
animation: blink 1.06s steps(1) infinite;
|
||||
background-color: #7e7;
|
||||
}
|
||||
@-moz-keyframes blink {
|
||||
0% {}
|
||||
50% { background-color: transparent; }
|
||||
100% {}
|
||||
}
|
||||
@-webkit-keyframes blink {
|
||||
0% {}
|
||||
50% { background-color: transparent; }
|
||||
100% {}
|
||||
}
|
||||
@keyframes blink {
|
||||
0% {}
|
||||
50% { background-color: transparent; }
|
||||
100% {}
|
||||
}
|
||||
|
||||
/* Can style cursor different in overwrite (non-insert) mode */
|
||||
.CodeMirror-overwrite .CodeMirror-cursor {}
|
||||
|
||||
.cm-tab { display: inline-block; text-decoration: inherit; }
|
||||
|
||||
.CodeMirror-rulers {
|
||||
position: absolute;
|
||||
left: 0; right: 0; top: -50px; bottom: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
.CodeMirror-ruler {
|
||||
border-left: 1px solid #ccc;
|
||||
top: 0; bottom: 0;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
/* DEFAULT THEME */
|
||||
|
||||
.cm-s-default .cm-header {color: blue;}
|
||||
.cm-s-default .cm-quote {color: #090;}
|
||||
.cm-negative {color: #d44;}
|
||||
.cm-positive {color: #292;}
|
||||
.cm-header, .cm-strong {font-weight: bold;}
|
||||
.cm-em {font-style: italic;}
|
||||
.cm-link {text-decoration: underline;}
|
||||
.cm-strikethrough {text-decoration: line-through;}
|
||||
|
||||
.cm-s-default .cm-keyword {color: #708;}
|
||||
.cm-s-default .cm-atom {color: #219;}
|
||||
.cm-s-default .cm-number {color: #164;}
|
||||
.cm-s-default .cm-def {color: #00f;}
|
||||
.cm-s-default .cm-variable,
|
||||
.cm-s-default .cm-punctuation,
|
||||
.cm-s-default .cm-property,
|
||||
.cm-s-default .cm-operator {}
|
||||
.cm-s-default .cm-variable-2 {color: #05a;}
|
||||
.cm-s-default .cm-variable-3 {color: #085;}
|
||||
.cm-s-default .cm-comment {color: #a50;}
|
||||
.cm-s-default .cm-string {color: #a11;}
|
||||
.cm-s-default .cm-string-2 {color: #f50;}
|
||||
.cm-s-default .cm-meta {color: #555;}
|
||||
.cm-s-default .cm-qualifier {color: #555;}
|
||||
.cm-s-default .cm-builtin {color: #30a;}
|
||||
.cm-s-default .cm-bracket {color: #997;}
|
||||
.cm-s-default .cm-tag {color: #170;}
|
||||
.cm-s-default .cm-attribute {color: #00c;}
|
||||
.cm-s-default .cm-hr {color: #999;}
|
||||
.cm-s-default .cm-link {color: #00c;}
|
||||
|
||||
.cm-s-default .cm-error {color: #f00;}
|
||||
.cm-invalidchar {color: #f00;}
|
||||
|
||||
.CodeMirror-composing { border-bottom: 2px solid; }
|
||||
|
||||
/* Default styles for common addons */
|
||||
|
||||
div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
|
||||
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
|
||||
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
|
||||
.CodeMirror-activeline-background {background: #e8f2ff;}
|
||||
|
||||
/* STOP */
|
||||
|
||||
/* The rest of this file contains styles related to the mechanics of
|
||||
the editor. You probably shouldn't touch them. */
|
||||
|
||||
.CodeMirror {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
background: white;
|
||||
}
|
||||
|
||||
.CodeMirror-scroll {
|
||||
overflow: scroll !important; /* Things will break if this is overridden */
|
||||
/* 30px is the magic margin used to hide the element's real scrollbars */
|
||||
/* See overflow: hidden in .CodeMirror */
|
||||
margin-bottom: -30px; margin-right: -30px;
|
||||
padding-bottom: 30px;
|
||||
height: 100%;
|
||||
outline: none; /* Prevent dragging from highlighting the element */
|
||||
position: relative;
|
||||
}
|
||||
.CodeMirror-sizer {
|
||||
position: relative;
|
||||
border-right: 30px solid transparent;
|
||||
}
|
||||
|
||||
/* The fake, visible scrollbars. Used to force redraw during scrolling
|
||||
before actual scrolling happens, thus preventing shaking and
|
||||
flickering artifacts. */
|
||||
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
|
||||
position: absolute;
|
||||
z-index: 6;
|
||||
display: none;
|
||||
}
|
||||
.CodeMirror-vscrollbar {
|
||||
right: 0; top: 0;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
.CodeMirror-hscrollbar {
|
||||
bottom: 0; left: 0;
|
||||
overflow-y: hidden;
|
||||
overflow-x: scroll;
|
||||
}
|
||||
.CodeMirror-scrollbar-filler {
|
||||
right: 0; bottom: 0;
|
||||
}
|
||||
.CodeMirror-gutter-filler {
|
||||
left: 0; bottom: 0;
|
||||
}
|
||||
|
||||
.CodeMirror-gutters {
|
||||
position: absolute; left: 0; top: 0;
|
||||
min-height: 100%;
|
||||
z-index: 3;
|
||||
}
|
||||
.CodeMirror-gutter {
|
||||
white-space: normal;
|
||||
height: 100%;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
margin-bottom: -30px;
|
||||
/* Hack to make IE7 behave */
|
||||
*zoom:1;
|
||||
*display:inline;
|
||||
}
|
||||
.CodeMirror-gutter-wrapper {
|
||||
position: absolute;
|
||||
z-index: 4;
|
||||
background: none !important;
|
||||
border: none !important;
|
||||
color: #cccccc;
|
||||
}
|
||||
.CodeMirror-gutter-background {
|
||||
position: absolute;
|
||||
top: 0; bottom: 0;
|
||||
z-index: 4;
|
||||
}
|
||||
.CodeMirror-gutter-elt {
|
||||
position: absolute;
|
||||
cursor: default;
|
||||
z-index: 4;
|
||||
}
|
||||
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
|
||||
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }
|
||||
|
||||
.CodeMirror-lines {
|
||||
cursor: text;
|
||||
min-height: 1px; /* prevents collapsing before first draw */
|
||||
}
|
||||
.CodeMirror pre {
|
||||
/* Reset some styles that the rest of the page might have set */
|
||||
-moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
|
||||
border-width: 0;
|
||||
background: transparent;
|
||||
font-family: inherit;
|
||||
font-size: inherit;
|
||||
margin: 0;
|
||||
white-space: pre;
|
||||
word-wrap: normal;
|
||||
line-height: inherit;
|
||||
color: inherit;
|
||||
z-index: 2;
|
||||
position: relative;
|
||||
overflow: visible;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
-webkit-font-variant-ligatures: none;
|
||||
font-variant-ligatures: none;
|
||||
}
|
||||
.CodeMirror-wrap pre {
|
||||
word-wrap: break-word;
|
||||
white-space: pre-wrap;
|
||||
word-break: normal;
|
||||
}
|
||||
|
||||
.CodeMirror-linebackground {
|
||||
position: absolute;
|
||||
left: 0; right: 0; top: 0; bottom: 0;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
.CodeMirror-linewidget {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.CodeMirror-widget {}
|
||||
|
||||
.CodeMirror-code {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
/* Force content-box sizing for the elements where we expect it */
|
||||
.CodeMirror-scroll,
|
||||
.CodeMirror-sizer,
|
||||
.CodeMirror-gutter,
|
||||
.CodeMirror-gutters,
|
||||
.CodeMirror-linenumber {
|
||||
-moz-box-sizing: content-box;
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
.CodeMirror-measure {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.CodeMirror-cursor {
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
}
|
||||
.CodeMirror-measure pre { position: static; }
|
||||
|
||||
div.CodeMirror-cursors {
|
||||
visibility: hidden;
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
}
|
||||
div.CodeMirror-dragcursors {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.CodeMirror-focused div.CodeMirror-cursors {
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.CodeMirror-selected { background: #d9d9d9; }
|
||||
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
|
||||
.CodeMirror-crosshair { cursor: crosshair; }
|
||||
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
|
||||
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }
|
||||
|
||||
.cm-searching {
|
||||
background: #ffa;
|
||||
background: rgba(255, 255, 0, .4);
|
||||
}
|
||||
|
||||
/* IE7 hack to prevent it from returning funny offsetTops on the spans */
|
||||
.CodeMirror span { *vertical-align: text-bottom; }
|
||||
|
||||
/* Used to force a border model for a node */
|
||||
.cm-force-border { padding-right: .1px; }
|
||||
|
||||
@media print {
|
||||
/* Hide the cursor when printing */
|
||||
.CodeMirror div.CodeMirror-cursors {
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
/* See issue #2901 */
|
||||
.cm-tab-wrap-hack:after { content: ''; }
|
||||
|
||||
/* Help users use markselection to safely style text background */
|
||||
span.CodeMirror-selectedtext { background: none; }
|
||||
|
||||
/****************************************************************/
|
||||
/* Based on mbonaci's Brackets mbo theme */
|
||||
/* https://github.com/mbonaci/global/blob/master/Mbo.tmTheme */
|
||||
/* Create your own: http://tmtheme-editor.herokuapp.com */
|
||||
/****************************************************************/
|
||||
|
||||
.cm-s-mbo.CodeMirror { background: #2c2c2c; color: #ffffec; }
|
||||
.cm-s-mbo div.CodeMirror-selected { background: #716C62; }
|
||||
.cm-s-mbo .CodeMirror-line::selection, .cm-s-mbo .CodeMirror-line > span::selection, .cm-s-mbo .CodeMirror-line > span > span::selection { background: rgba(113, 108, 98, .99); }
|
||||
.cm-s-mbo .CodeMirror-line::-moz-selection, .cm-s-mbo .CodeMirror-line > span::-moz-selection, .cm-s-mbo .CodeMirror-line > span > span::-moz-selection { background: rgba(113, 108, 98, .99); }
|
||||
.cm-s-mbo .CodeMirror-gutters { background: #4e4e4e; border-right: 0px; }
|
||||
.cm-s-mbo .CodeMirror-guttermarker { color: white; }
|
||||
.cm-s-mbo .CodeMirror-guttermarker-subtle { color: grey; }
|
||||
.cm-s-mbo .CodeMirror-linenumber { color: #dadada; }
|
||||
.cm-s-mbo .CodeMirror-cursor { border-left: 1px solid #ffffec; }
|
||||
|
||||
.cm-s-mbo span.cm-comment { color: #95958a; }
|
||||
.cm-s-mbo span.cm-atom { color: #00a8c6; }
|
||||
.cm-s-mbo span.cm-number { color: #33aadd; }
|
||||
|
||||
.cm-s-mbo span.cm-property, .cm-s-mbo span.cm-attribute { color: #9ddfe9; }
|
||||
.cm-s-mbo span.cm-keyword { color: #ffb928; }
|
||||
.cm-s-mbo span.cm-string { color: #b4fdb7; }
|
||||
.cm-s-mbo span.cm-string.cm-property { color: #ffffec; }
|
||||
|
||||
.cm-s-mbo span.cm-variable { color: #ffffec; }
|
||||
.cm-s-mbo span.cm-variable-2 { color: #00a8c6; }
|
||||
.cm-s-mbo span.cm-variable-3 { color: #ffb928; }
|
||||
.cm-s-mbo span.cm-def { color: #88eeff; }
|
||||
.cm-s-mbo span.cm-bracket { color: #fffffc; font-weight: bold; }
|
||||
.cm-s-mbo span.cm-tag { color: #9ddfe9; }
|
||||
.cm-s-mbo span.cm-link { color: #f54b07; }
|
||||
.cm-s-mbo span.cm-error { border-bottom: #636363; color: #ffffec; }
|
||||
.cm-s-mbo span.cm-qualifier { color: #ffffec; }
|
||||
|
||||
.cm-s-mbo span.cm-meta { color: #aaddaa; }
|
||||
|
||||
.cm-s-mbo .CodeMirror-activeline-background { background: #494b41; }
|
||||
.cm-s-mbo .CodeMirror-matchingbracket { color: #33ff33 !important; }
|
||||
.cm-s-mbo .CodeMirror-matchingtag { background: rgba(255, 255, 255, .37); }
|
||||
|
||||
/****************************************************************/
|
||||
|
||||
.cm-s-cobalt.CodeMirror { background: #002240; color: white; }
|
||||
.cm-s-cobalt div.CodeMirror-selected { background: #b36539; }
|
||||
.cm-s-cobalt .CodeMirror-line::selection, .cm-s-cobalt .CodeMirror-line > span::selection, .cm-s-cobalt .CodeMirror-line > span > span::selection { background: rgba(179, 101, 57, .99); }
|
||||
.cm-s-cobalt .CodeMirror-line::-moz-selection, .cm-s-cobalt .CodeMirror-line > span::-moz-selection, .cm-s-cobalt .CodeMirror-line > span > span::-moz-selection { background: rgba(179, 101, 57, .99); }
|
||||
.cm-s-cobalt .CodeMirror-gutters { background: #002240; border-right: 1px solid #aaa; }
|
||||
.cm-s-cobalt .CodeMirror-guttermarker { color: #ffee80; }
|
||||
.cm-s-cobalt .CodeMirror-guttermarker-subtle { color: #d0d0d0; }
|
||||
.cm-s-cobalt .CodeMirror-linenumber { color: #d0d0d0; }
|
||||
.cm-s-cobalt .CodeMirror-cursor { border-left: 1px solid white; }
|
||||
|
||||
.cm-s-cobalt span.cm-comment { color: #ccc; }
|
||||
.cm-s-cobalt span.cm-atom { color: #845dc4; }
|
||||
.cm-s-cobalt span.cm-number, .cm-s-cobalt span.cm-attribute { color: #ff80e1; }
|
||||
.cm-s-cobalt span.cm-keyword { color: #ffee80; }
|
||||
.cm-s-cobalt span.cm-string { color: #3ad900; }
|
||||
.cm-s-cobalt span.cm-meta { color: #ff9d00; }
|
||||
.cm-s-cobalt span.cm-variable-2, .cm-s-cobalt span.cm-tag { color: #9effff; }
|
||||
.cm-s-cobalt span.cm-variable-3, .cm-s-cobalt span.cm-def { color: white; }
|
||||
.cm-s-cobalt span.cm-bracket { color: #d8d8d8; }
|
||||
.cm-s-cobalt span.cm-builtin, .cm-s-cobalt span.cm-special { color: #ff9e59; }
|
||||
.cm-s-cobalt span.cm-link { color: #845dc4; }
|
||||
.cm-s-cobalt span.cm-error { color: #9d1e15; }
|
||||
|
||||
.cm-s-cobalt .CodeMirror-activeline-background { background: #003399; }
|
||||
.cm-s-cobalt .CodeMirror-matchingbracket { outline:1px solid grey;color:white !important; }
|
||||
|
||||
/*** FIXES FOR BOOTSTRAP ***/
|
||||
|
||||
.CodeMirror-dialog > button { background-color: #333 !important; }
|
848
css/ui.css
Normal file
848
css/ui.css
Normal file
@@ -0,0 +1,848 @@
|
||||
.dbg_info {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
.gutter-offset {
|
||||
width: 3em;
|
||||
}
|
||||
.gutter-bytes {
|
||||
width: 6em;
|
||||
}
|
||||
.gutter-clock {
|
||||
width: 0.5em;
|
||||
}
|
||||
.gutter-info {
|
||||
width: 1em;
|
||||
cursor: cell;
|
||||
}
|
||||
.CodeMirror-gutter-elt:hover {
|
||||
text-decoration: underline;
|
||||
cursor: cell;
|
||||
}
|
||||
.currentpc-span {
|
||||
background-color: #7e2a70;
|
||||
}
|
||||
.currentpc-marker {
|
||||
color: #ff66ee;
|
||||
}
|
||||
.currentpc-span-blocked {
|
||||
background-color: #7e2a70;
|
||||
}
|
||||
.currentpc-marker-blocked {
|
||||
color: #ffee33;
|
||||
}
|
||||
.hilite-span {
|
||||
background-color: #003399;
|
||||
}
|
||||
.mark-error {
|
||||
text-decoration-line: underline;
|
||||
text-decoration-style: wavy;
|
||||
text-decoration-color: #ff6666;
|
||||
text-decoration-thickness: 1px;
|
||||
}
|
||||
.tooltipbox {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
border-bottom: 1px dotted black;
|
||||
}
|
||||
.tooltiptext {
|
||||
visibility: hidden;
|
||||
width: 500px;
|
||||
background-color: #660000;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
border-radius: 6px;
|
||||
padding: 5px 0;
|
||||
/* Position the tooltip */
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
/* <pre> tag wrap */
|
||||
white-space: pre-wrap; /* css-3 */
|
||||
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
||||
}
|
||||
.tooltipbox:hover .tooltiptext {
|
||||
visibility: visible;
|
||||
}
|
||||
.tooltiperror {
|
||||
color: #ff6666;
|
||||
font-weight: bold;
|
||||
}
|
||||
.tooltiperrorline {
|
||||
color:#ffcccc;
|
||||
background-color:#660000;
|
||||
}
|
||||
.tooltipinfoline {
|
||||
color:#ccccff;
|
||||
background-color:#000066;
|
||||
}
|
||||
.tooltiptrack {
|
||||
background-color: #666;
|
||||
color: #fff;
|
||||
text-align: left;
|
||||
border: 2px solid #999;
|
||||
border-radius: 8px;
|
||||
padding: 5px;
|
||||
position: absolute;
|
||||
z-index: 10;
|
||||
white-space: pre-wrap; /* css-3 */
|
||||
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
|
||||
pointer-events: none;
|
||||
}
|
||||
#controls_top {
|
||||
position:absolute;
|
||||
padding:0.5em;
|
||||
height:3em;
|
||||
width:100%;
|
||||
background-color:#999;
|
||||
}
|
||||
#notebook {
|
||||
position:absolute;
|
||||
top:3em;
|
||||
bottom:0;
|
||||
left:0;
|
||||
right:0;
|
||||
background-color:#666;
|
||||
overflow:hidden;
|
||||
display:flex;
|
||||
flex-direction:row;
|
||||
}
|
||||
#workspace {
|
||||
background-color:#333;
|
||||
overflow:hidden;
|
||||
}
|
||||
div.editor {
|
||||
line-height:1.25;
|
||||
font-size:12pt;
|
||||
}
|
||||
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;
|
||||
}
|
||||
div.mem_info {
|
||||
position: fixed;
|
||||
right: 10px;
|
||||
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;
|
||||
box-shadow: 0px 0px 8px rgba(0,0,0,.5);
|
||||
max-height: 90vh;
|
||||
overflow-y: auto;
|
||||
}
|
||||
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;
|
||||
}
|
||||
.mem_info_links {
|
||||
text-align:right;
|
||||
}
|
||||
.btn_group {
|
||||
border-radius:8px;
|
||||
padding:8px;
|
||||
margin-left:8px;
|
||||
background-color: #666;
|
||||
}
|
||||
.btn_group button {
|
||||
padding-left:4px;
|
||||
padding-right:4px;
|
||||
padding-top:2px;
|
||||
padding-bottom:2px;
|
||||
margin:1px;
|
||||
vertical-align:baseline;
|
||||
color: #333;
|
||||
}
|
||||
.btn_label {
|
||||
color: #ccc;
|
||||
}
|
||||
.btn_active {
|
||||
color: #33cc33 !important;
|
||||
}
|
||||
.btn_stopped {
|
||||
color: #ff9933 !important;
|
||||
}
|
||||
.btn_recording {
|
||||
color: #ff6666 !important;
|
||||
}
|
||||
.btn_toolbar {
|
||||
margin:4px;
|
||||
}
|
||||
span.hilite {
|
||||
color: #ff66ff;
|
||||
}
|
||||
div.has-errors {
|
||||
background-color: #ff6666 !important;
|
||||
}
|
||||
div.is-busy-unused {
|
||||
background-color: #8888bb !important;
|
||||
}
|
||||
#error_alert {
|
||||
max-width: 45%;
|
||||
}
|
||||
#error_alert_msg {
|
||||
margin-right: 2em;
|
||||
}
|
||||
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;
|
||||
bottom: 0%;
|
||||
right: 0%;
|
||||
padding: 10px;
|
||||
}
|
||||
a.twitbtn {
|
||||
color:#333399;
|
||||
font-weight: bold;
|
||||
}
|
||||
a.dropdown-toggle {
|
||||
color:#66ee66;
|
||||
padding:3px;
|
||||
}
|
||||
/* http://stackoverflow.com/questions/18023493/bootstrap-3-dropdown-sub-menu-missing */
|
||||
.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;
|
||||
}
|
||||
div.emulator {
|
||||
background-color: #666;
|
||||
margin-top: 20px auto 0;
|
||||
display:flex;
|
||||
flex-direction:column;
|
||||
}
|
||||
div.emuoverlay {
|
||||
display:flex;
|
||||
flex-direction:column;
|
||||
height:100%;
|
||||
}
|
||||
div.emuscope {
|
||||
background-color:#333;
|
||||
color:#ccc;
|
||||
z-index:1;
|
||||
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
|
||||
}
|
||||
div.emuspacer {
|
||||
width:100%;
|
||||
}
|
||||
/* has to be here b/c renders differently after first load if in inline style */
|
||||
.emuvideo {
|
||||
border-radius:20px;
|
||||
border: 4px solid #222;
|
||||
outline-color: #ccc;
|
||||
padding: 20px;
|
||||
background: #000;
|
||||
margin-top:40px;
|
||||
margin-left:5%;
|
||||
margin-right:5%;
|
||||
width:90%;
|
||||
pointer-events:auto;
|
||||
}
|
||||
.emuvideo:focus {
|
||||
outline:none;
|
||||
border-color:#888;
|
||||
}
|
||||
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 */
|
||||
}
|
||||
.palbtn {
|
||||
width:2em;
|
||||
height:2em;
|
||||
border-style:none;
|
||||
}
|
||||
.palbtn.selected {
|
||||
border-width:2px;
|
||||
border-color:white;
|
||||
border-style:dotted;
|
||||
}
|
||||
#javatari-screen canvas {
|
||||
box-sizing: content-box;
|
||||
}
|
||||
#javatari-screen div {
|
||||
box-sizing: content-box;
|
||||
}
|
||||
@font-face {
|
||||
font-family: TinyFont;
|
||||
src: url(04B_03__.TTF);
|
||||
}
|
||||
.toolbarMenuButton {
|
||||
background-color:#666;
|
||||
border-style:solid;
|
||||
position:relative;
|
||||
margin-left:0.5em;
|
||||
margin-right:0.5em;
|
||||
}
|
||||
a.toolbarMenuButton {
|
||||
padding:0.3em;
|
||||
}
|
||||
a.dropdown-toggle:hover {
|
||||
color:#ffffff;
|
||||
text-shadow: 0px 0px 2px black;
|
||||
}
|
||||
.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;
|
||||
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
||||
color:#77aaaa;
|
||||
padding:6px;
|
||||
}
|
||||
.twitter-follow-button:hover {
|
||||
color:#99ffff;
|
||||
}
|
||||
.dropdown-menu .dropdown-item-checked::before {
|
||||
position: absolute;
|
||||
left: .4rem;
|
||||
content: '\2713';
|
||||
font-weight: 400;
|
||||
}
|
||||
div.replaydiv {
|
||||
width:100%;
|
||||
bottom:0;
|
||||
z-index:1;
|
||||
background-color: #333;
|
||||
padding:0.5em;
|
||||
}
|
||||
.slider {
|
||||
margin-left: 1em;
|
||||
margin-right: 1em;
|
||||
}
|
||||
.gutter {
|
||||
background-color: #555;
|
||||
background-repeat: no-repeat;
|
||||
background-position: 50%;
|
||||
pointer-events:auto;
|
||||
z-index:4;
|
||||
}
|
||||
.gutter.gutter-horizontal {
|
||||
background-image: url('grips/vertical.png');
|
||||
cursor: col-resize;
|
||||
}
|
||||
.gutter.gutter-vertical {
|
||||
background-image: url('grips/horizontal.png');
|
||||
cursor: row-resize;
|
||||
}
|
||||
.gutter.gutter-vertical {
|
||||
background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=');
|
||||
}
|
||||
.gutter.gutter-horizontal {
|
||||
background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==');
|
||||
height:100%;
|
||||
}
|
||||
.split,
|
||||
.gutter.gutter-horizontal {
|
||||
height: 100%;
|
||||
}
|
||||
div.markdown {
|
||||
background-color: #fff;
|
||||
width:100%;
|
||||
padding:2em;
|
||||
user-select: text;
|
||||
}
|
||||
div.markdown table {
|
||||
margin:1em;
|
||||
}
|
||||
div.markdown td {
|
||||
padding:0.2em;
|
||||
}
|
||||
div.markdown th {
|
||||
padding:0.2em;
|
||||
}
|
||||
#sidebar {
|
||||
overflow:auto;
|
||||
}
|
||||
#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;
|
||||
}
|
||||
.logo-gradient {
|
||||
font-size: 1.25em;
|
||||
margin-top: 0.15em;
|
||||
background: linear-gradient(to right, #ff9999, #ffff99, #99ff99, #99ffff);
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
color:rgba(0,0,0,0);
|
||||
}
|
||||
.logo-gradient:hover {
|
||||
text-shadow: 0px 0px 0.5em rgba(255,255,255,1);
|
||||
text-decoration: underline;
|
||||
text-decoration-color: #ddd;
|
||||
text-decoration-thickness: 1px;
|
||||
}
|
||||
.disable-select {
|
||||
user-select: none;
|
||||
}
|
||||
.enable-select {
|
||||
user-select: auto;
|
||||
}
|
||||
.alert {
|
||||
z-index:8;
|
||||
}
|
||||
.segment {
|
||||
border: 2px solid rgba(0,0,0,0.2);
|
||||
border-radius:8px;
|
||||
color: #333;
|
||||
background-color:#999;
|
||||
display:grid;
|
||||
justify-content: center;
|
||||
align-content: center;
|
||||
}
|
||||
.segment:hover {
|
||||
border-color: #ffffff;
|
||||
cursor: pointer;
|
||||
}
|
||||
.seg_code { color: #ccddff; }
|
||||
.seg_data { color: #aaeeaa; }
|
||||
.seg_io { color: #ffcccc; }
|
||||
.seg_stack { color: #ffff66; }
|
||||
.seg_unknown { color: #cccccc; }
|
||||
.segment.segment-ram {
|
||||
background-color:#aaeeaa;
|
||||
}
|
||||
.segment.segment-rom {
|
||||
background-color:#ccddff;
|
||||
}
|
||||
.segment.segment-io {
|
||||
background-color:#ffcccc;
|
||||
}
|
||||
.segment-offset {
|
||||
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
||||
font-size: 12pt;
|
||||
color:#66dd66;
|
||||
}
|
||||
.vertical-scroll {
|
||||
height:100%;
|
||||
overflow-y:auto;
|
||||
}
|
||||
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;
|
||||
}
|
||||
div.asset_file {
|
||||
border: 2px solid black;
|
||||
border-radius:8px;
|
||||
color: #ddd;
|
||||
background-color:#666;
|
||||
margin:0.5em;
|
||||
padding:1em;
|
||||
}
|
||||
div.asset_file select {
|
||||
color: #000;
|
||||
}
|
||||
div.asset_file_header {
|
||||
font-weight: bold;
|
||||
color: white;
|
||||
background-color: #333;
|
||||
border-radius: 8px;
|
||||
padding-left: 1em;
|
||||
}
|
||||
div.asset_grid {
|
||||
line-height:0;
|
||||
margin: 1em;
|
||||
}
|
||||
div.asset_grid span {
|
||||
white-space: nowrap;
|
||||
}
|
||||
.asset_cell {
|
||||
padding: 0px;
|
||||
border: 1px solid black;
|
||||
}
|
||||
.asset_cell:hover {
|
||||
border: 1px solid white;
|
||||
}
|
||||
.asset_cell.selected {
|
||||
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;
|
||||
}
|
||||
div.asset_dual {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
div.asset_dual table {
|
||||
border-spacing: 10px;
|
||||
border-collapse: separate;
|
||||
}
|
||||
div.asset_editor {
|
||||
border-radius:16px;
|
||||
padding:16px;
|
||||
margin:16px;
|
||||
background-color:#999;
|
||||
display:flex;
|
||||
flex-direction:column;
|
||||
align-items:center;
|
||||
}
|
||||
div.asset_toolbar {
|
||||
padding:8px;
|
||||
margin:8px;
|
||||
}
|
||||
.control-insns {
|
||||
margin-top: auto;
|
||||
margin-bottom: 2em;
|
||||
}
|
||||
.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;
|
||||
}
|
||||
.book-title {
|
||||
font-size:12pt;
|
||||
}
|
||||
.book-active span {
|
||||
font-weight: bold;
|
||||
}
|
||||
.book-active span::after {
|
||||
font-size: x-large;
|
||||
content: ' \2b50';
|
||||
}
|
||||
.pc-console {
|
||||
background-color: #000;
|
||||
color: #7f7f7f;
|
||||
white-space: pre;
|
||||
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
||||
font-size: 10pt;
|
||||
line-height: 1.2;
|
||||
}
|
||||
.transcript {
|
||||
background-color: #fff;
|
||||
width: 100%;
|
||||
padding: 1.25em;
|
||||
user-select: text;
|
||||
font-family: Verdana, Geneva, sans-serif;
|
||||
}
|
||||
.transcript-bottom {
|
||||
background-color: #fff;
|
||||
width: 100%;
|
||||
}
|
||||
.transcript-split {
|
||||
padding: 0.5em;
|
||||
background: #eee;
|
||||
box-shadow: 0 8px 6px -6px RGBA(0,0,0,0.3);
|
||||
z-index: 1;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.transcript-line {
|
||||
line-height: 1.5em;
|
||||
min-height: 1em;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
.transcript-fanfold > .transcript-line {
|
||||
min-height: 1.5em;
|
||||
}
|
||||
.transcript-fanfold > .transcript-line:nth-child(even) {
|
||||
background: RGBA(225,245,225,1.0);
|
||||
}
|
||||
.transcript-style-1 {
|
||||
font-style: italic;
|
||||
}
|
||||
.transcript-style-2 {
|
||||
white-space: pre-wrap; /* css-3 */
|
||||
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
||||
line-height: 1em;
|
||||
min-height: 0;
|
||||
}
|
||||
.transcript-style-4 {
|
||||
font-weight: bold;
|
||||
}
|
||||
.transcript-style-8 { /* input */
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
color: #6666ff;
|
||||
background-color: #eeeeff;
|
||||
padding: 0.25em;
|
||||
padding-left: 0.5em;
|
||||
padding-right: 0.5em;
|
||||
}
|
||||
.transcript-style-16 { /* alternate */
|
||||
color: #6666ff;
|
||||
background-color: #eeeeff;
|
||||
}
|
||||
.transcript-style-32 { /* alternate 2 */
|
||||
background-color: #eee;
|
||||
}
|
||||
.transcript-reverse {
|
||||
background-color: #666;
|
||||
color: #ddd;
|
||||
}
|
||||
.transcript-input {
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
color: #6666ff;
|
||||
background-color: #eeeeff;
|
||||
margin:1%;
|
||||
width:100%;
|
||||
max-width:25em;
|
||||
}
|
||||
.transcript-input-char {
|
||||
max-width:5em;
|
||||
}
|
||||
.transcript-print-head {
|
||||
background: url('../images/print-head.png') no-repeat scroll 0 0 transparent;
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
height: 3em;
|
||||
width: 100%;
|
||||
z-index: 6;
|
||||
pointer-events: none;
|
||||
}
|
||||
.transcript-print-head.printing {
|
||||
height: 5em;
|
||||
}
|
||||
.transcript-print-shield {
|
||||
background: '#ffffff';
|
||||
background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0) 56%, rgba(0,0,0,0) 100%);
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
height: 3em;
|
||||
width: 100%;
|
||||
z-index: 5;
|
||||
pointer-events: none;
|
||||
}
|
||||
.transcript-header {
|
||||
color: #ccc;
|
||||
text-align: right;
|
||||
padding-right: 0.5em;
|
||||
padding-top: 0.5em;
|
||||
}
|
||||
.tree-header {
|
||||
display: flex;
|
||||
border: 1px solid #555;
|
||||
border-radius:8px;
|
||||
color: #fff;
|
||||
background-color:#666;
|
||||
padding-left:1em;
|
||||
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
||||
}
|
||||
.tree-content {
|
||||
padding-left:0.75em;
|
||||
padding-right:0.75em;
|
||||
font-size: small;
|
||||
}
|
||||
.tree-key {
|
||||
padding-right:1em;
|
||||
}
|
||||
.tree-value {
|
||||
margin-left:auto;
|
||||
font-weight:normal;
|
||||
padding-right:1em;
|
||||
}
|
||||
.tree-expanded::after {
|
||||
float: right;
|
||||
margin-right: 1em;
|
||||
content: '\25b2';
|
||||
}
|
||||
.tree-collapsed::after {
|
||||
float: right;
|
||||
margin-right: 1em;
|
||||
content: '\25bc';
|
||||
}
|
||||
.tree-collapsed:hover, .tree-expanded:hover {
|
||||
border-color:#ccc;
|
||||
}
|
||||
.tree-header:hover {
|
||||
background-color: #666;
|
||||
}
|
||||
.tree-level-0 { display:none;}
|
||||
.tree-level-1 { background-color: #638283;}
|
||||
.tree-level-2 { background-color: #636e83;}
|
||||
.tree-level-3 { background-color: #636483;}
|
||||
.tree-level-4 { background-color: #756383;}
|
||||
.tree-level-5 { background-color: #83637e;}
|
||||
.tree-level-6 { background-color: #83636e;}
|
||||
.tree-level-7 { background-color: #836363;}
|
||||
.tree-level-8 { background-color: #837163;}
|
||||
.tree-level-9 { background-color: #7b8363;}
|
||||
.tree-level-10 { background-color: #738363;}
|
||||
|
||||
.waverow.editable:hover {
|
||||
background-color: #336633;
|
||||
}
|
||||
|
||||
.scripting-cell {
|
||||
background: #444;
|
||||
color: #99cc99;
|
||||
padding: 0.5em;
|
||||
margin-right: 0.5em;
|
||||
font-family: "Andale Mono", "Menlo", "Lucida Console", monospace;
|
||||
word-wrap: break-word;
|
||||
pointer-events: auto;
|
||||
}
|
||||
.scripting-cell canvas {
|
||||
min-height: 20em;
|
||||
max-width: 95%;
|
||||
border: 0;
|
||||
outline-color: #ccc;
|
||||
background: #000;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
image-rendering: pixelated;
|
||||
image-rendering: crisp-edges;
|
||||
}
|
||||
.scripting-cell pre {
|
||||
background-color: #333;
|
||||
border: 1px inset #666;
|
||||
color: #99dd99;
|
||||
}
|
||||
.scripting-flex canvas {
|
||||
min-height: 2vw;
|
||||
max-height: 20vw;
|
||||
}
|
||||
div.scripting-editor {
|
||||
width: 100%;
|
||||
}
|
||||
.scripting-editor canvas {
|
||||
min-height: 30vw;
|
||||
max-height: 50vw;
|
||||
}
|
||||
div.scripting-color {
|
||||
min-width: 2em;
|
||||
min-height: 2em;
|
||||
border: 3px solid black;
|
||||
}
|
||||
div.scripting-color span {
|
||||
visibility: hidden;
|
||||
}
|
||||
div.scripting-color:hover span {
|
||||
visibility: visible;
|
||||
}
|
||||
div.scripting-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat( auto-fill, minmax(4em, 1fr) );
|
||||
justify-items: center;
|
||||
}
|
||||
div.scripting-flex {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
}
|
||||
div.scripting-select > div {
|
||||
border-radius: 2px;
|
||||
border-style: dotted;
|
||||
border-color: transparent;
|
||||
margin: 0.25em;
|
||||
}
|
||||
div.scripting-select > div:hover {
|
||||
border-color: #eee;
|
||||
}
|
||||
div.scripting-select > .scripting-selected {
|
||||
border-style: solid;
|
||||
border-color: #eee;
|
||||
}
|
||||
div.scripting-cell button {
|
||||
background-color: #333;
|
||||
color: #fff;
|
||||
padding: 0.5em;
|
||||
}
|
||||
div.scripting-cell button:hover {
|
||||
border-color: #fff;
|
||||
}
|
||||
div.scripting-cell button.scripting-enabled {
|
||||
background-color: #339999;
|
||||
}
|
Reference in New Issue
Block a user