Added styling for code blocks for better readability

This commit is contained in:
Anton Roslund
2025-02-17 19:46:47 +01:00
parent 8f7ac0fae9
commit df5353ba2b
+12 -1
View File
@@ -22,5 +22,16 @@ Might want to allow editing
/* Change the color of the doc rightside sidebar links */
.td-sidebar-toc a { color: grey !important; }
/* Hide links to the las change commit*/
/*
Hide links to the last change commit.
Ugly workaround that leves to colon ":"
*/
.td-page-meta__lastmod a { display: none; }
/* Formating of inline <code> blocks */
code {
background-color: #f0f0f0;
color: #555555 !important;
padding: 2px 4px;
border-radius: 4px;
}