Skip to content

Commit

Permalink
update gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
necropola committed Jan 9, 2024
1 parent da8cc48 commit 78a07a7
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
@import "{{ site.theme }}";

:root {
--sans-font: Noto, "Segoe UI", Calibri, Arial, Helvetica, sans-serif;
--mono-font: Consolas, "Noto Sans Mono", "Bitstream Vera Sans Mono", Menlo, Monaco, monospace;
--base-font-size: 1rem;
--medium-font-size: .9rem;
--mono-font-size: .8125rem;
--small-font-size: .8rem;
--tiny-font-size: .625rem;

--logo-red: #D04949;
--logo-green: #00C25E;
--logo-blue: #3D67FF;
Expand All @@ -16,9 +24,15 @@
--border: var(--logo-gray);
}

body {
font-family: var(--sans-font);
font-size: var(--base-font-size);
}

code, pre {
background-color: inherit;
font-size: .8125rem;
font-family: var(--mono-font);
font-size: var(--mono-font-size);
}

code {
Expand Down Expand Up @@ -54,6 +68,8 @@ p, ul, li, blockquote {
}

h1, h2, h3, h4, h5, h6 {
font-family: inherit;
letter-spacing: inherit;
margin: 1rem 0 0 0;
}

Expand All @@ -72,6 +88,7 @@ th, td {
}

th {
font-family: inherit;
font-weight: bold;
color: inherit;
background: inherit;
Expand Down

0 comments on commit 78a07a7

Please sign in to comment.