Skip to content

Commit

Permalink
Fixed font names
Browse files Browse the repository at this point in the history
  • Loading branch information
legoraft committed Jun 24, 2024
1 parent eb95459 commit 9839e24
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
44 changes: 22 additions & 22 deletions template/css/fonts.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,144 +43,144 @@

/* Import for the Source Sans Pro font (regular) */
@font-face {
font-family: Source Sans Pro;
font-family: "Source Sans Pro";
src: url(../fonts/source-sans-pro/SourceSansPro-ExtraLight.otf);
font-weight: 200;
}

@font-face {
font-family: Source Sans Pro;
font-family: "Source Sans Pro";
src: url(../fonts/source-sans-pro/SourceSansPro-Light.otf);
font-weight: 300;
}

@font-face {
font-family: Source Sans Pro;
font-family: "Source Sans Pro";
src: url(../fonts/source-sans-pro/SourceSansPro-Regular.otf);
font-weight: normal;
}

@font-face {
font-family: Source Sans Pro;
font-family: "Source Sans Pro";
src: url(../fonts/source-sans-pro/SourceSansPro-Semibold.otf);
font-weight: 500;
}

@font-face {
font-family: Source Sans Pro;
font-family: "Source Sans Pro";
src: url(../fonts/source-sans-pro/SourceSansPro-Bold.otf);
font-weight: 600;
}

@font-face {
font-family: Source Sans Pro;
font-family: "Source Sans Pro";
src: url(../fonts/source-sans-pro/SourceSansPro-Black.otf);
font-weight: 700;
}

/* Import for the Source Sans Pro font (italic) */
@font-face {
font-family: Source Sans Pro;
font-family: "Source Sans Pro";
src: url(../fonts/source-sans-pro/SourceSansPro-ExtraLightIt.otf);
font-weight: 200;
font-style: italic;
}

@font-face {
font-family: Source Sans Pro;
font-family: "Source Sans Pro";
src: url(../fonts/source-sans-pro/SourceSansPro-LightIt.otf);
font-weight: 300;
font-style: italic;
}

@font-face {
font-family: Source Sans Pro;
font-family: "Source Sans Pro";
src: url(../fonts/source-sans-pro/SourceSansPro-It.otf);
font-weight: normal;
font-style: italic;
}

@font-face {
font-family: Source Sans Pro;
font-family: "Source Sans Pro";
src: url(../fonts/source-sans-pro/SourceSansPro-SemiboldIt.otf);
font-weight: 500;
font-style: italic;
}

@font-face {
font-family: Source Sans Pro;
font-family: "Source Sans Pro";
src: url(../fonts/source-sans-pro/SourceSansPro-BoldIt.otf);
font-weight: 600;
font-style: italic;
}

@font-face {
font-family: Source Sans Pro;
font-family: "Source Sans Pro";
src: url(../fonts/source-sans-pro/SourceSansPro-BlackIt.otf);
font-weight: 700;
font-style: italic;
}

/* Import for the Source Code Pro font (regular) */
@font-face {
font-family: Source Code Pro;
font-family: "Source Code Pro";
src: url(../fonts/source-code-pro/SourceCodePro-ExtraLight.otf);
font-weight: 200;
}

@font-face {
font-family: Source Code Pro;
font-family: "Source Code Pro";
src: url(../fonts/source-code-pro/SourceCodePro-Light.otf);
font-weight: 300;
}

@font-face {
font-family: Source Code Pro;
font-family: "Source Code Pro";
src: url(../fonts/source-code-pro/SourceCodePro-Regular.otf);
font-weight: normal;
}

@font-face {
font-family: Source Code Pro;
font-family: "Source Code Pro";
src: url(../fonts/source-code-pro/SourceCodePro-Medium.otf);
font-weight: 500;
}

@font-face {
font-family: Source Code Pro;
font-family: "Source Code Pro";
src: url(../fonts/source-code-pro/SourceCodePro-Semibold.otf);
font-weight: 600;
}

@font-face {
font-family: Source Code Pro;
font-family: "Source Code Pro";
src: url(../fonts/source-code-pro/SourceCodePro-Bold.otf);
font-weight: 700;
}

@font-face {
font-family: Source Code Pro;
font-family: "Source Code Pro";
src: url(../fonts/source-code-pro/SourceCodePro-Black.otf);
font-weight: 800;
}

/* Import for the Source Sans Pro font (italic) */
@font-face {
font-family: Source Code Pro;
font-family: "Source Code Pro";
src: url(../fonts/source-code-pro/SourceCodePro-ExtraLightIt.otf);
font-weight: 200;
font-style: italic;
}

@font-face {
font-family: Source Code Pro;
font-family: "Source Code Pro";
src: url(../fonts/source-code-pro/SourceCodePro-LightIt.otf);
font-weight: 300;
font-style: italic;
}

@font-face {
font-family: Source Code Pro;
font-family: "Source Code Pro";
src: url(../fonts/source-code-pro/SourceCodePro-It.otf);
font-weight: normal;
font-style: italic;
Expand Down
4 changes: 2 additions & 2 deletions template/css/post_style.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ article p {
article h1 {
font-size: 2rem;
color: var(--primary-fg);
font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
}

article h2 {
font-size: 1.5rem;
color: var(--primary-fg);
font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
font-family: "Source Sans Pro", Arial, Helvetica, sans-serif;
}

code {
Expand Down

0 comments on commit 9839e24

Please sign in to comment.