/* 
    CSS stylesheet for fuzzingbook

    This is used for the JB HTML version.
*/

/* Loading fonts in Jupyter */
@import url(https://fonts.googleapis.com/css?family=Fira+Mono:400,500,700|Patua+One|Open+Sans|Source+Code+Pro);


/* Fonts */
h1, h2, h3, h4, h5 {
	font-family: 'Patua One', Helvetica, Arial, sans-serif;
}

body {
  font-family: 'Open Sans', sans-serif;
}

code, kbd, pre, samp {
  font-family: 'Fira Mono', 'Source Code Pro', monospace;
}

.CodeMirror pre {
  font-family: 'Fira Mono', 'Source Code Pro', monospace;
}


/* Headers are dark red, too */
/* should be #B03A2E, but must work in dark & light mode */
/* Alas, the [data-theme="light"] selector has no effect: https://pydata-sphinx-theme.readthedocs.io/en/v0.9.0/user_guide/customizing.html*/ 

h1, h2, h3 {
    color: #cb4334!important;
}

/* And links also come in shades of red */
a, button {
    color: #cb4334!important;
}


svg a {
    text-decoration: none!important;
}
