| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /*
- * Copyright (c) 2012-2016 Daniele Bartolini and individual contributors.
- * License: https://github.com/taylor001/crown/blob/master/LICENSE
- */
- body {
- font-family: sans-serif;
- font-size: 14px;
- line-height: 1.6;
- color: #444;
- margin: 40px auto;
- max-width: 650px;
- padding: 0 10px;
- background-color: #f6f6f6;
- }
- div.topic {
- border: 1px solid #aaa;
- background-color: #f9f9f9;
- margin: 0;
- }
- cite {
- font-family: monospace;
- font-style: normal;
- background-color: #fbfbfb;
- border-radius: 2px;
- border-width: 1px;
- border-style: solid;
- border-color: #dedede;
- padding: 1px 7px 1px 7px;
- }
- blockquote {
- margin-left: 0;
- margin-top: 0;
- margin-bottom: 16px;
- padding: 0 1em;
- border-left: 0.25em solid #ddd;
- }
- pre.code {
- margin-left: 0;
- margin-right: 0;
- padding: 16px;
- overflow: auto;
- }
- h1, h2, h3 {
- line-height:1.2
- }
- a {
- color: #4078c0;
- text-decoration: none;
- }
- a:hover {
- text-decoration: underline;
- }
- a:visited {
- color: #4078c0;
- }
- a.toc-backref {
- color: #4078c0;
- }
|