File: layout.html

package info (click to toggle)
plover 5.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,356 kB
  • sloc: python: 21,589; sh: 682; ansic: 25; makefile: 11
file content (21 lines) | stat: -rw-r--r-- 529 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "!layout.html" %}
{% block footer %} {{ super() }}
  <style>
    .wy-nav-top,
    .wy-side-nav-search,
    .wy-menu-vertical a:active {
      background-color: #6da89e;
    }

    html.writer-html4 .rst-content dl:not(.docutils)>dt,
    html.writer-html5 .rst-content dl[class]:not(.option-list):not(.field-list):not(.footnote):not(.glossary):not(.simple)>dt {
      color: #6da89e;
      border-top-color: #6da89e;
      background-color: #dff2ef;
    }

    a {
      color: #6da89e;
    }
  </style>
{% endblock %}