| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /*
- * Copyright (c) 2012-2016 Daniele Bartolini and individual contributors.
- * License: https://github.com/taylor001/crown/blob/master/LICENSE
- */
- @import url(html4css1.css);
- .document {
- font-family: sans-serif;
- font-size: 11pt;
- line-height: 145%;
- color: #1f1f1f;
- }
- div.topic {
- border: 1px solid #aaa;
- background-color: #f9f9f9;
- }
- tt.literal {
- background-color: #fafafa;
- border-radius: 2px;
- border-width: 1px;
- border-style: solid;
- border-color: #e7e7e7;
- padding: 1px 7px 1px 7px;
- }
- a {
- color: #4078c0;
- text-decoration: none;
- }
- a:hover {
- text-decoration: underline;
- }
- a:visited {
- color: #4078c0;
- }
- a.toc-backref {
- color: #4078c0;
- }
- blockquote {
- margin-left: 0;
- margin-top: 0;
- margin-bottom: 16px;
- padding: 0 1em;
- border-left: 0.25em solid #ddd;
- }
|