123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274 |
- body {
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 12pt;
- line-height: 1.5;
- max-width: 70em;
- margin: auto;
- padding: 1em;
- }
- a {
- color: #337ab7;
- text-decoration: none;
- }
- a:hover,
- a:focus {
- color: #23527c;
- text-decoration: underline;
- }
- dt {
- font-weight: bold;
- }
- p {
- text-align: justify;
- word-wrap: break-word;
- }
- blockquote {
- border-left: solid thick #d4d4d4;
- padding-left: 1em;
- }
- /* Code */
- pre {
- font-size: 10pt;
- background: #f5f5f5;
- border: solid thin #d4d4d4;
- padding: 0.5em;
- }
- pre[class*="language-"] {
- background: #f5f5f5;
- padding: 0;
- }
- code,
- code[class*="language-"] {
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
- font-size: 10pt;
- }
- /* Key */
- kbd {
- padding: 0.2em 0.4em;
- font-size: 75%;
- color: #fff;
- background: #333;
- border-radius: 0.2em;
- }
- kbd kbd {
- padding: 0;
- font-size: 100%;
- font-weight: bold;
- }
- /* Figure */
- figure {
- text-align: center;
- }
- figcaption {
- margin-top: 1em;
- }
- /* Table */
- table {
- margin: auto;
- border: solid thin #d4d4d4;
- border-collapse: collapse;
- }
- table caption {
- margin: 1em 0em;
- }
- table th,
- table td {
- border: solid thin #d4d4d4;
- padding: 0.2em 0.5em;
- }
- table th {
- background: #f5f5f5;
- }
- /* Footnotes */
- .footnote {
- margin: 0 0 0 0.5em;
- font-size: 10pt;
- }
- p .footnote:first-of-type {
- margin-top: 0.5em;
- }
- .footnote-num {
- margin-right: 0.5em;
- }
- /* References */
- .references p {
- text-align: left;
- }
- /* Custom Stuff */
- .file {
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
- font-size: 10pt;
- }
- .file:before {
- font-family: FontAwesome;
- content: "\f15b";
- display: inline-block;
- padding-right: 0.5em;
- }
- /* ------------------------------------------------------------ Screen Style */
- @media screen {
- body {
- color: #333;
- }
- header, nav, section.level1 {
- background-color: #fdfdfd;
- border: solid thin #d4d4d4;
- padding: 1em;
- margin: 1em 0;
- }
- h1 {
- margin-top: 0;
- }
- hr {
- border: none;
- border-top: solid thin #d4d4d4;
- }
- pre {
- overflow-x: auto;
- }
- .container {
- margin: auto;
- }
- /* Title */
- .title, .subtitle, .authors, .date {
- text-align: center;
- padding: 0em;
- margin: 0em;
- }
- .title {
- font-size: 24pt;
- }
- .subtitle {
- font-size: 17pt;
- }
- .subtitle:empty {
- display: none;
- }
- .authors, .date {
- font-size: 12pt;
- margin: 1em 0em;
- }
- .authors li {
- list-style-type: none;
- display: inline;
- margin: 0em 2em;
- }
- /* TOC */
- nav ul {
- margin: 0 0 0 1em;
- padding: 0
- }
- nav li {
- list-style: none;
- line-height: 1.7;
- }
- nav > ul > li {
- margin: 0 0 1em 0;
- }
- .toc-section-number,
- .header-section-number {
- padding-right: 0.5em;
- }
- }
- /* -------------------------------------------------------- Responsive Stuff */
- @media screen and (min-width: 768px) {
- .container {
- width: 750px;
- }
- nav {
- columns: 2;
- }
- }
- @media screen and (min-width: 992px) {
- .container {
- width: 970px;
- }
- }
- @media screen {
- img {
- display: block;
- margin: auto;
- max-width: 100%;
- height: auto;
- }
- }
- /* ------------------------------------------------------------- Print Style */
- @media print {
- @page {
- size: A4;
- margin: 25mm;
- }
- header, nav {
- display: none;
- }
- hr {
- border: none;
- border-top: solid thin black;
- }
- a {
- color: #000;
- text-decoration: none;
- }
- p, pre, table, blockquote, figure {
- page-break-inside: avoid;
- }
- pre,
- pre[class*="language-"],
- pre[class*="language-"] > code[data-language] {
- background: none;
- }
- h1 {
- page-break-before: always;
- }
- }
|