Make inline code easier to parse

This commit is contained in:
Salt 2020-09-23 20:01:46 -05:00
parent b5c71d951c
commit 79a84a1d78
1 changed files with 3 additions and 5 deletions

View File

@ -14,6 +14,7 @@
--link-hover: #3ea5f3;
--shadow: 8px -5px #d6d5d3;
--text: #414040;
--text-code: #a7674e;
}
html {
overflow-y: scroll;
@ -35,13 +36,10 @@ a {
a:hover {
color: var(--link-hover);
}
/* code */
code {
background: var(--text);
border-radius: 3px;
color: var(--background);
color: var(--text-code);
display: inline-block;
font-size: 11pt;
font-size: 12pt;
padding: 2px 4px;
}
dl {