Much progress, but bad regression in parsing M-Expressions.

This commit is contained in:
Simon Brooke 2023-04-09 20:51:36 +01:00
parent 1dbc57efff
commit cde3d79ff3
No known key found for this signature in database
GPG key ID: A7A4F18D1D4DF987
44 changed files with 451 additions and 347 deletions

View file

@ -5,10 +5,24 @@ body {
background-color: black;
}
a {
color: lime;
}
a:active, a:hover {
color: yellowgreen;
}
a:visited {
color: green;
}
pre, code {
font-family: Monaco, DejaVu Sans Mono, Consolas, monospace;
font-size: 9pt;
margin: 15px 0;
color: limegreen;
background-color: #111;
}
h1 {
@ -45,7 +59,7 @@ h5.license {
left: 0;
right: 0;
height: 22px;
color: #f5f5f5;
color: limegreen;
padding: 5px 7px;
}
@ -67,14 +81,14 @@ h5.license {
}
.sidebar.primary {
background: #404040;
background: #080808;
border-right: solid 1px forestgreen;
left: 0;
width: 250px;
}
.sidebar.secondary {
background: #202020;
background: #111;
border-right: solid 1px darkgreen;
left: 251px;
width: 200px;
@ -93,7 +107,7 @@ h5.license {
}
#header {
background: #3f3f3f;
background: #080808;
box-shadow: 0 0 8px rgba(192, 255, 192, 0.4);
z-index: 100;
}
@ -119,14 +133,6 @@ h5.license {
text-decoration: none;
}
#header a {
color: #f5f5f5;
}
.sidebar a {
color: #333;
}
#header h2 {
float: right;
font-size: 9pt;
@ -399,7 +405,7 @@ h4.deprecated {
.type-sig {
clear: both;
color: #088;
color: goldenrod;
}
.type-sig pre {
@ -409,8 +415,8 @@ h4.deprecated {
.usage code {
display: block;
color: #008;
margin: 2px 0;
color: limegreen;
}
.usage code:first-child {
@ -483,7 +489,7 @@ p {
}
.markdown code:not(.hljs), .src-link a {
background: darkgray;
background: #111;
}
pre.deps {
@ -492,13 +498,13 @@ pre.deps {
border: 1px solid lime;
border-radius: 2px;
padding: 10px;
background-color: #404040;
background-color: #111;
}
.markdown hr {
border-style: solid;
border-top: none;
color: #ccc;
color: goldenrod;
}
.doc ul, .doc ol {
@ -511,12 +517,12 @@ pre.deps {
}
.doc table td, .doc table th {
border: 1px solid #dddddd;
border: 1px solid goldenrod;
padding: 4px 6px;
}
.doc table th {
background: #f2f2f2;
background: #111;
}
.doc dl {
@ -527,7 +533,7 @@ pre.deps {
font-weight: bold;
margin: 0;
padding: 3px 0;
border-bottom: 1px solid #ddd;
border-bottom: 1px solid goldenrod;
}
.doc dl dd {
@ -536,7 +542,7 @@ pre.deps {
}
.doc abbr {
border-bottom: 1px dotted #333;
border-bottom: 1px dotted goldenrod;
font-variant: none;
cursor: help;
}