Skip to content

Commit

Permalink
Actually, this doesn't look right.
Browse files Browse the repository at this point in the history
This reverts commit 4a654cc.
  • Loading branch information
jbzdarkid committed Sep 1, 2024
1 parent 4a654cc commit 9b67cb6
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 4 deletions.
Binary file removed resources/OpenSans-Bold-webfont.ttf
Binary file not shown.
Binary file added resources/OpenSans-Bold.ttf
Binary file not shown.
Binary file removed resources/OpenSans-Light-webfont.ttf
Binary file not shown.
Binary file added resources/OpenSans-Light.ttf
Binary file not shown.
Binary file removed resources/OpenSans-Regular-webfont.ttf
Binary file not shown.
Binary file added resources/OpenSans-Regular.ttf
Binary file not shown.
16 changes: 12 additions & 4 deletions resources/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,32 @@ https://github.com/christiannaths/Climacons-Font
/*src: url('https://github.com/christiannaths/Climacons-Font/raw/c24e8093c2d3d982a6c7b1bedb5eebc5ebf7d65f/Climacons.ttf')*/
}
/*
The OpenSans font family is available from https://open-sans.com
The OpenSans font family is available from Google Fonts.
It is licensed under Apache 2.0. For a full license, please see:
https://github.com/google/fonts/blob/master/apache/opensans/LICENSE.txt
*/
/*
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
* {
font-family: 'Open Sans', sans-serif;
font-weight: 300;
color: rgba(0, 0, 0, 0.8);
}
*/
@font-face {
font-family: 'OpenSans-Light';
font-display: block;
src: url('./OpenSans-Light-webfont.ttf');
src: url('./OpenSans-Light.ttf');
}
@font-face {
font-family: 'OpenSans-Regular';
font-display: block;
src: url('./OpenSans-Regular-webfont.ttf');
src: url('./OpenSans-Regular.ttf');
}
@font-face {
font-family: 'OpenSans-Bold';
font-display: block;
src: url('./OpenSans-Bold-webfont.ttf');
src: url('./OpenSans-Bold.ttf');
}
@keyframes spin {
0% { transform: rotate(0deg) translate(0px, -5px); }
Expand Down

0 comments on commit 9b67cb6

Please sign in to comment.