382 lines
7.8 KiB
CSS
382 lines
7.8 KiB
CSS
/*
|
|
Gollum v3 Template
|
|
*/
|
|
|
|
/* margin & padding reset*/
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
|
|
html, body {
|
|
color: black;
|
|
}
|
|
|
|
body {
|
|
font: 13.34px helvetica,arial,freesans,clean,sans-serif;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
img {
|
|
border: 0;
|
|
}
|
|
|
|
#template {
|
|
font-size: 14px;
|
|
line-height: 1.4;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
/* Link Colors */
|
|
a.absent {
|
|
color: #c00;
|
|
}
|
|
|
|
/* Primary Body Copy */
|
|
#template p {
|
|
margin: 1em 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* ReST first graf in nested list */
|
|
#template * li p.first {
|
|
display: inline-block;
|
|
}
|
|
|
|
/* Headings */
|
|
#template h1, #template h2, #template h3,
|
|
#template h4, #template h5, #template h6 {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#template h1 {
|
|
border-bottom: 1px solid #ccc;
|
|
font-size: 33px; /* was 32, GH is 33px */
|
|
line-height: normal;
|
|
padding: .08em 0 0 0;
|
|
margin: 0;
|
|
}
|
|
|
|
#template h2 {
|
|
font-size: 22px;
|
|
line-height: normal;
|
|
margin: 22px 0 0;
|
|
padding: 7px 0 0;
|
|
}
|
|
|
|
#template h3 {
|
|
font-size: 16px;
|
|
line-height: 26px;
|
|
padding: 26px 0 0;
|
|
}
|
|
|
|
#template h4 {
|
|
font-size: 14px;
|
|
line-height: 26px;
|
|
padding: 18px 0 4px;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
#template h5 {
|
|
font-size: 13px;
|
|
line-height: 26px;
|
|
margin-bottom: -19px;
|
|
padding: 14px 0 0;
|
|
font-weight: bold;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
#template h6 {
|
|
color: #666;
|
|
font-size: 14px;
|
|
line-height: 26px;
|
|
margin-bottom: -19px;
|
|
padding: 18px 0 0;
|
|
font-weight: normal;
|
|
font-variant: italic;
|
|
}
|
|
|
|
#template hr {
|
|
background-color: #ccc;
|
|
color: #ccc;
|
|
border: 2px solid #ccc;
|
|
margin: 20px 0;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Border Reset for headers with horizontal rules */
|
|
#template > h2:first-child,
|
|
#template > h1:first-child {
|
|
margin: 12px 0 0;
|
|
padding: 10px 0 0;
|
|
}
|
|
|
|
|
|
/* Lists, Blockquotes & Such */
|
|
#template ul,
|
|
#template ol {
|
|
margin-top: 1.5em;
|
|
margin-left: 2.6em;
|
|
}
|
|
|
|
/* Nested Lists */
|
|
#template ul li,
|
|
#template ol li,
|
|
#template ul li ul,
|
|
#template ol li ol,
|
|
#template ul li ol,
|
|
#template ol li ul,
|
|
#template ul ul,
|
|
#template ol ol {
|
|
padding: 0;
|
|
margin: .5em 0;
|
|
}
|
|
|
|
#template dl {
|
|
margin: 0;
|
|
padding: 20px 0 0;
|
|
}
|
|
|
|
#template dl dt {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
line-height: normal;
|
|
margin: 0;
|
|
padding: 20px 0 0;
|
|
}
|
|
|
|
#template dl dt:first-child {
|
|
padding: 0;
|
|
}
|
|
|
|
#template dl dd {
|
|
font-size: 13px;
|
|
margin: 0;
|
|
padding: 3px 0 0;
|
|
}
|
|
|
|
/* Tables */
|
|
#template table {
|
|
border-collapse: collapse;
|
|
margin: 20px 0 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#template table * tr {
|
|
border-top: 1px solid #ccc;
|
|
background-color: #fff;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#template table * tr:nth-child(2n) {
|
|
background-color: #f8f8f8;
|
|
}
|
|
|
|
#template table * tr th,
|
|
#template table * tr td {
|
|
border: 1px solid #ccc;
|
|
text-align: left;
|
|
margin: 0;
|
|
padding: 6px 13px;
|
|
}
|
|
|
|
/* Images & Stuff */
|
|
#template img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
/* Gollum Image Tags */
|
|
|
|
/* Framed */
|
|
#template span.frame {
|
|
display: block;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#template span.frame > span {
|
|
border: 1px solid #ddd;
|
|
display: block;
|
|
float: left;
|
|
overflow: hidden;
|
|
margin: 13px 0 0;
|
|
padding: 7px;
|
|
width: auto;
|
|
}
|
|
|
|
#template span.frame span img {
|
|
display: block;
|
|
float: left;
|
|
}
|
|
|
|
#template span.frame span span {
|
|
clear: both;
|
|
color: #333;
|
|
display: block;
|
|
padding: 5px 0 0;
|
|
}
|
|
|
|
#template span.align-center {
|
|
display: block;
|
|
overflow: hidden;
|
|
clear: both;
|
|
}
|
|
|
|
#template span.align-center > span {
|
|
display: block;
|
|
overflow: hidden;
|
|
margin: 13px auto 0;
|
|
text-align: center;
|
|
}
|
|
|
|
#template span.align-center span img {
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
|
|
#template span.align-right {
|
|
display: block;
|
|
overflow: hidden;
|
|
clear: both;
|
|
}
|
|
|
|
#template span.align-right > span {
|
|
display: block;
|
|
overflow: hidden;
|
|
margin: 13px 0 0;
|
|
text-align: right;
|
|
}
|
|
|
|
#template span.align-right span img {
|
|
margin: 0;
|
|
text-align: right;
|
|
}
|
|
|
|
#template span.float-left {
|
|
display: block;
|
|
margin-right: 13px;
|
|
overflow: hidden;
|
|
float: left;
|
|
}
|
|
|
|
#template span.float-left span {
|
|
margin: 13px 0 0;
|
|
}
|
|
|
|
#template span.float-right {
|
|
display: block;
|
|
margin-left: 13px;
|
|
overflow: hidden;
|
|
float: right;
|
|
}
|
|
|
|
#template span.float-right > span {
|
|
display: block;
|
|
overflow: hidden;
|
|
margin: 13px auto 0;
|
|
text-align: right;
|
|
}
|
|
|
|
|
|
/* Code */
|
|
#template code, #template tt {
|
|
background-color: #f8f8f8;
|
|
border: 1px solid #dedede;
|
|
font-size: 13px;
|
|
padding: 0;
|
|
|
|
-moz-border-radius: 3px;
|
|
-webkit-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
#template .highlight pre, #template pre {
|
|
background-color: #f8f8f8;
|
|
border: 1px solid #ccc;
|
|
font-size: 13px;
|
|
line-height: 19px;
|
|
overflow: auto;
|
|
padding: 6px 10px;
|
|
|
|
-moz-border-radius: 3px;
|
|
-webkit-border-radius: 3px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
pre, code {
|
|
font: 12px 'Bitstream Vera Sans Mono','Courier',monospace
|
|
}
|
|
|
|
#template pre code, #template pre tt {
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
/*
|
|
Highlight rules from pull req 191
|
|
https://github.com/eboto/gollum/commit/5df09477abf4a04c82c7fcaa2bd7ee2a85e7ec82
|
|
*/
|
|
#template .highlight { background:#fff; }
|
|
#template .highlight .c { color:#998;font-style:italic; }
|
|
#template .highlight .err { color:#a61717;background-color:#e3d2d2; }
|
|
#template .highlight .k { font-weight:bold; }
|
|
#template .highlight .o { font-weight:bold; }
|
|
#template .highlight .cm { color:#998;font-style:italic; }
|
|
#template .highlight .cp { color:#999;font-weight:bold; }
|
|
#template .highlight .c1 { color:#998;font-style:italic; }
|
|
#template .highlight .cs { color:#999;font-weight:bold;font-style:italic; }
|
|
#template .highlight .gd { color:#000;background-color:#fdd; }
|
|
#template .highlight .gd .x { color:#000;background-color:#faa; }
|
|
#template .highlight .ge { font-style:italic; }
|
|
#template .highlight .gr { color:#a00; }
|
|
#template .highlight .gh { color:#999; }
|
|
#template .highlight .gi { color:#000;background-color:#dfd; }
|
|
#template .highlight .gi .x { color:#000;background-color:#afa; }
|
|
#template .highlight .go { color:#888; }
|
|
#template .highlight .gp { color:#555; }
|
|
#template .highlight .gs { font-weight:bold; }
|
|
#template .highlight .gu { color:#800080;font-weight:bold; }
|
|
#template .highlight .gt { color:#a00; }
|
|
#template .highlight .kc { font-weight:bold; }
|
|
#template .highlight .kd { font-weight:bold; }
|
|
#template .highlight .kp { font-weight:bold; }
|
|
#template .highlight .kr { font-weight:bold; }
|
|
#template .highlight .kt { color:#458;font-weight:bold; }
|
|
#template .highlight .m { color:#099; }
|
|
#template .highlight .s { color:#d14; }
|
|
#template .highlight .na { color:#008080; }
|
|
#template .highlight .nb { color:#0086B3; }
|
|
#template .highlight .nc { color:#458;font-weight:bold; }
|
|
#template .highlight .no { color:#008080; }
|
|
#template .highlight .ni { color:#800080; }
|
|
#template .highlight .ne { color:#900;font-weight:bold; }
|
|
#template .highlight .nf { color:#900;font-weight:bold; }
|
|
#template .highlight .nn { color:#555; }
|
|
#template .highlight .nt { color:#000080; }
|
|
#template .highlight .nv { color:#008080; }
|
|
#template .highlight .ow { font-weight:bold; }
|
|
#template .highlight .w { color:#bbb; }
|
|
#template .highlight .mf { color:#099; }
|
|
#template .highlight .mh { color:#099; }
|
|
#template .highlight .mi { color:#099; }
|
|
#template .highlight .mo { color:#099; }
|
|
#template .highlight .sb { color:#d14; }
|
|
#template .highlight .sc { color:#d14; }
|
|
#template .highlight .sd { color:#d14; }
|
|
#template .highlight .s2 { color:#d14; }
|
|
#template .highlight .se { color:#d14; }
|
|
#template .highlight .sh { color:#d14; }
|
|
#template .highlight .si { color:#d14; }
|
|
#template .highlight .sx { color:#d14; }
|
|
#template .highlight .sr { color:#009926; }
|
|
#template .highlight .s1 { color:#d14; }
|
|
#template .highlight .ss { color:#990073; }
|
|
#template .highlight .bp { color:#999; }
|
|
#template .highlight .vc { color:#008080; }
|
|
#template .highlight .vg { color:#008080; }
|
|
#template .highlight .vi { color:#008080; }
|
|
#template .highlight .il { color:#099; }
|