Skip to content

Commit

Permalink
more updates
Browse files Browse the repository at this point in the history
  • Loading branch information
KorigamiK committed Sep 8, 2023
1 parent 80f25fc commit 33142ca
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion content/post/markdown-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ H<sub>2</sub>O

X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup>

Press <kbd><kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd></kbd> to end the session.
Press <kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd> to end the session.

Most <mark>salamanders</mark> are nocturnal, and hunt for insects, worms,
and other small creatures.
2 changes: 1 addition & 1 deletion themes/ossn-theme/static/css/common.css
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
--link-color: #AA0000;
--font-color: #121212;
--background-color: #FAFAFA;
--background-code: #F5F5F5;
--background-code: #e5e5F5;
--target-color: azure;
}

Expand Down
11 changes: 10 additions & 1 deletion themes/ossn-theme/static/css/content.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
}

.content blockquote {
border-left: black 2px solid;
border-left: var(--font-color) 2px solid;
font-style: italic;
padding: 1rem 0 1rem 2rem;
}
Expand Down Expand Up @@ -133,3 +133,12 @@
.content ol, .content ul {
margin-left: 1.5rem;
}

.content kbd {
background-color: var(--background-code);
border-radius: .2rem;
color: var(--link-color);
font-family: 'Latin Modern Mono', Courier, monospace;
padding: 0 .2rem;
border: 1px dashed var(--font-color);
}

0 comments on commit 33142ca

Please sign in to comment.