mirror of
https://github.com/davrot/pytutorial.git
synced 2025-04-19 05:36:42 +02:00
Update default.html
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
parent
2e5e4d2b6e
commit
365c951fff
1 changed files with 29 additions and 0 deletions
|
@ -14,6 +14,35 @@
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
<style>
|
||||||
|
.language-shell.highlighter-rouge {
|
||||||
|
/* Your style properties here */
|
||||||
|
background-color: #f0f0f0; /* Example background color */
|
||||||
|
color: #333; /* Example text color */
|
||||||
|
padding: 10px; /* Example padding */
|
||||||
|
border: 1px solid #ccc; /* Example border */
|
||||||
|
/* Add other styling properties as needed */
|
||||||
|
}
|
||||||
|
.language-python {
|
||||||
|
/* New styles for Python code */
|
||||||
|
background-color: #f7f7f7; /* Light grey background */
|
||||||
|
color: #202020; /* Dark grey text color */
|
||||||
|
padding: 10px; /* Padding around the code block */
|
||||||
|
border-left: 5px solid #3572A5; /* Python-themed highlight line */
|
||||||
|
font-family: 'Courier New', monospace; /* Monospaced font for code */
|
||||||
|
/* Add other styling properties as needed */
|
||||||
|
}
|
||||||
|
.language-matlab {
|
||||||
|
/* New styles for MATLAB code */
|
||||||
|
background-color: #FFFFCC; /* Light yellow background */
|
||||||
|
color: #0052cc; /* MATLAB blue text color */
|
||||||
|
padding: 10px; /* Padding around the code block */
|
||||||
|
border-left: 5px solid #0072BD; /* MATLAB-themed highlight line */
|
||||||
|
font-family: 'Courier New', monospace; /* Monospaced font for code */
|
||||||
|
/* Add other styling properties as needed */
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
Loading…
Add table
Reference in a new issue