| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /*
- * 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;
- }
- 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;
- }
- 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;
- }
|