mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 06:51:54 +00:00
Updated documentation styling
This commit is contained in:
parent
d4741b7d5e
commit
921c0e08c0
1 changed files with 195 additions and 9 deletions
|
@ -1,3 +1,136 @@
|
|||
body
|
||||
{
|
||||
background: #eee;
|
||||
}
|
||||
|
||||
#titlearea
|
||||
{
|
||||
background: white;
|
||||
}
|
||||
|
||||
*
|
||||
{
|
||||
text-shadow: none !important;
|
||||
}
|
||||
|
||||
|
||||
/* Reduce width of main content for more readibility */
|
||||
div.contents,
|
||||
div.header
|
||||
{
|
||||
max-width: 60em;
|
||||
background: white;
|
||||
margin: 0;
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
#titlearea
|
||||
{
|
||||
border: 0;
|
||||
}
|
||||
|
||||
|
||||
div.headertitle
|
||||
{
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
|
||||
/* Hide permalink icon in front of method name and make whole name clickable
|
||||
* instead (by invisibly streting the permalink over the title). Not ideal,
|
||||
* as the name can't be selected anymore, but better than the distracting
|
||||
* icon. */
|
||||
span.permalink
|
||||
{
|
||||
display: block;
|
||||
position: relative;
|
||||
font-size: unset;
|
||||
}
|
||||
|
||||
span.permalink a {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
|
||||
/* Hide "libfluidsynth" root node of nav tree */
|
||||
#nav-tree-contents > ul > li:first-child > .item > .label,
|
||||
#nav-tree-contents > ul > li:first-child > .item > a
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
#nav-tree
|
||||
{
|
||||
background: #333;
|
||||
}
|
||||
|
||||
#nav-tree .label a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#nav-tree .selected {
|
||||
background: #666;
|
||||
}
|
||||
|
||||
|
||||
#nav-tree,
|
||||
div.header,
|
||||
.ui-resizable-e,
|
||||
.sm-dox,
|
||||
.navpath ul,
|
||||
.memtitle,
|
||||
.sm-dox a,
|
||||
.fieldtable th
|
||||
{
|
||||
background-image: none !important;
|
||||
}
|
||||
|
||||
#main-nav {
|
||||
background: #DFE5F1;
|
||||
}
|
||||
|
||||
.memitem,
|
||||
.memproto,
|
||||
.memdoc,
|
||||
.memtitle
|
||||
{
|
||||
box-shadow: none;
|
||||
text-shadow: none;
|
||||
border-right: none;
|
||||
border-bottom: none;
|
||||
border-bottom-left-radius: 0;
|
||||
background-image: none;
|
||||
border-color: #DFE5F1;
|
||||
}
|
||||
|
||||
.memtitle {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
background: #DFE5F1;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
.memproto {
|
||||
background: #fafafa;
|
||||
border-bottom: 1px solid #DFE5F1;
|
||||
border-right: 1px solid #DFE5F1;
|
||||
}
|
||||
|
||||
.mdescLeft,
|
||||
.mdescRight,
|
||||
.memItemLeft,
|
||||
.memItemRight,
|
||||
.memTemplItemLeft,
|
||||
.memTemplItemRight,
|
||||
.memTemplParams
|
||||
{
|
||||
background: none;
|
||||
}
|
||||
|
||||
.memSeparator {
|
||||
}
|
||||
|
||||
code {
|
||||
background-color: #eeeeee;
|
||||
|
@ -10,3 +143,56 @@ code {
|
|||
border-radius: 3px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
div.fragment {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
div.fragment .line {
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
.memdoc dl {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
dl.note {
|
||||
margin-left: -10px;
|
||||
padding-left: 5px;
|
||||
border-left: 5px solid;
|
||||
border-color: lightblue;
|
||||
}
|
||||
|
||||
dl.deprecated {
|
||||
margin-left: -10px;
|
||||
padding-left: 5px;
|
||||
border-left: 5px solid;
|
||||
border-color: orange;
|
||||
}
|
||||
|
||||
dl.warning {
|
||||
margin-left: -10px;
|
||||
padding-left: 5px;
|
||||
border-left: 5px solid;
|
||||
border-color: red;
|
||||
}
|
||||
|
||||
table.directory .arrow {
|
||||
height: inherit;
|
||||
}
|
||||
|
||||
table.directory tr td {
|
||||
padding: 0.4em 6px;
|
||||
}
|
||||
|
||||
table.directory td.desc {
|
||||
border: 0;
|
||||
}
|
||||
|
||||
table.directory tr.even {
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
table.directory tr {
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue