diff --git a/static/css/main.css b/static/css/main.css index cea96e6..b0f808e 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -397,6 +397,10 @@ ul { padding-bottom: 40px; border-top: 1px dotted #CCC; } +.system header .description { + margin: 15px 0 10px 10px !important; + color: #666; +} .toc { position: absolute; left: 10px; @@ -443,8 +447,9 @@ ul { } .api .lambda-list { display: inline-block; - margin-left: 8px; + margin-left: 4px; color: #555; + font-family: Consolas, "Liberation Mono", Courier, monospace; } .api .lambda-list .symbol-name { font-size: 95%; @@ -453,7 +458,7 @@ ul { .api .lambda-list .keyword { color: #777; font-style: italic; - font-size: 90%; + font-size: 100%; } .api .initial-value { color: #777; @@ -480,9 +485,10 @@ ul { } .api .symbol-type { position: absolute; - left: -78px; + left: -80px; display: inline-block; padding-right: 10px; + font-style: italic; font-size: 85%; text-align: right; width: 60px; @@ -516,7 +522,7 @@ ul { .api .docstring { margin: 5px 0 10px; font-size: 90%; - color: #333; + color: #666; line-height: 1.5; } .api .docstring pre { @@ -524,9 +530,6 @@ ul { margin: 0; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; } -.api .description { - margin: 15px 0 10px 10px !important; -} .error { margin-bottom: 20px; padding: 15px; diff --git a/templates/api.html b/templates/api.html index 5088a22..656bd9c 100644 --- a/templates/api.html +++ b/templates/api.html @@ -43,7 +43,7 @@
{% for package in system.packages %}
-

{{ package.name }}

+

{{ package.name }}

{% if package.docstring %}
{{ package.docstring }}
{% endif %} @@ -52,13 +52,7 @@ {% if symbol.externalp %}
  • {{ symbol.type | capfirst }} - - {% if symbol.setfp %} - (setf {{ symbol.name }}) - {% else %} - {{ symbol.name }} - {% endif %} - + {% if symbol.setfp %}(setf {{ symbol.name }}){% else %}{{ symbol.name }}{% endif %} {% if symbol.lambda-list %} {{ symbol.lambda-list | lambda-list | safe }} @@ -71,7 +65,7 @@ includes ({% for include in symbol.include-structs %}{{ include | symbol }}{% if not forloop.last %}, {% endif %}{% endfor %}) {% endif %} {% if symbol.initial-value %} - {{ symbol.initial-value }} + {{ symbol.initial-value | lower }} {% endif %}
    {{ symbol.docstring }}
    {% if symbol.type == "class" or symbol.type == "struct" %}