| /* Asciidoctor default stylesheet | MIT License | http://asciidoctor.org */ |
| |
| @import url(https://fonts.googleapis.com/css?family=Ubuntu); |
| @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:#FFFFFF; |
| --primarycolor:#E95420; |
| --secondarycolor:#333333; |
| --tertiarycolor: #772953; |
| --sidebarbackground:#CCC; |
| --linkcolor:#b71c1c; |
| --linkcoloralternate:#f44336; |
| --white:#FFFFFF; |
| --black:#000000; |
| } |
| |
| /* Text styles */ |
| body{font-family: "Ubuntu",sans-serif;} |
| |
| h1,h2{color:var(--primarycolor) !important;font-family:"Ubuntu",sans-serif;} |
| h3,h4,h5,h6{color:var(--secondarycolor);font-family: "Ubuntu",sans-serif;} |
| .title{color:(--primarycolor) !important;font-family:"Ubuntu",sans-serif;font-style: normal; font-weight: normal;} |
| p{font-family: "Ubuntu",sans-serif ! important} |
| #toc.toc2 a:link{color:white;} |
| code{background-color: var(--secondarycolor) !important;color:var(--white)} |
| |
| |
| /* Table styles */ |
| th{background-color: var(--tertiarycolor);color:var(--white) !important;} |
| |
| #toc.toc2{background-color:#2C001E;color:white;} |
| #toc.toc2.a{color:white;} |
| #toctitle{color:#E95420;} |
| |
| /* Responsiveness fixes */ |
| video { |
| max-width: 100%; |
| } |
| |
| @media all and (max-width: 600px) { |
| table { |
| width: 55vw!important; |
| font-size: 3vw; |
| } |