Index

joshstock.in / 76ff7a3

Source for serving and static templating/compiling of https://joshstock.in.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
15814 Jan 2023 23:375aaa26aWebsite rewriteJosh Stockin1590G

Blob @ joshstock.in / site / style / _fonts.scss

text/plain1497 bytesdownload raw
1// _fonts.scss
2// Fonts are stored in the S3 bucket, not the local filesystem.
3
4@font-face {
5 font-family: 'Chivo';
6 src: url(/static/fonts/Chivo-Regular.ttf) format('truetype');
7 font-weight: 400;
8 font-style: normal;
9}
10@font-face {
11 font-family: 'Chivo';
12 src: url(/static/fonts/Chivo-Italic.ttf) format('truetype');
13 font-weight: 400;
14 font-style: italic;
15}
16@font-face {
17 font-family: 'Chivo';
18 src: url(/static/fonts/Chivo-Black.ttf) format('truetype');
19 font-weight: 900;
20 font-style: normal;
21}
22@font-face {
23 font-family: 'Chivo';
24 src: url(/static/fonts/Chivo-BlackItalic.ttf) format('truetype');
25 font-weight: 900;
26 font-style: italic;
27}
28
29@font-face {
30 font-family: 'Fira Sans';
31 src: url(/static/fonts/FiraSans-Regular.ttf) format('truetype');
32 font-weight: 400;
33 font-style: normal;
34}
35@font-face {
36 font-family: 'Fira Sans';
37 src: url(/static/fonts/FiraSans-Italic.ttf) format('truetype');
38 font-weight: 400;
39 font-style: italic;
40}
41@font-face {
42 font-family: 'Fira Sans';
43 src: url(/static/fonts/FiraSans-Bold.ttf) format('truetype');
44 font-weight: 700;
45 font-style: normal;
46}
47@font-face {
48 font-family: 'Fira Sans';
49 src: url(/static/fonts/FiraSans-BoldItalic.ttf) format('truetype');
50 font-weight: 700;
51 font-style: italic;
52}
53
54@font-face {
55 font-family: 'Fira Mono';
56 src: url(/static/fonts/FiraMono-Regular.ttf) format('truetype');
57 font-weight: 400;
58 font-style: monospace;
59}
60