Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: adjust font stack and fix typo in css #54

Merged
merged 2 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jsonresume/jsonresume-theme-class",
"version": "0.4.1",
"version": "0.4.2",
"description": "Class Theme for JSON Resume",
"author": "Seth Falco",
"license": "MIT",
Expand Down
12 changes: 6 additions & 6 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ body {
--header-h2-fg-color: #f3f3f3;
--header-bg-color: #1866c3;
--link-color: #3061a5;
--seperator-color: #e2e2e2;
--separator-color: #e2e2e2;

margin: 0;
color: var(--fg-color);
background: var(--bg-color);
font-size: 15px;
font-family: 'Nimbus Sans', Helvetica, Arial, Roboto, 'Liberation Sans', 'DejaVu Sans', Arimo, sans-serif;
font-family: Roboto, 'Helvetica Neue', 'Arial Nova', 'Liberation Sans', Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
Expand All @@ -22,7 +22,7 @@ body {
--header-h2-fg-color: #eee;
--header-bg-color: #1b1b1b;
--link-color: #70a1e5;
--seperator-color: #939393
--separator-color: #939393
}
}

Expand Down Expand Up @@ -70,7 +70,7 @@ header h2 {

#basics {
margin-bottom: 10px;
border-bottom: 1px var(--seperator-color) solid;
border-bottom: 1px var(--separator-color) solid;
}

.split {
Expand Down Expand Up @@ -119,7 +119,7 @@ header h2 {
#work,
#volunteer {
padding-bottom: 5px;
border-bottom: 1px var(--seperator-color) solid;
border-bottom: 1px var(--separator-color) solid;
}

#work .item,
Expand All @@ -129,7 +129,7 @@ header h2 {

#skills {
margin-bottom: 10px;
border-bottom: 1px var(--seperator-color) solid;
border-bottom: 1px var(--separator-color) solid;
padding-bottom: 5px;
overflow: hidden;
}
Expand Down
Loading