123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- body {
- background-color: #fff;
- margin: 1em auto;
- max-width: 800px;
- overflow: visible;
- padding-left: 2em;
- padding-right: 2em;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
- font-size: 16px;
- line-height: 24px;
- color: #333;
- }
- h1.title {
- text-align: center;
- font-weight: 600;
- }
- h4.author {
- text-align: center;
- }
- h4.date {
- text-align: center;
- }
- #TOC {
- clear: both;
- margin: 0 0 10px 0px;
- padding: 15px;
- width: 770px;
- border: 1px solid #CCCCCC;
- border-radius: 5px;
- background-color: #f6f6f6;
- font-size: 16px;
- line-height: 1.5;
- }
- #TOC .toctitle {
- font-weight: bold;
- font-size: 16px;
- margin-left: 5px;
- }
- #TOC ul {
- padding-left: 50px;
- margin-left: -1.5em;
- margin-top: 5px;
- margin-bottom: 5px;
- }
- #TOC ul ul {
- margin-left: -2em;
- }
- #TOC li {
- line-height: 20px;
- }
- table {
- margin: 1em auto;
- border-width: 1px;
- border-color: #DDDDDD;
- border-style: outset;
- border-collapse: collapse;
- }
- table th {
- border-width: 2px;
- padding: 5px;
- border-style: inset;
- }
- table td {
- border-width: 1px;
- border-style: inset;
- line-height: 18px;
- padding: 5px 5px;
- }
- table,
- table th,
- table td {
- border-left-style: none;
- border-right-style: none;
- }
- table thead,
- table tr.even {
- background-color: #f7f7f7;
- }
- p {
- margin: 0.5em 0;
- }
- blockquote {
- background-color: #f6f6f6;
- padding: 0.25em 0.75em;
- }
- hr {
- border-style: solid;
- border: none;
- border-top: 1px solid #777;
- margin: 28px 0;
- }
- dl {
- margin-left: 0;
- }
- dl dd {
- margin-bottom: 13px;
- margin-left: 13px;
- }
- dl dt {
- font-weight: bold;
- }
- ul {
- margin-top: 0;
- }
- ul li {
- list-style: circle outside;
- }
- ul ul {
- margin-bottom: 0;
- }
- pre,
- code {
- background-color: #f7f7f7;
- border-radius: 5px;
- color: #333;
- white-space: pre-wrap;
- /* Wrap long lines */
- }
- pre {
- border-radius: 5px;
- margin: 5px 0px 10px 0px;
- padding: 10px;
- }
- pre:not([class]) {
- background-color: #f7f7f7;
- }
- code {
- font-family: Menlo, Monaco, "Lucida Console", Consolas, "Courier New", monospace;
- font-size: 85%;
- }
- p>code,
- li>code {
- padding: 2px 0px;
- }
- div.figure {
- text-align: center;
- }
- img {
- background-color: #FFFFFF;
- padding: 2px;
- border: 1px solid #DDDDDD;
- border-radius: 3px;
- border: 1px solid #CCCCCC;
- margin: 0 5px;
- }
- h1 {
- margin-top: 25px;
- font-size: 35px;
- line-height: 40px;
- font-weight: 600;
- }
- h2 {
- border-bottom: 2px solid #f7f7f7;
- padding-top: 10px;
- padding-bottom: 2px;
- font-size: 145%;
- }
- h3 {
- border-bottom: 1px solid #f7f7f7;
- padding-top: 10px;
- font-size: 120%;
- }
- h4 {
- margin-left: 8px;
- font-size: 110%;
- font-weight: normal;
- }
- em {
- font-style: oblique;
- }
- emph {
- font-style: oblique;
- }
- h5,
- h6 {
- border-bottom: 1px solid #ccc;
- font-size: 105%;
- }
- a {
- color: #123d79;
- text-decoration: none;
- }
- a:hover {
- color: #007CC3;
- }
- a:visited {
- color: #581858;
- }
- a:visited:hover {
- color: #007CC3;
- }
- /* code highlight theme: highlight.js - tomorrow
- http://jmblog.github.io/color-themes-for-highlightjs/tomorrow/
- */
- code>span.kw {
- color: #4271ae;
- }
- /* Keyword */
- code>span.dt {
- color: #c82829;
- }
- /* DataType */
- code>span.dv {
- color: #f5871f;
- }
- /* DecVal (decimal values) */
- code>span.bn {
- color: #718c00;
- }
- /* BaseN */
- code>span.fl {
- color: #718c00;
- }
- /* Float */
- code>span.ch {
- color: #718c00;
- }
- /* Char */
- code>span.st {
- color: #718c00;
- }
- /* String */
- code>span.co {
- color: #8e908c;
- }
- /* Comment */
- code>span.ot {
- color: #4d4d4c;
- }
- /* OtherToken */
- code>span.al {
- color: #ff0000;
- }
- /* AlertToken */
- code>span.fu {
- color: #4271ae;
- }
- /* Function calls */
- code>span.er {
- color: #a61717;
- }
- /* ErrorTok */
- /* centering images */
- img {
- display: block;
- margin: 0 auto;
- }
|