diff options
| author | Owen Jacobson <owen.jacobson@grimoire.ca> | 2013-05-21 16:45:21 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen.jacobson@grimoire.ca> | 2013-05-21 16:45:21 -0400 |
| commit | 0b43b9e3e64793f5a222a644ed5ab074d8fa1024 (patch) | |
| tree | fbf0416d5fe405e34be9f17faca1167b01926c6b /static/media/css/grimoire.css | |
| parent | c34412e851cf46c3d3e5ba27ab76eda0086c64b5 (diff) | |
| parent | bd268036ed4fd111f0ae3156c324acbf4d2707e7 (diff) | |
Merge branch 'templates'
Diffstat (limited to 'static/media/css/grimoire.css')
| -rw-r--r-- | static/media/css/grimoire.css | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/static/media/css/grimoire.css b/static/media/css/grimoire.css new file mode 100644 index 0000000..b680007 --- /dev/null +++ b/static/media/css/grimoire.css @@ -0,0 +1,107 @@ +/* typography */ +body { + font-family: 'Baskerville', 'Buenard', serif; + font-size: 20px; + line-height: 30px; +} + +code { + font-family: 'Menlo', monospace; + font-size: 80%; +} + +em { + font-style: italic; +} + +strong { + font-weight: bold; +} + +blockquote { + margin-left: 40px; + color: #555; +} + +:link { + text-decoration: none; +} + +hr { + border: none; + border-top: 1px solid #AAA; + margin-left: 80px; + margin-right: 80px; +} + +h1, h2, h3, h4, h5, h6 { + font-weight: bold; +} + +h1 { + font-size: 40px; + line-height: 60px; + margin-bottom: 15px; +} +h2 { + font-size: 30px; + line-height: 45px; + margin-bottom: 15px; +} +h3 { + font-size: 20px; + line-height: 30px; + margin-bottom: 15px; +} + +/* layout */ +#shell { + margin-left: auto; + margin-right: auto; + width: 840px; +} + +#shell > * { + margin-top: 15px; + margin-bottom: 15px; + padding: 0 10px; +} + +#article, +#listing { + padding-left: 50px; +} +h1, h2, h3, h4, h5, h6 { + margin-left: -40px; +} + +#article p, +#article pre, +#article ul, +#article ol, +#listing ul { + margin-bottom: 15px; +} + +#article pre { + margin-left: 40px; +} + +#article ul { + list-style-type: disc; +} +#article ol { + list-style-type: decimal; +} + +#article ul, +#article ol { + padding-left: 40px; +} + +#breadcrumbs li { + display: inline-block; +} +#breadcrumbs li.not-last:after { + content: '•'; +}
\ No newline at end of file |
