/* 
    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|Raleway:400|Open+Sans|Source+Code+Pro); /* DebuggingBook */


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

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 purple, too */
/* should be purple, 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: #b070a0!important;
}

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


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