Skip to content

Instantly share code, notes, and snippets.

@Momciloo
Created April 16, 2020 11:52
Show Gist options
  • Save Momciloo/4e6ba669400709898b73aa16cca50e2a to your computer and use it in GitHub Desktop.
Save Momciloo/4e6ba669400709898b73aa16cca50e2a to your computer and use it in GitHub Desktop.
System font-face snippet
/* Define the "system" font family */
@font-face {
font-family: system;
font-style: normal;
font-weight: 300;
src: local(".SFNSText-Light"), local(".HelveticaNeueDeskInterface-Light"), local(".LucidaGrandeUI"), local("Ubuntu Light"), local("Segoe UI Light"), local("Roboto-Light"), local("DroidSans"), local("Tahoma");
}
/* Now, let's apply it on an element */
body {
font-family: "system";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment