2019-09-13 17:09:06 -07:00
|
|
|
/*
|
|
|
|
* 6502bench SourceGen disassembly output style.
|
|
|
|
*/
|
2021-10-07 12:39:08 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* General formatting.
|
|
|
|
*/
|
2019-09-13 17:09:06 -07:00
|
|
|
body {
|
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
|
|
font-size: 14px; /* 16 recommended for mobile */
|
|
|
|
padding: 0px;
|
|
|
|
margin: 20px 10px 10px 10px; /* TRBL order */
|
|
|
|
}
|
|
|
|
table, th, td {
|
|
|
|
border: 1px solid black;
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
2021-10-07 12:39:08 -07:00
|
|
|
.greytext {
|
|
|
|
color: grey;
|
|
|
|
}
|
2019-09-22 16:39:29 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Blue underlined text is distracting. Change internal links to be
|
|
|
|
* plain black text until they're hovered over.
|
|
|
|
*/
|
|
|
|
a[href^="#"]:link, a[href^="#"]:visited {
|
|
|
|
color: black;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a[href^="#"]:hover {
|
|
|
|
color: blue;
|
|
|
|
text-decoration: underline;
|
2019-12-13 16:52:50 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Put a border around visualizations. Disable smoothing so they don't
|
|
|
|
* blur out.
|
|
|
|
*
|
|
|
|
* Pixelated rendering works in Chrome, Safari, and IE11, but doesn't in
|
|
|
|
* current versions of Edge and Firefox. We could do it with Javascript
|
|
|
|
* Canvas (e.g. https://stackoverflow.com/a/19129822/294248), or by
|
|
|
|
* generating scaled thumbnail files directly.
|
|
|
|
*/
|
|
|
|
.vis {
|
|
|
|
border: 1px solid gray;
|
|
|
|
|
|
|
|
-ms-interpolation-mode: nearest-neighbor;
|
|
|
|
image-rendering: pixelated;
|
|
|
|
}
|