diff options
author | Biswakalyan Bhuyan <biswa@surgot.in> | 2024-09-25 15:33:51 +0000 |
---|---|---|
committer | Biswakalyan Bhuyan <biswa@surgot.tech> | 2024-09-25 15:37:31 +0000 |
commit | f53a6a49c684e3cd88d8bd4a6c207ac6ff012d45 (patch) | |
tree | 5f59e7d6580215803ea9cc4e0925794bcbae3dcc | |
parent | 6fa71c7efadb990aad14d1c6a7833e9cae88436d (diff) | |
download | cgit-f53a6a49c684e3cd88d8bd4a6c207ac6ff012d45.tar.gz cgit-f53a6a49c684e3cd88d8bd4a6c207ac6ff012d45.tar.bz2 cgit-f53a6a49c684e3cd88d8bd4a6c207ac6ff012d45.zip |
108 files changed, 257 insertions, 9 deletions
diff --git a/about/about.md b/about/about.md index 7405a75..10b6ab9 100644 --- a/about/about.md +++ b/about/about.md @@ -1,14 +1,14 @@ <h1 style="text-align:center"><u>welcome to my git server</u></h1> ## Note -- Here you can find all my personal projects, cofnigs and dotflies. +- Here you can find all my personal projects, configs and dotflies. - You are free to clone/download change, modify, share my code. -- This git server is a part of [https://xgenos.me/](https://xgenos.me/) -- you can send patches, ideas, issues ot me [via email](mailto:biswa@xgenos.me) +- This git server is a part of [https://surgot.in/](https://surgot.in/) +- you can send patches, ideas, issues at me [via email](mailto:biswa@surgot.in) ## Server Backstory -Back then i was a newbie guy idk anything about tech i use to host my site at github pages i was curious to know how nginx works i always wished to watch the backend of the server i'd contacted with my collage teachers and wished them to let me look into the backedn of the server/website unfortunately my teachers where so dumb about that and they where using cpanel. (typical indian education system) +I was a newbie before, knew nothing about tech. I use to host my site at github pages curious to know how nginx works. I always wished to watch the backend of the server. I'd contact my collage teachers wishing that they will let me look into the backend of the server/website but unfortunately my teachers were so dumb about that, they were using cpanel (typical indian education system). -Any of my teachers and my friends aren't enthusiastic about tech, well i have to do things by myself so i thought to host everything myself. +None of my teachers or friends are enthusiastic about tech. I had to do everything by myself so I thought of hosting all by myself. <br><br> <p style="text-align:center"><u><i>Happy Coding</i><img src="https://media.giphy.com/media/VgCDAzcKvsR6OM0uWg/giphy.gif" width="40"></u></p> Binary files differdiff --git a/favicon.ico b/favicon.ico Binary files differindex d37c021..4c03cd4 100644 --- a/favicon.ico +++ b/favicon.ico diff --git a/filters/email-libravatar-hover.lua b/filters/email-libravatar-hover.lua new file mode 100755 index 0000000..f94a980 --- /dev/null +++ b/filters/email-libravatar-hover.lua @@ -0,0 +1,42 @@ +#!/usr/bin/env luajit51 +local digest = require("openssl.digest") + +-- Function to calculate MD5 hash of the input +function md5_hex(input) + print("Calculating MD5 for:", input) -- Debug print + local b = digest.new("md5"):final(input) + local x = "" + for i = 1, #b do + x = x .. string.format("%.2x", string.byte(b, i)) + end + print("MD5 Hash:", x) -- Debug print + return x +end + +-- Called when the filter opens +function filter_open(email, page) + print("Filter Open. Email:", email) -- Debug print + buffer = "" + hexdigest = md5_hex(email:sub(2, -2):lower()) + print("Hex Digest:", hexdigest) -- Debug print +end + +-- Called when the filter closes +function filter_close() + local baseurl = os.getenv("HTTPS") and "https://seccdn.libravatar.org/" or "http://cdn.libravatar.org/" + print("Base URL:", baseurl) -- Debug print + print("Hex Digest in filter_close:", hexdigest) -- Debug print + local avatar_url_small = baseurl .. "avatar/" .. hexdigest .. "?s=13&d=retro" + local avatar_url_large = baseurl .. "avatar/" .. hexdigest .. "?s=128&d=retro" + print("Avatar URL Small:", avatar_url_small) -- Debug print + print("Avatar URL Large:", avatar_url_large) -- Debug print + + html("<span class='libravatar'><img class='inline' src='" .. avatar_url_small .. "' /><img class='onhover' src='" .. avatar_url_large .. "' /></span>" .. buffer) + return 0 +end + +-- Called when writing to the filter +function filter_write(str) + print("Filter Write:", str) -- Debug print + buffer = buffer .. str +end diff --git a/filters/email-libravatar-hover.py b/filters/email-libravatar-hover.py new file mode 100755 index 0000000..352122b --- /dev/null +++ b/filters/email-libravatar-hover.py @@ -0,0 +1,39 @@ +#!/usr/bin/env python3 +import sys +import hashlib +import codecs +import os + +# Read and process the email address from command line arguments +email = sys.argv[1].lower().strip() +if email[0] == '<': + email = email[1:] +if email[-1] == '>': + email = email[:-1] + +# Read the page argument (not used in this script but passed for compatibility) +page = sys.argv[2] + +# Ensure correct encoding for stdin and stdout +sys.stdin = codecs.getreader("utf-8")(sys.stdin.detach()) +sys.stdout = codecs.getwriter("utf-8")(sys.stdout.detach()) + +# Calculate MD5 hash of the email +md5 = hashlib.md5(email.encode()).hexdigest() + +# Read the standard input to get the buffer text +buffer = sys.stdin.read().strip() + +# Determine the base URL based on HTTPS environment variable +baseurl = "https://seccdn.libravatar.org/" if os.getenv("HTTPS") else "http://cdn.libravatar.org/" + +# Generate the HTML output with Libravatar images +html_output = ( + f"<span class='libravatar'>" + f"<img class='inline' src='{baseurl}avatar/{md5}?s=13&d=retro' width='13' height='13' alt='Libravatar' />" + f"<img class='onhover' src='{baseurl}avatar/{md5}?s=128&d=retro' width='128' height='128' alt='Libravatar' />" + f"</span> {buffer}" +) + +# Print the HTML output +print(html_output) diff --git a/filters/email-libravatar.lua b/filters/email-libravatar.lua index 7336baf..7336baf 100644..100755 --- a/filters/email-libravatar.lua +++ b/filters/email-libravatar.lua diff --git a/filters/html-converters/md2html b/filters/html-converters/md2html index 3f5aed7..627808a 100755 --- a/filters/html-converters/md2html +++ b/filters/html-converters/md2html @@ -307,7 +307,7 @@ div#cgit .markdown-body h1 a.toclink, div#cgit .markdown-body h2 a.toclink, div# sys.stdout.write(HtmlFormatter(style=dark_style).get_style_defs('.highlight')) sys.stdout.write(''' } - at media (prefers-color-scheme: light) { +@media (prefers-color-scheme: light) { ''') sys.stdout.write(HtmlFormatter(style=light_style).get_style_defs('.highlight')) sys.stdout.write(''' diff --git a/filters/owner-example.lua b/filters/owner-example.lua index 50fc25a..cb9fa7f 100644 --- a/filters/owner-example.lua +++ b/filters/owner-example.lua @@ -8,7 +8,7 @@ function filter_open() end function filter_close() - html(string.format("<a href=\"%s\">%s</a>", "http://wiki.example.com/about/" .. buffer, buffer)) + html(string.format("<a href=\"%s\">%s</a>", "http://wiki.surgot.tech/about/" .. buffer, buffer)) return 0 end diff --git a/filters/syntax-highlighting.py b/filters/syntax-highlighting.py index 099e67b..f2c0fe1 100755 --- a/filters/syntax-highlighting.py +++ b/filters/syntax-highlighting.py @@ -54,9 +54,9 @@ except TypeError: # highlight! :-) # printout pygments' css definitions as well sys.stdout.write('<style>') -sys.stdout.write('\n at media only all and (prefers-color-scheme: dark) {\n') +sys.stdout.write('\n@media only all and (prefers-color-scheme: dark) {\n') sys.stdout.write(dark_formatter.get_style_defs('.highlight')) -sys.stdout.write('\n}\n at media (prefers-color-scheme: light) {\n') +sys.stdout.write('\n}\n@media (prefers-color-scheme: light) {\n') sys.stdout.write(light_formatter.get_style_defs('.highlight')) sys.stdout.write('\n}\n') sys.stdout.write('</style>') diff --git a/source-code-pro/EOT/SourceCodePro-Black.eot b/source-code-pro/EOT/SourceCodePro-Black.eot Binary files differnew file mode 100644 index 0000000..39a275e --- /dev/null +++ b/source-code-pro/EOT/SourceCodePro-Black.eot diff --git a/source-code-pro/EOT/SourceCodePro-BlackIt.eot b/source-code-pro/EOT/SourceCodePro-BlackIt.eot Binary files differnew file mode 100644 index 0000000..b08fe4a --- /dev/null +++ b/source-code-pro/EOT/SourceCodePro-BlackIt.eot diff --git a/source-code-pro/EOT/SourceCodePro-Bold.eot b/source-code-pro/EOT/SourceCodePro-Bold.eot Binary files differnew file mode 100644 index 0000000..783b4f5 --- /dev/null +++ b/source-code-pro/EOT/SourceCodePro-Bold.eot diff --git a/source-code-pro/EOT/SourceCodePro-BoldIt.eot b/source-code-pro/EOT/SourceCodePro-BoldIt.eot Binary files differnew file mode 100644 index 0000000..dc0087b --- /dev/null +++ b/source-code-pro/EOT/SourceCodePro-BoldIt.eot diff --git a/source-code-pro/EOT/SourceCodePro-ExtraLight.eot b/source-code-pro/EOT/SourceCodePro-ExtraLight.eot Binary files differnew file mode 100644 index 0000000..7d404e0 --- /dev/null +++ b/source-code-pro/EOT/SourceCodePro-ExtraLight.eot diff --git a/source-code-pro/EOT/SourceCodePro-ExtraLightIt.eot b/source-code-pro/EOT/SourceCodePro-ExtraLightIt.eot Binary files differnew file mode 100644 index 0000000..8bbf4b1 --- /dev/null +++ b/source-code-pro/EOT/SourceCodePro-ExtraLightIt.eot diff --git a/source-code-pro/EOT/SourceCodePro-It.eot b/source-code-pro/EOT/SourceCodePro-It.eot Binary files differnew file mode 100644 index 0000000..f4aa7ae --- /dev/null +++ b/source-code-pro/EOT/SourceCodePro-It.eot diff --git a/source-code-pro/EOT/SourceCodePro-Light.eot b/source-code-pro/EOT/SourceCodePro-Light.eot Binary files differnew file mode 100644 index 0000000..8c185be --- /dev/null +++ b/source-code-pro/EOT/SourceCodePro-Light.eot diff --git a/source-code-pro/EOT/SourceCodePro-LightIt.eot b/source-code-pro/EOT/SourceCodePro-LightIt.eot Binary files differnew file mode 100644 index 0000000..e21ee09 --- /dev/null +++ b/source-code-pro/EOT/SourceCodePro-LightIt.eot diff --git a/source-code-pro/EOT/SourceCodePro-Medium.eot b/source-code-pro/EOT/SourceCodePro-Medium.eot Binary files differnew file mode 100644 index 0000000..ebaf5f3 --- /dev/null +++ b/source-code-pro/EOT/SourceCodePro-Medium.eot diff --git a/source-code-pro/EOT/SourceCodePro-MediumIt.eot b/source-code-pro/EOT/SourceCodePro-MediumIt.eot Binary files differnew file mode 100644 index 0000000..95af9b6 --- /dev/null +++ b/source-code-pro/EOT/SourceCodePro-MediumIt.eot diff --git a/source-code-pro/EOT/SourceCodePro-Regular.eot b/source-code-pro/EOT/SourceCodePro-Regular.eot Binary files differnew file mode 100644 index 0000000..121176c --- /dev/null +++ b/source-code-pro/EOT/SourceCodePro-Regular.eot diff --git a/source-code-pro/EOT/SourceCodePro-Semibold.eot b/source-code-pro/EOT/SourceCodePro-Semibold.eot Binary files differnew file mode 100644 index 0000000..8aa922a --- /dev/null +++ b/source-code-pro/EOT/SourceCodePro-Semibold.eot diff --git a/source-code-pro/EOT/SourceCodePro-SemiboldIt.eot b/source-code-pro/EOT/SourceCodePro-SemiboldIt.eot Binary files differnew file mode 100644 index 0000000..b887a66 --- /dev/null +++ b/source-code-pro/EOT/SourceCodePro-SemiboldIt.eot diff --git a/source-code-pro/OTF/SourceCodePro-Black.otf b/source-code-pro/OTF/SourceCodePro-Black.otf Binary files differnew file mode 100644 index 0000000..133134f --- /dev/null +++ b/source-code-pro/OTF/SourceCodePro-Black.otf diff --git a/source-code-pro/OTF/SourceCodePro-BlackIt.otf b/source-code-pro/OTF/SourceCodePro-BlackIt.otf Binary files differnew file mode 100644 index 0000000..99a389b --- /dev/null +++ b/source-code-pro/OTF/SourceCodePro-BlackIt.otf diff --git a/source-code-pro/OTF/SourceCodePro-Bold.otf b/source-code-pro/OTF/SourceCodePro-Bold.otf Binary files differnew file mode 100644 index 0000000..0b273d9 --- /dev/null +++ b/source-code-pro/OTF/SourceCodePro-Bold.otf diff --git a/source-code-pro/OTF/SourceCodePro-BoldIt.otf b/source-code-pro/OTF/SourceCodePro-BoldIt.otf Binary files differnew file mode 100644 index 0000000..2acc974 --- /dev/null +++ b/source-code-pro/OTF/SourceCodePro-BoldIt.otf diff --git a/source-code-pro/OTF/SourceCodePro-ExtraLight.otf b/source-code-pro/OTF/SourceCodePro-ExtraLight.otf Binary files differnew file mode 100644 index 0000000..419cdbf --- /dev/null +++ b/source-code-pro/OTF/SourceCodePro-ExtraLight.otf diff --git a/source-code-pro/OTF/SourceCodePro-ExtraLightIt.otf b/source-code-pro/OTF/SourceCodePro-ExtraLightIt.otf Binary files differnew file mode 100644 index 0000000..c90e7a3 --- /dev/null +++ b/source-code-pro/OTF/SourceCodePro-ExtraLightIt.otf diff --git a/source-code-pro/OTF/SourceCodePro-It.otf b/source-code-pro/OTF/SourceCodePro-It.otf Binary files differnew file mode 100644 index 0000000..d0f1790 --- /dev/null +++ b/source-code-pro/OTF/SourceCodePro-It.otf diff --git a/source-code-pro/OTF/SourceCodePro-Light.otf b/source-code-pro/OTF/SourceCodePro-Light.otf Binary files differnew file mode 100644 index 0000000..19cc982 --- /dev/null +++ b/source-code-pro/OTF/SourceCodePro-Light.otf diff --git a/source-code-pro/OTF/SourceCodePro-LightIt.otf b/source-code-pro/OTF/SourceCodePro-LightIt.otf Binary files differnew file mode 100644 index 0000000..1522c9b --- /dev/null +++ b/source-code-pro/OTF/SourceCodePro-LightIt.otf diff --git a/source-code-pro/OTF/SourceCodePro-Medium.otf b/source-code-pro/OTF/SourceCodePro-Medium.otf Binary files differnew file mode 100644 index 0000000..1b42738 --- /dev/null +++ b/source-code-pro/OTF/SourceCodePro-Medium.otf diff --git a/source-code-pro/OTF/SourceCodePro-MediumIt.otf b/source-code-pro/OTF/SourceCodePro-MediumIt.otf Binary files differnew file mode 100644 index 0000000..38959dc --- /dev/null +++ b/source-code-pro/OTF/SourceCodePro-MediumIt.otf diff --git a/source-code-pro/OTF/SourceCodePro-Regular.otf b/source-code-pro/OTF/SourceCodePro-Regular.otf Binary files differnew file mode 100644 index 0000000..1bae002 --- /dev/null +++ b/source-code-pro/OTF/SourceCodePro-Regular.otf diff --git a/source-code-pro/OTF/SourceCodePro-Semibold.otf b/source-code-pro/OTF/SourceCodePro-Semibold.otf Binary files differnew file mode 100644 index 0000000..a61686c --- /dev/null +++ b/source-code-pro/OTF/SourceCodePro-Semibold.otf diff --git a/source-code-pro/OTF/SourceCodePro-SemiboldIt.otf b/source-code-pro/OTF/SourceCodePro-SemiboldIt.otf Binary files differnew file mode 100644 index 0000000..f419ab9 --- /dev/null +++ b/source-code-pro/OTF/SourceCodePro-SemiboldIt.otf diff --git a/source-code-pro/TTF/SourceCodePro-Black.ttf b/source-code-pro/TTF/SourceCodePro-Black.ttf Binary files differnew file mode 100644 index 0000000..0bcfec6 --- /dev/null +++ b/source-code-pro/TTF/SourceCodePro-Black.ttf diff --git a/source-code-pro/TTF/SourceCodePro-BlackIt.ttf b/source-code-pro/TTF/SourceCodePro-BlackIt.ttf Binary files differnew file mode 100644 index 0000000..36d8bae --- /dev/null +++ b/source-code-pro/TTF/SourceCodePro-BlackIt.ttf diff --git a/source-code-pro/TTF/SourceCodePro-Bold.ttf b/source-code-pro/TTF/SourceCodePro-Bold.ttf Binary files differnew file mode 100644 index 0000000..5a5be2f --- /dev/null +++ b/source-code-pro/TTF/SourceCodePro-Bold.ttf diff --git a/source-code-pro/TTF/SourceCodePro-BoldIt.ttf b/source-code-pro/TTF/SourceCodePro-BoldIt.ttf Binary files differnew file mode 100644 index 0000000..0b6d212 --- /dev/null +++ b/source-code-pro/TTF/SourceCodePro-BoldIt.ttf diff --git a/source-code-pro/TTF/SourceCodePro-ExtraLight.ttf b/source-code-pro/TTF/SourceCodePro-ExtraLight.ttf Binary files differnew file mode 100644 index 0000000..23ff52c --- /dev/null +++ b/source-code-pro/TTF/SourceCodePro-ExtraLight.ttf diff --git a/source-code-pro/TTF/SourceCodePro-ExtraLightIt.ttf b/source-code-pro/TTF/SourceCodePro-ExtraLightIt.ttf Binary files differnew file mode 100644 index 0000000..f95a8c4 --- /dev/null +++ b/source-code-pro/TTF/SourceCodePro-ExtraLightIt.ttf diff --git a/source-code-pro/TTF/SourceCodePro-It.ttf b/source-code-pro/TTF/SourceCodePro-It.ttf Binary files differnew file mode 100644 index 0000000..437cbe1 --- /dev/null +++ b/source-code-pro/TTF/SourceCodePro-It.ttf diff --git a/source-code-pro/TTF/SourceCodePro-Light.ttf b/source-code-pro/TTF/SourceCodePro-Light.ttf Binary files differnew file mode 100644 index 0000000..8dc9fa9 --- /dev/null +++ b/source-code-pro/TTF/SourceCodePro-Light.ttf diff --git a/source-code-pro/TTF/SourceCodePro-LightIt.ttf b/source-code-pro/TTF/SourceCodePro-LightIt.ttf Binary files differnew file mode 100644 index 0000000..c14dcb3 --- /dev/null +++ b/source-code-pro/TTF/SourceCodePro-LightIt.ttf diff --git a/source-code-pro/TTF/SourceCodePro-Medium.ttf b/source-code-pro/TTF/SourceCodePro-Medium.ttf Binary files differnew file mode 100644 index 0000000..5d1579c --- /dev/null +++ b/source-code-pro/TTF/SourceCodePro-Medium.ttf diff --git a/source-code-pro/TTF/SourceCodePro-MediumIt.ttf b/source-code-pro/TTF/SourceCodePro-MediumIt.ttf Binary files differnew file mode 100644 index 0000000..bf5dae9 --- /dev/null +++ b/source-code-pro/TTF/SourceCodePro-MediumIt.ttf diff --git a/source-code-pro/TTF/SourceCodePro-Regular.ttf b/source-code-pro/TTF/SourceCodePro-Regular.ttf Binary files differnew file mode 100644 index 0000000..c583003 --- /dev/null +++ b/source-code-pro/TTF/SourceCodePro-Regular.ttf diff --git a/source-code-pro/TTF/SourceCodePro-Semibold.ttf b/source-code-pro/TTF/SourceCodePro-Semibold.ttf Binary files differnew file mode 100644 index 0000000..f57d68c --- /dev/null +++ b/source-code-pro/TTF/SourceCodePro-Semibold.ttf diff --git a/source-code-pro/TTF/SourceCodePro-SemiboldIt.ttf b/source-code-pro/TTF/SourceCodePro-SemiboldIt.ttf Binary files differnew file mode 100644 index 0000000..6c7eb45 --- /dev/null +++ b/source-code-pro/TTF/SourceCodePro-SemiboldIt.ttf diff --git a/source-code-pro/WOFF/OTF/SourceCodePro-Black.otf.woff b/source-code-pro/WOFF/OTF/SourceCodePro-Black.otf.woff Binary files differnew file mode 100644 index 0000000..9a07259 --- /dev/null +++ b/source-code-pro/WOFF/OTF/SourceCodePro-Black.otf.woff diff --git a/source-code-pro/WOFF/OTF/SourceCodePro-BlackIt.otf.woff b/source-code-pro/WOFF/OTF/SourceCodePro-BlackIt.otf.woff Binary files differnew file mode 100644 index 0000000..2e37b09 --- /dev/null +++ b/source-code-pro/WOFF/OTF/SourceCodePro-BlackIt.otf.woff diff --git a/source-code-pro/WOFF/OTF/SourceCodePro-Bold.otf.woff b/source-code-pro/WOFF/OTF/SourceCodePro-Bold.otf.woff Binary files differnew file mode 100644 index 0000000..b64f2cf --- /dev/null +++ b/source-code-pro/WOFF/OTF/SourceCodePro-Bold.otf.woff diff --git a/source-code-pro/WOFF/OTF/SourceCodePro-BoldIt.otf.woff b/source-code-pro/WOFF/OTF/SourceCodePro-BoldIt.otf.woff Binary files differnew file mode 100644 index 0000000..69a466d --- /dev/null +++ b/source-code-pro/WOFF/OTF/SourceCodePro-BoldIt.otf.woff diff --git a/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLight.otf.woff b/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLight.otf.woff Binary files differnew file mode 100644 index 0000000..41accc2 --- /dev/null +++ b/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLight.otf.woff diff --git a/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLightIt.otf.woff b/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLightIt.otf.woff Binary files differnew file mode 100644 index 0000000..a6f5d55 --- /dev/null +++ b/source-code-pro/WOFF/OTF/SourceCodePro-ExtraLightIt.otf.woff diff --git a/source-code-pro/WOFF/OTF/SourceCodePro-It.otf.woff b/source-code-pro/WOFF/OTF/SourceCodePro-It.otf.woff Binary files differnew file mode 100644 index 0000000..a8b8cea --- /dev/null +++ b/source-code-pro/WOFF/OTF/SourceCodePro-It.otf.woff diff --git a/source-code-pro/WOFF/OTF/SourceCodePro-Light.otf.woff b/source-code-pro/WOFF/OTF/SourceCodePro-Light.otf.woff Binary files differnew file mode 100644 index 0000000..fceb975 --- /dev/null +++ b/source-code-pro/WOFF/OTF/SourceCodePro-Light.otf.woff diff --git a/source-code-pro/WOFF/OTF/SourceCodePro-LightIt.otf.woff b/source-code-pro/WOFF/OTF/SourceCodePro-LightIt.otf.woff Binary files differnew file mode 100644 index 0000000..9f63553 --- /dev/null +++ b/source-code-pro/WOFF/OTF/SourceCodePro-LightIt.otf.woff diff --git a/source-code-pro/WOFF/OTF/SourceCodePro-Medium.otf.woff b/source-code-pro/WOFF/OTF/SourceCodePro-Medium.otf.woff Binary files differnew file mode 100644 index 0000000..bd82cf4 --- /dev/null +++ b/source-code-pro/WOFF/OTF/SourceCodePro-Medium.otf.woff diff --git a/source-code-pro/WOFF/OTF/SourceCodePro-MediumIt.otf.woff b/source-code-pro/WOFF/OTF/SourceCodePro-MediumIt.otf.woff Binary files differnew file mode 100644 index 0000000..6571866 --- /dev/null +++ b/source-code-pro/WOFF/OTF/SourceCodePro-MediumIt.otf.woff diff --git a/source-code-pro/WOFF/OTF/SourceCodePro-Regular.otf.woff b/source-code-pro/WOFF/OTF/SourceCodePro-Regular.otf.woff Binary files differnew file mode 100644 index 0000000..68c98f1 --- /dev/null +++ b/source-code-pro/WOFF/OTF/SourceCodePro-Regular.otf.woff diff --git a/source-code-pro/WOFF/OTF/SourceCodePro-Semibold.otf.woff b/source-code-pro/WOFF/OTF/SourceCodePro-Semibold.otf.woff Binary files differnew file mode 100644 index 0000000..3db105e --- /dev/null +++ b/source-code-pro/WOFF/OTF/SourceCodePro-Semibold.otf.woff diff --git a/source-code-pro/WOFF/OTF/SourceCodePro-SemiboldIt.otf.woff b/source-code-pro/WOFF/OTF/SourceCodePro-SemiboldIt.otf.woff Binary files differnew file mode 100644 index 0000000..3822bc2 --- /dev/null +++ b/source-code-pro/WOFF/OTF/SourceCodePro-SemiboldIt.otf.woff diff --git a/source-code-pro/WOFF/TTF/SourceCodePro-Black.ttf.woff b/source-code-pro/WOFF/TTF/SourceCodePro-Black.ttf.woff Binary files differnew file mode 100644 index 0000000..bc4823e --- /dev/null +++ b/source-code-pro/WOFF/TTF/SourceCodePro-Black.ttf.woff diff --git a/source-code-pro/WOFF/TTF/SourceCodePro-BlackIt.ttf.woff b/source-code-pro/WOFF/TTF/SourceCodePro-BlackIt.ttf.woff Binary files differnew file mode 100644 index 0000000..20ee084 --- /dev/null +++ b/source-code-pro/WOFF/TTF/SourceCodePro-BlackIt.ttf.woff diff --git a/source-code-pro/WOFF/TTF/SourceCodePro-Bold.ttf.woff b/source-code-pro/WOFF/TTF/SourceCodePro-Bold.ttf.woff Binary files differnew file mode 100644 index 0000000..8b8307b --- /dev/null +++ b/source-code-pro/WOFF/TTF/SourceCodePro-Bold.ttf.woff diff --git a/source-code-pro/WOFF/TTF/SourceCodePro-BoldIt.ttf.woff b/source-code-pro/WOFF/TTF/SourceCodePro-BoldIt.ttf.woff Binary files differnew file mode 100644 index 0000000..b683f6f --- /dev/null +++ b/source-code-pro/WOFF/TTF/SourceCodePro-BoldIt.ttf.woff diff --git a/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLight.ttf.woff b/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLight.ttf.woff Binary files differnew file mode 100644 index 0000000..c6916b1 --- /dev/null +++ b/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLight.ttf.woff diff --git a/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLightIt.ttf.woff b/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLightIt.ttf.woff Binary files differnew file mode 100644 index 0000000..0de8ceb --- /dev/null +++ b/source-code-pro/WOFF/TTF/SourceCodePro-ExtraLightIt.ttf.woff diff --git a/source-code-pro/WOFF/TTF/SourceCodePro-It.ttf.woff b/source-code-pro/WOFF/TTF/SourceCodePro-It.ttf.woff Binary files differnew file mode 100644 index 0000000..ebaaf91 --- /dev/null +++ b/source-code-pro/WOFF/TTF/SourceCodePro-It.ttf.woff diff --git a/source-code-pro/WOFF/TTF/SourceCodePro-Light.ttf.woff b/source-code-pro/WOFF/TTF/SourceCodePro-Light.ttf.woff Binary files differnew file mode 100644 index 0000000..93197df --- /dev/null +++ b/source-code-pro/WOFF/TTF/SourceCodePro-Light.ttf.woff diff --git a/source-code-pro/WOFF/TTF/SourceCodePro-LightIt.ttf.woff b/source-code-pro/WOFF/TTF/SourceCodePro-LightIt.ttf.woff Binary files differnew file mode 100644 index 0000000..5bdc7e5 --- /dev/null +++ b/source-code-pro/WOFF/TTF/SourceCodePro-LightIt.ttf.woff diff --git a/source-code-pro/WOFF/TTF/SourceCodePro-Medium.ttf.woff b/source-code-pro/WOFF/TTF/SourceCodePro-Medium.ttf.woff Binary files differnew file mode 100644 index 0000000..7e69cf1 --- /dev/null +++ b/source-code-pro/WOFF/TTF/SourceCodePro-Medium.ttf.woff diff --git a/source-code-pro/WOFF/TTF/SourceCodePro-MediumIt.ttf.woff b/source-code-pro/WOFF/TTF/SourceCodePro-MediumIt.ttf.woff Binary files differnew file mode 100644 index 0000000..fca6ee0 --- /dev/null +++ b/source-code-pro/WOFF/TTF/SourceCodePro-MediumIt.ttf.woff diff --git a/source-code-pro/WOFF/TTF/SourceCodePro-Regular.ttf.woff b/source-code-pro/WOFF/TTF/SourceCodePro-Regular.ttf.woff Binary files differnew file mode 100644 index 0000000..117c7e5 --- /dev/null +++ b/source-code-pro/WOFF/TTF/SourceCodePro-Regular.ttf.woff diff --git a/source-code-pro/WOFF/TTF/SourceCodePro-Semibold.ttf.woff b/source-code-pro/WOFF/TTF/SourceCodePro-Semibold.ttf.woff Binary files differnew file mode 100644 index 0000000..270873a --- /dev/null +++ b/source-code-pro/WOFF/TTF/SourceCodePro-Semibold.ttf.woff diff --git a/source-code-pro/WOFF/TTF/SourceCodePro-SemiboldIt.ttf.woff b/source-code-pro/WOFF/TTF/SourceCodePro-SemiboldIt.ttf.woff Binary files differnew file mode 100644 index 0000000..a04ab9e --- /dev/null +++ b/source-code-pro/WOFF/TTF/SourceCodePro-SemiboldIt.ttf.woff diff --git a/source-code-pro/WOFF2/OTF/SourceCodePro-Black.otf.woff2 b/source-code-pro/WOFF2/OTF/SourceCodePro-Black.otf.woff2 Binary files differnew file mode 100644 index 0000000..3d9d7a4 --- /dev/null +++ b/source-code-pro/WOFF2/OTF/SourceCodePro-Black.otf.woff2 diff --git a/source-code-pro/WOFF2/OTF/SourceCodePro-BlackIt.otf.woff2 b/source-code-pro/WOFF2/OTF/SourceCodePro-BlackIt.otf.woff2 Binary files differnew file mode 100644 index 0000000..eee002b --- /dev/null +++ b/source-code-pro/WOFF2/OTF/SourceCodePro-BlackIt.otf.woff2 diff --git a/source-code-pro/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 b/source-code-pro/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 Binary files differnew file mode 100644 index 0000000..45ee40a --- /dev/null +++ b/source-code-pro/WOFF2/OTF/SourceCodePro-Bold.otf.woff2 diff --git a/source-code-pro/WOFF2/OTF/SourceCodePro-BoldIt.otf.woff2 b/source-code-pro/WOFF2/OTF/SourceCodePro-BoldIt.otf.woff2 Binary files differnew file mode 100644 index 0000000..604e17d --- /dev/null +++ b/source-code-pro/WOFF2/OTF/SourceCodePro-BoldIt.otf.woff2 diff --git a/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLight.otf.woff2 b/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLight.otf.woff2 Binary files differnew file mode 100644 index 0000000..1c2a392 --- /dev/null +++ b/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLight.otf.woff2 diff --git a/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLightIt.otf.woff2 b/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLightIt.otf.woff2 Binary files differnew file mode 100644 index 0000000..6405cf9 --- /dev/null +++ b/source-code-pro/WOFF2/OTF/SourceCodePro-ExtraLightIt.otf.woff2 diff --git a/source-code-pro/WOFF2/OTF/SourceCodePro-It.otf.woff2 b/source-code-pro/WOFF2/OTF/SourceCodePro-It.otf.woff2 Binary files differnew file mode 100644 index 0000000..5702eba --- /dev/null +++ b/source-code-pro/WOFF2/OTF/SourceCodePro-It.otf.woff2 diff --git a/source-code-pro/WOFF2/OTF/SourceCodePro-Light.otf.woff2 b/source-code-pro/WOFF2/OTF/SourceCodePro-Light.otf.woff2 Binary files differnew file mode 100644 index 0000000..8f78490 --- /dev/null +++ b/source-code-pro/WOFF2/OTF/SourceCodePro-Light.otf.woff2 diff --git a/source-code-pro/WOFF2/OTF/SourceCodePro-LightIt.otf.woff2 b/source-code-pro/WOFF2/OTF/SourceCodePro-LightIt.otf.woff2 Binary files differnew file mode 100644 index 0000000..45bbd58 --- /dev/null +++ b/source-code-pro/WOFF2/OTF/SourceCodePro-LightIt.otf.woff2 diff --git a/source-code-pro/WOFF2/OTF/SourceCodePro-Medium.otf.woff2 b/source-code-pro/WOFF2/OTF/SourceCodePro-Medium.otf.woff2 Binary files differnew file mode 100644 index 0000000..7dfd91c --- /dev/null +++ b/source-code-pro/WOFF2/OTF/SourceCodePro-Medium.otf.woff2 diff --git a/source-code-pro/WOFF2/OTF/SourceCodePro-MediumIt.otf.woff2 b/source-code-pro/WOFF2/OTF/SourceCodePro-MediumIt.otf.woff2 Binary files differnew file mode 100644 index 0000000..2ff7a0b --- /dev/null +++ b/source-code-pro/WOFF2/OTF/SourceCodePro-MediumIt.otf.woff2 diff --git a/source-code-pro/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 b/source-code-pro/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 Binary files differnew file mode 100644 index 0000000..c10f38d --- /dev/null +++ b/source-code-pro/WOFF2/OTF/SourceCodePro-Regular.otf.woff2 diff --git a/source-code-pro/WOFF2/OTF/SourceCodePro-Semibold.otf.woff2 b/source-code-pro/WOFF2/OTF/SourceCodePro-Semibold.otf.woff2 Binary files differnew file mode 100644 index 0000000..b2b00d6 --- /dev/null +++ b/source-code-pro/WOFF2/OTF/SourceCodePro-Semibold.otf.woff2 diff --git a/source-code-pro/WOFF2/OTF/SourceCodePro-SemiboldIt.otf.woff2 b/source-code-pro/WOFF2/OTF/SourceCodePro-SemiboldIt.otf.woff2 Binary files differnew file mode 100644 index 0000000..a5d866e --- /dev/null +++ b/source-code-pro/WOFF2/OTF/SourceCodePro-SemiboldIt.otf.woff2 diff --git a/source-code-pro/WOFF2/TTF/SourceCodePro-Black.ttf.woff2 b/source-code-pro/WOFF2/TTF/SourceCodePro-Black.ttf.woff2 Binary files differnew file mode 100644 index 0000000..0042fb4 --- /dev/null +++ b/source-code-pro/WOFF2/TTF/SourceCodePro-Black.ttf.woff2 diff --git a/source-code-pro/WOFF2/TTF/SourceCodePro-BlackIt.ttf.woff2 b/source-code-pro/WOFF2/TTF/SourceCodePro-BlackIt.ttf.woff2 Binary files differnew file mode 100644 index 0000000..6614e54 --- /dev/null +++ b/source-code-pro/WOFF2/TTF/SourceCodePro-BlackIt.ttf.woff2 diff --git a/source-code-pro/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 b/source-code-pro/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 Binary files differnew file mode 100644 index 0000000..1331a0a --- /dev/null +++ b/source-code-pro/WOFF2/TTF/SourceCodePro-Bold.ttf.woff2 diff --git a/source-code-pro/WOFF2/TTF/SourceCodePro-BoldIt.ttf.woff2 b/source-code-pro/WOFF2/TTF/SourceCodePro-BoldIt.ttf.woff2 Binary files differnew file mode 100644 index 0000000..ed564da --- /dev/null +++ b/source-code-pro/WOFF2/TTF/SourceCodePro-BoldIt.ttf.woff2 diff --git a/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLight.ttf.woff2 b/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLight.ttf.woff2 Binary files differnew file mode 100644 index 0000000..1759259 --- /dev/null +++ b/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLight.ttf.woff2 diff --git a/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLightIt.ttf.woff2 b/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLightIt.ttf.woff2 Binary files differnew file mode 100644 index 0000000..2b94dc5 --- /dev/null +++ b/source-code-pro/WOFF2/TTF/SourceCodePro-ExtraLightIt.ttf.woff2 diff --git a/source-code-pro/WOFF2/TTF/SourceCodePro-It.ttf.woff2 b/source-code-pro/WOFF2/TTF/SourceCodePro-It.ttf.woff2 Binary files differnew file mode 100644 index 0000000..443d16f --- /dev/null +++ b/source-code-pro/WOFF2/TTF/SourceCodePro-It.ttf.woff2 diff --git a/source-code-pro/WOFF2/TTF/SourceCodePro-Light.ttf.woff2 b/source-code-pro/WOFF2/TTF/SourceCodePro-Light.ttf.woff2 Binary files differnew file mode 100644 index 0000000..843d388 --- /dev/null +++ b/source-code-pro/WOFF2/TTF/SourceCodePro-Light.ttf.woff2 diff --git a/source-code-pro/WOFF2/TTF/SourceCodePro-LightIt.ttf.woff2 b/source-code-pro/WOFF2/TTF/SourceCodePro-LightIt.ttf.woff2 Binary files differnew file mode 100644 index 0000000..8025dc3 --- /dev/null +++ b/source-code-pro/WOFF2/TTF/SourceCodePro-LightIt.ttf.woff2 diff --git a/source-code-pro/WOFF2/TTF/SourceCodePro-Medium.ttf.woff2 b/source-code-pro/WOFF2/TTF/SourceCodePro-Medium.ttf.woff2 Binary files differnew file mode 100644 index 0000000..25c08c6 --- /dev/null +++ b/source-code-pro/WOFF2/TTF/SourceCodePro-Medium.ttf.woff2 diff --git a/source-code-pro/WOFF2/TTF/SourceCodePro-MediumIt.ttf.woff2 b/source-code-pro/WOFF2/TTF/SourceCodePro-MediumIt.ttf.woff2 Binary files differnew file mode 100644 index 0000000..c6d7434 --- /dev/null +++ b/source-code-pro/WOFF2/TTF/SourceCodePro-MediumIt.ttf.woff2 diff --git a/source-code-pro/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 b/source-code-pro/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 Binary files differnew file mode 100644 index 0000000..d97cd54 --- /dev/null +++ b/source-code-pro/WOFF2/TTF/SourceCodePro-Regular.ttf.woff2 diff --git a/source-code-pro/WOFF2/TTF/SourceCodePro-Semibold.ttf.woff2 b/source-code-pro/WOFF2/TTF/SourceCodePro-Semibold.ttf.woff2 Binary files differnew file mode 100644 index 0000000..c4134ee --- /dev/null +++ b/source-code-pro/WOFF2/TTF/SourceCodePro-Semibold.ttf.woff2 diff --git a/source-code-pro/WOFF2/TTF/SourceCodePro-SemiboldIt.ttf.woff2 b/source-code-pro/WOFF2/TTF/SourceCodePro-SemiboldIt.ttf.woff2 Binary files differnew file mode 100644 index 0000000..92ebea1 --- /dev/null +++ b/source-code-pro/WOFF2/TTF/SourceCodePro-SemiboldIt.ttf.woff2 diff --git a/source-code-pro/source-code-pro.css b/source-code-pro/source-code-pro.css new file mode 100755 index 0000000..93e787c --- /dev/null +++ b/source-code-pro/source-code-pro.css @@ -0,0 +1,167 @@ +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 200; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-ExtraLight.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-ExtraLight.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-ExtraLight.otf.woff') format('woff'), + url('OTF/SourceCodePro-ExtraLight.otf') format('opentype'), + url('TTF/SourceCodePro-ExtraLight.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 200; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-ExtraLightIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-ExtraLightIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-ExtraLightIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-ExtraLightIt.otf') format('opentype'), + url('TTF/SourceCodePro-ExtraLightIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 300; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Light.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Light.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Light.otf.woff') format('woff'), + url('OTF/SourceCodePro-Light.otf') format('opentype'), + url('TTF/SourceCodePro-Light.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 300; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-LightIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-LightIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-LightIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-LightIt.otf') format('opentype'), + url('TTF/SourceCodePro-LightIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 400; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Regular.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Regular.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Regular.otf.woff') format('woff'), + url('OTF/SourceCodePro-Regular.otf') format('opentype'), + url('TTF/SourceCodePro-Regular.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 400; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-It.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-It.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-It.otf.woff') format('woff'), + url('OTF/SourceCodePro-It.otf') format('opentype'), + url('TTF/SourceCodePro-It.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 500; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Medium.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Medium.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Medium.otf.woff') format('woff'), + url('OTF/SourceCodePro-Medium.otf') format('opentype'), + url('TTF/SourceCodePro-Medium.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 500; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-MediumIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-MediumIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-MediumIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-MediumIt.otf') format('opentype'), + url('TTF/SourceCodePro-MediumIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 600; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Semibold.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Semibold.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Semibold.otf.woff') format('woff'), + url('OTF/SourceCodePro-Semibold.otf') format('opentype'), + url('TTF/SourceCodePro-Semibold.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 600; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-SemiboldIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-SemiboldIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-SemiboldIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-SemiboldIt.otf') format('opentype'), + url('TTF/SourceCodePro-SemiboldIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 700; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Bold.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Bold.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Bold.otf.woff') format('woff'), + url('OTF/SourceCodePro-Bold.otf') format('opentype'), + url('TTF/SourceCodePro-Bold.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 700; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-BoldIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-BoldIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-BoldIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-BoldIt.otf') format('opentype'), + url('TTF/SourceCodePro-BoldIt.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 900; + font-style: normal; + font-stretch: normal; + src: url('EOT/SourceCodePro-Black.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-Black.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-Black.otf.woff') format('woff'), + url('OTF/SourceCodePro-Black.otf') format('opentype'), + url('TTF/SourceCodePro-Black.ttf') format('truetype'); +} + +@font-face{ + font-family: 'Source Code Pro'; + font-weight: 900; + font-style: italic; + font-stretch: normal; + src: url('EOT/SourceCodePro-BlackIt.eot') format('embedded-opentype'), + url('WOFF2/TTF/SourceCodePro-BlackIt.ttf.woff2') format('woff2'), + url('WOFF/OTF/SourceCodePro-BlackIt.otf.woff') format('woff'), + url('OTF/SourceCodePro-BlackIt.otf') format('opentype'), + url('TTF/SourceCodePro-BlackIt.ttf') format('truetype'); +} |