051cd54dcd
* Removed the automatic document table heading based on the document id. * Fixed the way 'absolute' links were resolved in `Processor`. A leading `/` for a link passed into `Processor.resolveLink` really means "resolve as if I am starting from the documentation root." * Moved the default logging configuration out of the final jar path. This is to help with environments that have multiple projects in the same classpath and therefore may have multiple `logback.groovy` configurations loading. * Tweaked CSS.
65 lines
1.2 KiB
CSS
65 lines
1.2 KiB
CSS
body {
|
|
font-family: 'Palatine Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;
|
|
font-size: 15px;
|
|
line-height: 22px;
|
|
color: #252519;
|
|
margin: 0;
|
|
padding 0; }
|
|
|
|
a { color: #261a3b; }
|
|
a:visited { color: #261a3b; }
|
|
|
|
p{ margin: 0 0 15px 0; }
|
|
|
|
h1, h2, h3, h4, h5, h6 { margin: 0 0 15px 0; }
|
|
|
|
h1 { margin-top: 40px; }
|
|
|
|
dt { font-weight: bold; }
|
|
|
|
ul {
|
|
margin: 0;
|
|
padding-top: 0; }
|
|
|
|
#container { position: relative; }
|
|
|
|
table td {
|
|
border: 0;
|
|
outline: 0; }
|
|
|
|
td.docs, th.docs {
|
|
max-width: 600px;
|
|
min-width: 450px;
|
|
min-height: 5pc;
|
|
padding: 10px 25px 1px 50px;
|
|
overflow-x: hidden;
|
|
vertical-align: top;
|
|
text-align: left; }
|
|
|
|
.docs pre {
|
|
background: #f8f8ff;
|
|
border: 1px solid #dedede;
|
|
margin: 15px 0 15px;
|
|
padding-left: 15px; }
|
|
|
|
.docs tt, .docs code {
|
|
background: #f8f8ff;
|
|
border: 1px solid #dedede;
|
|
padding: 0 0.2em; }
|
|
|
|
.docs table {
|
|
border: thin solid #dedede;
|
|
margin-left: 60px; }
|
|
|
|
td.code, th.code {
|
|
padding: 14px 15px 16px 25px;
|
|
width: 100%;
|
|
vertical-align: top;
|
|
border-left: 1px solid #e5e5ee;
|
|
font-size: 14px; }
|
|
|
|
pre, tt, code {
|
|
line-height: 18px;
|
|
font-family: Menlo, Monaco, Consolas, "Lucida Console", monospace;
|
|
margin: 0; padding: 0; }
|