| /* Asciidoctor default stylesheet | MIT License | http://asciidoctor.org */ |
| |
| @import url(https://fonts.googleapis.com/css?family=Noto+Sans); |
| @import "asciidoctor.css"; /* Default asciidoc style framework - important */ |
| |
| /* CUSTOMISATIONS */ |
| /* Change the values in root for quick customisation. If you want even more fine grain... venture further. */ |
| :root{ |
| --maincolor:#282c34; |
| --primarycolor:#f39c12; |
| --secondarycolor:#03a9f4; |
| --tertiarycolor:#4db6ac; |
| --sidebarbackground:#21252b; |
| --linkcolor:#f44336; |
| --linkcoloralternate:#ff9800; |
| --white:#FFFFFF; |
| } |
| |
| /* Text styles */ |
| |
| body{font-family: "Noto Sans",sans-serif;background-color: var(--maincolor);color:var(--white);} |
| |
| h1{color:var(--primarycolor) !important;font-family:"Noto Sans",sans-serif;} |
| h2,h3,h4,h5,h6{color:var(--secondarycolor) !important;font-family:"Noto Sans",sans-serif;} |
| .title{color:var(--white) !important;font-family:"Noto Sans",sans-serif;font-style: normal; font-weight: normal;} |
| p{font-family: "Noto Sans",sans-serif ! important} |
| #toc.toc2 a:link{color:var(--linkcolor);} |
| blockquote{color:var(--tertiarycolor) !important} |
| .quoteblock{color:var(--white)} |
| code{color:var(--linkcoloralternate);background-color: var(--sidebarbackground) !important} |
| |
| |
| /* Table styles */ |
| th{background-color: var(--maincolor);color:var(--white) !important;} |
| td{background-color: var(--maincolor);color: var(--linkcoloralternate) !important} |
| |
| |
| #toc.toc2{background-color:var(--sidebarbackground);} |
| #toctitle{color:var(--white);} |
| |
| /* Responsiveness fixes */ |
| video { |
| max-width: 100%; |
| } |
| |
| @media all and (max-width: 600px) { |
| table { |
| width: 55vw!important; |
| font-size: 3vw; |
| } |